|
@@ -1098,14 +1098,14 @@
|
|
|
<ng-container matColumnDef="cuota">
|
|
<ng-container matColumnDef="cuota">
|
|
|
<th mat-header-cell *matHeaderCellDef>Cuota</th>
|
|
<th mat-header-cell *matHeaderCellDef>Cuota</th>
|
|
|
<td mat-cell *matCellDef="let row">
|
|
<td mat-cell *matCellDef="let row">
|
|
|
- {{
|
|
|
|
|
|
|
+ ${{
|
|
|
row.cuota == "" || row.cuota == undefined
|
|
row.cuota == "" || row.cuota == undefined
|
|
|
? "-"
|
|
? "-"
|
|
|
: (row.cuota | number: "1.2-4")
|
|
: (row.cuota | number: "1.2-4")
|
|
|
}}
|
|
}}
|
|
|
</td>
|
|
</td>
|
|
|
<td mat-footer-cell *matFooterCellDef>
|
|
<td mat-footer-cell *matFooterCellDef>
|
|
|
- $USD {{ consolidado_proyeccion.total_cuota | number: "1.2-4" }}
|
|
|
|
|
|
|
+ ${{ consolidado_proyeccion.total_cuota | number: "1.2-4" }}
|
|
|
</td>
|
|
</td>
|
|
|
</ng-container>
|
|
</ng-container>
|
|
|
<ng-container matColumnDef="amortizacion_porcentaje">
|
|
<ng-container matColumnDef="amortizacion_porcentaje">
|
|
@@ -1116,7 +1116,7 @@
|
|
|
row.amortizacion_porcentaje == undefined
|
|
row.amortizacion_porcentaje == undefined
|
|
|
? "-"
|
|
? "-"
|
|
|
: (row.amortizacion_porcentaje | number: "1.2-4")
|
|
: (row.amortizacion_porcentaje | number: "1.2-4")
|
|
|
- }}
|
|
|
|
|
|
|
+ }}%
|
|
|
</td>
|
|
</td>
|
|
|
<td mat-footer-cell *matFooterCellDef>
|
|
<td mat-footer-cell *matFooterCellDef>
|
|
|
{{
|
|
{{
|
|
@@ -1128,7 +1128,7 @@
|
|
|
<ng-container matColumnDef="amortizacion_capital">
|
|
<ng-container matColumnDef="amortizacion_capital">
|
|
|
<th mat-header-cell *matHeaderCellDef>Amortización capital</th>
|
|
<th mat-header-cell *matHeaderCellDef>Amortización capital</th>
|
|
|
<td mat-cell *matCellDef="let row">
|
|
<td mat-cell *matCellDef="let row">
|
|
|
- {{
|
|
|
|
|
|
|
+ ${{
|
|
|
row.amortizacion_capital == "" ||
|
|
row.amortizacion_capital == "" ||
|
|
|
row.amortizacion_capital == undefined
|
|
row.amortizacion_capital == undefined
|
|
|
? "-"
|
|
? "-"
|
|
@@ -1136,8 +1136,8 @@
|
|
|
}}
|
|
}}
|
|
|
</td>
|
|
</td>
|
|
|
<td mat-footer-cell *matFooterCellDef>
|
|
<td mat-footer-cell *matFooterCellDef>
|
|
|
- $USD
|
|
|
|
|
- {{
|
|
|
|
|
|
|
+
|
|
|
|
|
+ ${{
|
|
|
consolidado_proyeccion.total_amortizacion_capital
|
|
consolidado_proyeccion.total_amortizacion_capital
|
|
|
| number: "1.2-4"
|
|
| number: "1.2-4"
|
|
|
}}
|
|
}}
|
|
@@ -1146,15 +1146,15 @@
|
|
|
<ng-container matColumnDef="ingreso_bruto">
|
|
<ng-container matColumnDef="ingreso_bruto">
|
|
|
<th mat-header-cell *matHeaderCellDef>Ingreso bruto</th>
|
|
<th mat-header-cell *matHeaderCellDef>Ingreso bruto</th>
|
|
|
<td mat-cell *matCellDef="let row">
|
|
<td mat-cell *matCellDef="let row">
|
|
|
- {{
|
|
|
|
|
|
|
+ ${{
|
|
|
row.ingreso_bruto == "" || row.ingreso_bruto == undefined
|
|
row.ingreso_bruto == "" || row.ingreso_bruto == undefined
|
|
|
? "-"
|
|
? "-"
|
|
|
: (row.ingreso_bruto | number: "1.2-4")
|
|
: (row.ingreso_bruto | number: "1.2-4")
|
|
|
}}
|
|
}}
|
|
|
</td>
|
|
</td>
|
|
|
<td mat-footer-cell *matFooterCellDef>
|
|
<td mat-footer-cell *matFooterCellDef>
|
|
|
- $USD
|
|
|
|
|
- {{
|
|
|
|
|
|
|
+
|
|
|
|
|
+ ${{
|
|
|
consolidado_proyeccion.total_ingreso_bruto | number: "1.2-4"
|
|
consolidado_proyeccion.total_ingreso_bruto | number: "1.2-4"
|
|
|
}}
|
|
}}
|
|
|
</td>
|
|
</td>
|
|
@@ -1162,29 +1162,29 @@
|
|
|
<ng-container matColumnDef="renta">
|
|
<ng-container matColumnDef="renta">
|
|
|
<th mat-header-cell *matHeaderCellDef>Renta</th>
|
|
<th mat-header-cell *matHeaderCellDef>Renta</th>
|
|
|
<td mat-cell *matCellDef="let row">
|
|
<td mat-cell *matCellDef="let row">
|
|
|
- {{
|
|
|
|
|
|
|
+ ${{
|
|
|
row.renta == "" || row.renta == undefined
|
|
row.renta == "" || row.renta == undefined
|
|
|
? "-"
|
|
? "-"
|
|
|
: (row.renta | number: "1.2-4")
|
|
: (row.renta | number: "1.2-4")
|
|
|
}}
|
|
}}
|
|
|
</td>
|
|
</td>
|
|
|
<td mat-footer-cell *matFooterCellDef>
|
|
<td mat-footer-cell *matFooterCellDef>
|
|
|
- $USD
|
|
|
|
|
- {{ consolidado_proyeccion.total_renta | number: "1.2-4" }}
|
|
|
|
|
|
|
+
|
|
|
|
|
+ ${{ consolidado_proyeccion.total_renta | number: "1.2-4" }}
|
|
|
</td>
|
|
</td>
|
|
|
</ng-container>
|
|
</ng-container>
|
|
|
<ng-container matColumnDef="ingreso_neto">
|
|
<ng-container matColumnDef="ingreso_neto">
|
|
|
<th mat-header-cell *matHeaderCellDef>Ingreso neto</th>
|
|
<th mat-header-cell *matHeaderCellDef>Ingreso neto</th>
|
|
|
<td mat-cell *matCellDef="let row">
|
|
<td mat-cell *matCellDef="let row">
|
|
|
- {{
|
|
|
|
|
|
|
+ ${{
|
|
|
row.ingreso_neto == "" || row.ingreso_neto == undefined
|
|
row.ingreso_neto == "" || row.ingreso_neto == undefined
|
|
|
? "-"
|
|
? "-"
|
|
|
: (row.ingreso_neto | number: "1.2-4")
|
|
: (row.ingreso_neto | number: "1.2-4")
|
|
|
}}
|
|
}}
|
|
|
</td>
|
|
</td>
|
|
|
<td mat-footer-cell *matFooterCellDef>
|
|
<td mat-footer-cell *matFooterCellDef>
|
|
|
- $USD
|
|
|
|
|
- {{
|
|
|
|
|
|
|
+
|
|
|
|
|
+ ${{
|
|
|
consolidado_proyeccion.total_ingreso_neto | number: "1.2-4"
|
|
consolidado_proyeccion.total_ingreso_neto | number: "1.2-4"
|
|
|
}}
|
|
}}
|
|
|
</td>
|
|
</td>
|
|
@@ -1193,14 +1193,14 @@
|
|
|
<ng-container matColumnDef="saldo">
|
|
<ng-container matColumnDef="saldo">
|
|
|
<th mat-header-cell *matHeaderCellDef>Saldo</th>
|
|
<th mat-header-cell *matHeaderCellDef>Saldo</th>
|
|
|
<td mat-cell *matCellDef="let row">
|
|
<td mat-cell *matCellDef="let row">
|
|
|
- {{
|
|
|
|
|
|
|
+ ${{
|
|
|
row.saldo == "" || row.saldo == undefined
|
|
row.saldo == "" || row.saldo == undefined
|
|
|
? "-"
|
|
? "-"
|
|
|
: (row.saldo | number: "1.2-4")
|
|
: (row.saldo | number: "1.2-4")
|
|
|
}}
|
|
}}
|
|
|
</td>
|
|
</td>
|
|
|
<td mat-footer-cell *matFooterCellDef>
|
|
<td mat-footer-cell *matFooterCellDef>
|
|
|
- $USD {{ consolidado_proyeccion.total_saldo | number: "1.2-4" }}
|
|
|
|
|
|
|
+ ${{ consolidado_proyeccion.total_saldo | number: "1.2-4" }}
|
|
|
</td>
|
|
</td>
|
|
|
</ng-container>
|
|
</ng-container>
|
|
|
|
|
|
|
@@ -1728,14 +1728,14 @@
|
|
|
<ng-container matColumnDef="cuota">
|
|
<ng-container matColumnDef="cuota">
|
|
|
<th mat-header-cell *matHeaderCellDef>Cuota</th>
|
|
<th mat-header-cell *matHeaderCellDef>Cuota</th>
|
|
|
<td mat-cell *matCellDef="let row">
|
|
<td mat-cell *matCellDef="let row">
|
|
|
- {{
|
|
|
|
|
|
|
+ ${{
|
|
|
row.cuota == "" || row.cuota == undefined
|
|
row.cuota == "" || row.cuota == undefined
|
|
|
? "-"
|
|
? "-"
|
|
|
: (row.cuota | number: "1.2-4")
|
|
: (row.cuota | number: "1.2-4")
|
|
|
}}
|
|
}}
|
|
|
</td>
|
|
</td>
|
|
|
<td mat-footer-cell *matFooterCellDef>
|
|
<td mat-footer-cell *matFooterCellDef>
|
|
|
- $USD {{ consolidado_proyeccion.total_cuota | number: "1.2-4" }}
|
|
|
|
|
|
|
+ ${{ consolidado_proyeccion.total_cuota | number: "1.2-4" }}
|
|
|
</td>
|
|
</td>
|
|
|
</ng-container>
|
|
</ng-container>
|
|
|
<ng-container matColumnDef="amortizacion_porcentaje">
|
|
<ng-container matColumnDef="amortizacion_porcentaje">
|
|
@@ -1746,7 +1746,7 @@
|
|
|
row.amortizacion_porcentaje == undefined
|
|
row.amortizacion_porcentaje == undefined
|
|
|
? "-"
|
|
? "-"
|
|
|
: (row.amortizacion_porcentaje | number: "1.2-4")
|
|
: (row.amortizacion_porcentaje | number: "1.2-4")
|
|
|
- }}
|
|
|
|
|
|
|
+ }}%
|
|
|
</td>
|
|
</td>
|
|
|
<td mat-footer-cell *matFooterCellDef>
|
|
<td mat-footer-cell *matFooterCellDef>
|
|
|
{{
|
|
{{
|
|
@@ -1758,7 +1758,7 @@
|
|
|
<ng-container matColumnDef="amortizacion_capital">
|
|
<ng-container matColumnDef="amortizacion_capital">
|
|
|
<th mat-header-cell *matHeaderCellDef>Amortización capital</th>
|
|
<th mat-header-cell *matHeaderCellDef>Amortización capital</th>
|
|
|
<td mat-cell *matCellDef="let row">
|
|
<td mat-cell *matCellDef="let row">
|
|
|
- {{
|
|
|
|
|
|
|
+ ${{
|
|
|
row.amortizacion_capital == "" ||
|
|
row.amortizacion_capital == "" ||
|
|
|
row.amortizacion_capital == undefined
|
|
row.amortizacion_capital == undefined
|
|
|
? "-"
|
|
? "-"
|
|
@@ -1766,7 +1766,7 @@
|
|
|
}}
|
|
}}
|
|
|
</td>
|
|
</td>
|
|
|
<td mat-footer-cell *matFooterCellDef>
|
|
<td mat-footer-cell *matFooterCellDef>
|
|
|
- $USD{{
|
|
|
|
|
|
|
+ ${{
|
|
|
consolidado_proyeccion.total_amortizacion_capital
|
|
consolidado_proyeccion.total_amortizacion_capital
|
|
|
| number: "1.2-4"
|
|
| number: "1.2-4"
|
|
|
}}
|
|
}}
|
|
@@ -1775,14 +1775,14 @@
|
|
|
<ng-container matColumnDef="ingreso_bruto">
|
|
<ng-container matColumnDef="ingreso_bruto">
|
|
|
<th mat-header-cell *matHeaderCellDef>Ingreso bruto</th>
|
|
<th mat-header-cell *matHeaderCellDef>Ingreso bruto</th>
|
|
|
<td mat-cell *matCellDef="let row">
|
|
<td mat-cell *matCellDef="let row">
|
|
|
- {{
|
|
|
|
|
|
|
+ ${{
|
|
|
row.ingreso_bruto == "" || row.ingreso_bruto == undefined
|
|
row.ingreso_bruto == "" || row.ingreso_bruto == undefined
|
|
|
? "-"
|
|
? "-"
|
|
|
: (row.ingreso_bruto | number: "1.2-4")
|
|
: (row.ingreso_bruto | number: "1.2-4")
|
|
|
}}
|
|
}}
|
|
|
</td>
|
|
</td>
|
|
|
<td mat-footer-cell *matFooterCellDef>
|
|
<td mat-footer-cell *matFooterCellDef>
|
|
|
- $USD{{
|
|
|
|
|
|
|
+ ${{
|
|
|
consolidado_proyeccion.total_ingreso_bruto | number: "1.2-4"
|
|
consolidado_proyeccion.total_ingreso_bruto | number: "1.2-4"
|
|
|
}}
|
|
}}
|
|
|
</td>
|
|
</td>
|
|
@@ -1790,27 +1790,27 @@
|
|
|
<ng-container matColumnDef="renta">
|
|
<ng-container matColumnDef="renta">
|
|
|
<th mat-header-cell *matHeaderCellDef>Renta</th>
|
|
<th mat-header-cell *matHeaderCellDef>Renta</th>
|
|
|
<td mat-cell *matCellDef="let row">
|
|
<td mat-cell *matCellDef="let row">
|
|
|
- {{
|
|
|
|
|
|
|
+ ${{
|
|
|
row.renta == "" || row.renta == undefined
|
|
row.renta == "" || row.renta == undefined
|
|
|
? "-"
|
|
? "-"
|
|
|
: (row.renta | number: "1.2-4")
|
|
: (row.renta | number: "1.2-4")
|
|
|
}}
|
|
}}
|
|
|
</td>
|
|
</td>
|
|
|
<td mat-footer-cell *matFooterCellDef>
|
|
<td mat-footer-cell *matFooterCellDef>
|
|
|
- $USD{{ consolidado_proyeccion.total_renta | number: "1.2-4" }}
|
|
|
|
|
|
|
+ ${{ consolidado_proyeccion.total_renta | number: "1.2-4" }}
|
|
|
</td>
|
|
</td>
|
|
|
</ng-container>
|
|
</ng-container>
|
|
|
<ng-container matColumnDef="ingreso_neto">
|
|
<ng-container matColumnDef="ingreso_neto">
|
|
|
<th mat-header-cell *matHeaderCellDef>Ingreso neto</th>
|
|
<th mat-header-cell *matHeaderCellDef>Ingreso neto</th>
|
|
|
<td mat-cell *matCellDef="let row">
|
|
<td mat-cell *matCellDef="let row">
|
|
|
- {{
|
|
|
|
|
|
|
+ ${{
|
|
|
row.ingreso_neto == "" || row.ingreso_neto == undefined
|
|
row.ingreso_neto == "" || row.ingreso_neto == undefined
|
|
|
? "-"
|
|
? "-"
|
|
|
: (row.ingreso_neto | number: "1.2-4")
|
|
: (row.ingreso_neto | number: "1.2-4")
|
|
|
}}
|
|
}}
|
|
|
</td>
|
|
</td>
|
|
|
<td mat-footer-cell *matFooterCellDef>
|
|
<td mat-footer-cell *matFooterCellDef>
|
|
|
- $USD{{
|
|
|
|
|
|
|
+ ${{
|
|
|
consolidado_proyeccion.total_ingreso_neto | number: "1.2-4"
|
|
consolidado_proyeccion.total_ingreso_neto | number: "1.2-4"
|
|
|
}}
|
|
}}
|
|
|
</td>
|
|
</td>
|
|
@@ -1819,14 +1819,14 @@
|
|
|
<ng-container matColumnDef="saldo">
|
|
<ng-container matColumnDef="saldo">
|
|
|
<th mat-header-cell *matHeaderCellDef>Saldo</th>
|
|
<th mat-header-cell *matHeaderCellDef>Saldo</th>
|
|
|
<td mat-cell *matCellDef="let row">
|
|
<td mat-cell *matCellDef="let row">
|
|
|
- {{
|
|
|
|
|
|
|
+ ${{
|
|
|
row.saldo == "" || row.saldo == undefined
|
|
row.saldo == "" || row.saldo == undefined
|
|
|
? "-"
|
|
? "-"
|
|
|
: (row.saldo | number: "1.2-4")
|
|
: (row.saldo | number: "1.2-4")
|
|
|
}}
|
|
}}
|
|
|
</td>
|
|
</td>
|
|
|
<td mat-footer-cell *matFooterCellDef>
|
|
<td mat-footer-cell *matFooterCellDef>
|
|
|
- $USD{{ consolidado_proyeccion.total_saldo | number: "1.2-4" }}
|
|
|
|
|
|
|
+ ${{ consolidado_proyeccion.total_saldo | number: "1.2-4" }}
|
|
|
</td>
|
|
</td>
|
|
|
</ng-container>
|
|
</ng-container>
|
|
|
|
|
|