|
@@ -1,6 +1,6 @@
|
|
|
<div *ngIf="!summary">
|
|
<div *ngIf="!summary">
|
|
|
<h4 class="card-title">
|
|
<h4 class="card-title">
|
|
|
- Bonos
|
|
|
|
|
|
|
+ Fondos de inversión
|
|
|
</h4>
|
|
</h4>
|
|
|
<form
|
|
<form
|
|
|
class="form-auth-small ng-untouched ng-pristine ng-valid"
|
|
class="form-auth-small ng-untouched ng-pristine ng-valid"
|
|
@@ -12,7 +12,7 @@
|
|
|
<label for="cuota_participacion">Cuota de participación: </label>
|
|
<label for="cuota_participacion">Cuota de participación: </label>
|
|
|
<div class="input-box-container">
|
|
<div class="input-box-container">
|
|
|
<p>
|
|
<p>
|
|
|
- <i class="fas fa-dollar-sign" aria-hidden="true"></i>
|
|
|
|
|
|
|
+ <i class="fas fa-sort-numeric-up-alt"></i>
|
|
|
</p>
|
|
</p>
|
|
|
<input
|
|
<input
|
|
|
type="text"
|
|
type="text"
|
|
@@ -39,30 +39,27 @@
|
|
|
|
|
|
|
|
<div class="col-lg-6 col-sm-12 pr-xl-3">
|
|
<div class="col-lg-6 col-sm-12 pr-xl-3">
|
|
|
<div class="form-group">
|
|
<div class="form-group">
|
|
|
- <label for="valor_participacion_porcentaje"
|
|
|
|
|
- >Valor participación:
|
|
|
|
|
- </label>
|
|
|
|
|
|
|
+ <label for="valor_participacion">Valor participación: </label>
|
|
|
<div class="input-box-container">
|
|
<div class="input-box-container">
|
|
|
<p>
|
|
<p>
|
|
|
<i class="fas fa-dollar-sign"></i>
|
|
<i class="fas fa-dollar-sign"></i>
|
|
|
</p>
|
|
</p>
|
|
|
<input
|
|
<input
|
|
|
type="text"
|
|
type="text"
|
|
|
- formControlName="valor_participacion_porcentaje"
|
|
|
|
|
|
|
+ formControlName="valor_participacion"
|
|
|
class="form-control"
|
|
class="form-control"
|
|
|
[ngClass]="{
|
|
[ngClass]="{
|
|
|
- 'is-invalid':
|
|
|
|
|
- submitted && f.valor_participacion_porcentaje.errors
|
|
|
|
|
|
|
+ 'is-invalid': submitted && f.valor_participacion.errors
|
|
|
}"
|
|
}"
|
|
|
/>
|
|
/>
|
|
|
<div
|
|
<div
|
|
|
- *ngIf="submitted && f.valor_participacion_porcentaje.errors"
|
|
|
|
|
|
|
+ *ngIf="submitted && f.valor_participacion.errors"
|
|
|
class="invalid-feedback"
|
|
class="invalid-feedback"
|
|
|
>
|
|
>
|
|
|
- <div *ngIf="f.valor_participacion_porcentaje.errors.required">
|
|
|
|
|
|
|
+ <div *ngIf="f.valor_participacion.errors.required">
|
|
|
Campo requerido
|
|
Campo requerido
|
|
|
</div>
|
|
</div>
|
|
|
- <div *ngIf="f.valor_participacion_porcentaje.errors.pattern">
|
|
|
|
|
|
|
+ <div *ngIf="f.valor_participacion.errors.pattern">
|
|
|
Debe ingresar una cifra válida
|
|
Debe ingresar una cifra válida
|
|
|
</div>
|
|
</div>
|
|
|
</div>
|
|
</div>
|
|
@@ -319,14 +316,14 @@
|
|
|
<div class="col-sm-4">
|
|
<div class="col-sm-4">
|
|
|
<h4>Cuota participación:</h4>
|
|
<h4>Cuota participación:</h4>
|
|
|
<div class="field">
|
|
<div class="field">
|
|
|
- $USD {{ cuota_participacion | number: "1.2-4" }}
|
|
|
|
|
|
|
+ {{ cuota_participacion | number: "1.2-4" }}
|
|
|
</div>
|
|
</div>
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
<div class="col-sm-4">
|
|
<div class="col-sm-4">
|
|
|
<h4>Valor participación:</h4>
|
|
<h4>Valor participación:</h4>
|
|
|
<div class="field">
|
|
<div class="field">
|
|
|
- {{ valor_participacion_porcentaje | number: "1.2-4" }} %
|
|
|
|
|
|
|
+ $USD {{ valor_participacion | number: "1.2-4" }}
|
|
|
</div>
|
|
</div>
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
@@ -458,7 +455,7 @@
|
|
|
{{
|
|
{{
|
|
|
row.fecha_pago == "" || row.fecha_pago == undefined
|
|
row.fecha_pago == "" || row.fecha_pago == undefined
|
|
|
? "-"
|
|
? "-"
|
|
|
- : row.fecha_pago
|
|
|
|
|
|
|
+ : (row.fecha_pago | number: "1.2-4")
|
|
|
}}
|
|
}}
|
|
|
</td>
|
|
</td>
|
|
|
<td mat-footer-cell *matFooterCellDef></td>
|
|
<td mat-footer-cell *matFooterCellDef></td>
|
|
@@ -469,7 +466,7 @@
|
|
|
{{
|
|
{{
|
|
|
row.ingreso_bruto == "" || row.ingreso_bruto == undefined
|
|
row.ingreso_bruto == "" || row.ingreso_bruto == undefined
|
|
|
? "-"
|
|
? "-"
|
|
|
- : row.ingreso_bruto
|
|
|
|
|
|
|
+ : (row.ingreso_bruto | number: "1.2-4")
|
|
|
}}
|
|
}}
|
|
|
</td>
|
|
</td>
|
|
|
<td mat-footer-cell *matFooterCellDef>
|
|
<td mat-footer-cell *matFooterCellDef>
|
|
@@ -485,7 +482,7 @@
|
|
|
{{
|
|
{{
|
|
|
row.ingreso_neto == "" || row.ingreso_neto == undefined
|
|
row.ingreso_neto == "" || row.ingreso_neto == undefined
|
|
|
? "-"
|
|
? "-"
|
|
|
- : row.ingreso_neto
|
|
|
|
|
|
|
+ : (row.ingreso_neto | number: "1.2-4")
|
|
|
}}
|
|
}}
|
|
|
</td>
|
|
</td>
|
|
|
<td mat-footer-cell *matFooterCellDef>
|
|
<td mat-footer-cell *matFooterCellDef>
|
|
@@ -502,7 +499,7 @@
|
|
|
row.dividendo_porcentaje == "" ||
|
|
row.dividendo_porcentaje == "" ||
|
|
|
row.dividendo_porcentaje == undefined
|
|
row.dividendo_porcentaje == undefined
|
|
|
? "-"
|
|
? "-"
|
|
|
- : row.dividendo_porcentaje
|
|
|
|
|
|
|
+ : (row.dividendo_porcentaje | number: "1.2-4")
|
|
|
}}
|
|
}}
|
|
|
</td>
|
|
</td>
|
|
|
<td mat-footer-cell *matFooterCellDef>
|
|
<td mat-footer-cell *matFooterCellDef>
|
|
@@ -519,7 +516,7 @@
|
|
|
row.rendimiento_porcentaje == "" ||
|
|
row.rendimiento_porcentaje == "" ||
|
|
|
row.rendimiento_porcentaje == undefined
|
|
row.rendimiento_porcentaje == undefined
|
|
|
? "-"
|
|
? "-"
|
|
|
- : row.rendimiento_porcentaje
|
|
|
|
|
|
|
+ : (row.rendimiento_porcentaje | number: "1.2-4")
|
|
|
}}
|
|
}}
|
|
|
</td>
|
|
</td>
|
|
|
<td mat-footer-cell *matFooterCellDef>
|
|
<td mat-footer-cell *matFooterCellDef>
|
|
@@ -535,7 +532,7 @@
|
|
|
{{
|
|
{{
|
|
|
row.rendimiento == "" || row.rendimiento == undefined
|
|
row.rendimiento == "" || row.rendimiento == undefined
|
|
|
? "-"
|
|
? "-"
|
|
|
- : row.rendimiento
|
|
|
|
|
|
|
+ : (row.rendimiento | number: "1.2-4")
|
|
|
}}
|
|
}}
|
|
|
</td>
|
|
</td>
|
|
|
<td mat-footer-cell *matFooterCellDef>
|
|
<td mat-footer-cell *matFooterCellDef>
|
|
@@ -578,7 +575,6 @@
|
|
|
<div class="col-lg-3 col-md-4 col-sm-6">
|
|
<div class="col-lg-3 col-md-4 col-sm-6">
|
|
|
<h4>Cuota participación:</h4>
|
|
<h4>Cuota participación:</h4>
|
|
|
<div class="field">
|
|
<div class="field">
|
|
|
- $USD
|
|
|
|
|
{{ instrument_work_summary.cuota_participacion | number: "1.2-4" }}
|
|
{{ instrument_work_summary.cuota_participacion | number: "1.2-4" }}
|
|
|
</div>
|
|
</div>
|
|
|
</div>
|
|
</div>
|
|
@@ -586,11 +582,8 @@
|
|
|
<div class="col-lg-3 col-md-4 col-sm-6">
|
|
<div class="col-lg-3 col-md-4 col-sm-6">
|
|
|
<h4>Valor participación:</h4>
|
|
<h4>Valor participación:</h4>
|
|
|
<div class="field">
|
|
<div class="field">
|
|
|
- {{
|
|
|
|
|
- instrument_work_summary.valor_participacion_porcentaje
|
|
|
|
|
- | number: "1.2-4"
|
|
|
|
|
- }}
|
|
|
|
|
- %
|
|
|
|
|
|
|
+ $USD
|
|
|
|
|
+ {{ instrument_work_summary.valor_participacion | number: "1.2-4" }}
|
|
|
</div>
|
|
</div>
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
@@ -729,7 +722,7 @@
|
|
|
{{
|
|
{{
|
|
|
row.fecha_pago == "" || row.fecha_pago == undefined
|
|
row.fecha_pago == "" || row.fecha_pago == undefined
|
|
|
? "-"
|
|
? "-"
|
|
|
- : row.fecha_pago
|
|
|
|
|
|
|
+ : (row.fecha_pago | number: "1.2-4")
|
|
|
}}
|
|
}}
|
|
|
</td>
|
|
</td>
|
|
|
<td mat-footer-cell *matFooterCellDef></td>
|
|
<td mat-footer-cell *matFooterCellDef></td>
|
|
@@ -740,7 +733,7 @@
|
|
|
{{
|
|
{{
|
|
|
row.ingreso_bruto == "" || row.ingreso_bruto == undefined
|
|
row.ingreso_bruto == "" || row.ingreso_bruto == undefined
|
|
|
? "-"
|
|
? "-"
|
|
|
- : row.ingreso_bruto
|
|
|
|
|
|
|
+ : (row.ingreso_bruto | number: "1.2-4")
|
|
|
}}
|
|
}}
|
|
|
</td>
|
|
</td>
|
|
|
<td mat-footer-cell *matFooterCellDef>
|
|
<td mat-footer-cell *matFooterCellDef>
|
|
@@ -756,7 +749,7 @@
|
|
|
{{
|
|
{{
|
|
|
row.ingreso_neto == "" || row.ingreso_neto == undefined
|
|
row.ingreso_neto == "" || row.ingreso_neto == undefined
|
|
|
? "-"
|
|
? "-"
|
|
|
- : row.ingreso_neto
|
|
|
|
|
|
|
+ : (row.ingreso_neto | number: "1.2-4")
|
|
|
}}
|
|
}}
|
|
|
</td>
|
|
</td>
|
|
|
<td mat-footer-cell *matFooterCellDef>
|
|
<td mat-footer-cell *matFooterCellDef>
|
|
@@ -773,7 +766,7 @@
|
|
|
row.dividendo_porcentaje == "" ||
|
|
row.dividendo_porcentaje == "" ||
|
|
|
row.dividendo_porcentaje == undefined
|
|
row.dividendo_porcentaje == undefined
|
|
|
? "-"
|
|
? "-"
|
|
|
- : row.dividendo_porcentaje
|
|
|
|
|
|
|
+ : (row.dividendo_porcentaje | number: "1.2-4")
|
|
|
}}
|
|
}}
|
|
|
</td>
|
|
</td>
|
|
|
<td mat-footer-cell *matFooterCellDef>
|
|
<td mat-footer-cell *matFooterCellDef>
|
|
@@ -790,7 +783,7 @@
|
|
|
row.rendimiento_porcentaje == "" ||
|
|
row.rendimiento_porcentaje == "" ||
|
|
|
row.rendimiento_porcentaje == undefined
|
|
row.rendimiento_porcentaje == undefined
|
|
|
? "-"
|
|
? "-"
|
|
|
- : row.rendimiento_porcentaje
|
|
|
|
|
|
|
+ : (row.rendimiento_porcentaje | number: "1.2-4")
|
|
|
}}
|
|
}}
|
|
|
</td>
|
|
</td>
|
|
|
<td mat-footer-cell *matFooterCellDef>
|
|
<td mat-footer-cell *matFooterCellDef>
|
|
@@ -806,7 +799,7 @@
|
|
|
{{
|
|
{{
|
|
|
row.rendimiento == "" || row.rendimiento == undefined
|
|
row.rendimiento == "" || row.rendimiento == undefined
|
|
|
? "-"
|
|
? "-"
|
|
|
- : row.rendimiento
|
|
|
|
|
|
|
+ : (row.rendimiento | number: "1.2-4")
|
|
|
}}
|
|
}}
|
|
|
</td>
|
|
</td>
|
|
|
<td mat-footer-cell *matFooterCellDef>
|
|
<td mat-footer-cell *matFooterCellDef>
|