|
|
@@ -444,16 +444,16 @@
|
|
|
<ng-container matColumnDef="ingreso_bruto">
|
|
|
<th mat-header-cell *matHeaderCellDef>Ingreso bruto</th>
|
|
|
<td mat-cell *matCellDef="let row">
|
|
|
- $USD
|
|
|
- {{
|
|
|
+
|
|
|
+ ${{
|
|
|
row.ingreso_bruto == "" || row.ingreso_bruto == undefined
|
|
|
? "-"
|
|
|
: (row.ingreso_bruto | number: "1.2-4")
|
|
|
}}
|
|
|
</td>
|
|
|
<td mat-footer-cell *matFooterCellDef>
|
|
|
- $USD
|
|
|
- {{
|
|
|
+
|
|
|
+ ${{
|
|
|
consolidado_proyeccion.total_ingreso_bruto | number: "1.2-4"
|
|
|
}}
|
|
|
</td>
|
|
|
@@ -461,16 +461,16 @@
|
|
|
<ng-container matColumnDef="ingreso_neto">
|
|
|
<th mat-header-cell *matHeaderCellDef>Ingreso neto</th>
|
|
|
<td mat-cell *matCellDef="let row">
|
|
|
- $USD
|
|
|
- {{
|
|
|
+
|
|
|
+ ${{
|
|
|
row.ingreso_neto == "" || row.ingreso_neto == undefined
|
|
|
? "-"
|
|
|
: (row.ingreso_neto | number: "1.2-4")
|
|
|
}}
|
|
|
</td>
|
|
|
<td mat-footer-cell *matFooterCellDef>
|
|
|
- $USD
|
|
|
- {{
|
|
|
+
|
|
|
+ ${{
|
|
|
consolidado_proyeccion.total_ingreso_neto | number: "1.2-4"
|
|
|
}}
|
|
|
</td>
|
|
|
@@ -478,12 +478,12 @@
|
|
|
<ng-container matColumnDef="costo_cedeval">
|
|
|
<th mat-header-cell *matHeaderCellDef>Costo CEDEVAL</th>
|
|
|
<td mat-cell *matCellDef="let row">
|
|
|
- $USD
|
|
|
- {{ row.costo_cedeval | number: "1.2-4" }}
|
|
|
+
|
|
|
+ ${{ row.costo_cedeval | number: "1.2-4" }}
|
|
|
</td>
|
|
|
<td mat-footer-cell *matFooterCellDef>
|
|
|
- $USD
|
|
|
- {{
|
|
|
+
|
|
|
+ ${{
|
|
|
consolidado_proyeccion.total_costo_cedeval | number: "1.2-4"
|
|
|
}}
|
|
|
</td>
|
|
|
@@ -491,22 +491,22 @@
|
|
|
<ng-container matColumnDef="renta">
|
|
|
<th mat-header-cell *matHeaderCellDef>Renta</th>
|
|
|
<td mat-cell *matCellDef="let row">
|
|
|
- $USD
|
|
|
- {{ row.renta | number: "1.2-4" }}
|
|
|
+
|
|
|
+ ${{ row.renta | number: "1.2-4" }}
|
|
|
</td>
|
|
|
<td mat-footer-cell *matFooterCellDef>
|
|
|
- $USD {{ consolidado_proyeccion.total_renta | number: "1.2-4" }}
|
|
|
+ ${{ consolidado_proyeccion.total_renta | number: "1.2-4" }}
|
|
|
</td>
|
|
|
</ng-container>
|
|
|
<ng-container matColumnDef="costo_transferencia">
|
|
|
<th mat-header-cell *matHeaderCellDef>Costo transferencia</th>
|
|
|
<td mat-cell *matCellDef="let row">
|
|
|
- $USD
|
|
|
- {{ row.costo_transferencia | number: "1.2-4" }}
|
|
|
+
|
|
|
+ ${{ row.costo_transferencia | number: "1.2-4" }}
|
|
|
</td>
|
|
|
<td mat-footer-cell *matFooterCellDef>
|
|
|
- $USD
|
|
|
- {{
|
|
|
+
|
|
|
+ ${{
|
|
|
consolidado_proyeccion.total_costo_transferencia
|
|
|
| number: "1.2-4"
|
|
|
}}
|
|
|
@@ -515,23 +515,23 @@
|
|
|
<ng-container matColumnDef="costo_banco">
|
|
|
<th mat-header-cell *matHeaderCellDef>Costo banco</th>
|
|
|
<td mat-cell *matCellDef="let row">
|
|
|
- $USD
|
|
|
- {{ row.costo_banco | number: "1.2-4" }}
|
|
|
+
|
|
|
+ ${{ row.costo_banco | number: "1.2-4" }}
|
|
|
</td>
|
|
|
<td mat-footer-cell *matFooterCellDef>
|
|
|
- $USD
|
|
|
- {{ consolidado_proyeccion.total_costo_banco | number: "1.2-4" }}
|
|
|
+
|
|
|
+ ${{ consolidado_proyeccion.total_costo_banco | number: "1.2-4" }}
|
|
|
</td>
|
|
|
</ng-container>
|
|
|
<ng-container matColumnDef="otros_costos">
|
|
|
<th mat-header-cell *matHeaderCellDef>Otros costos</th>
|
|
|
<td mat-cell *matCellDef="let row">
|
|
|
- $USD
|
|
|
- {{ row.otros_costos | number: "1.2-4" }}
|
|
|
+
|
|
|
+ ${{ row.otros_costos | number: "1.2-4" }}
|
|
|
</td>
|
|
|
<td mat-footer-cell *matFooterCellDef>
|
|
|
- $USD
|
|
|
- {{
|
|
|
+
|
|
|
+ ${{
|
|
|
consolidado_proyeccion.total_otros_costos | number: "1.2-4"
|
|
|
}}
|
|
|
</td>
|
|
|
@@ -744,16 +744,16 @@
|
|
|
<ng-container matColumnDef="ingreso_bruto">
|
|
|
<th mat-header-cell *matHeaderCellDef>Ingreso bruto</th>
|
|
|
<td mat-cell *matCellDef="let row">
|
|
|
- $USD
|
|
|
- {{
|
|
|
+
|
|
|
+ ${{
|
|
|
row.ingreso_bruto == "" || row.ingreso_bruto == undefined
|
|
|
? "-"
|
|
|
: (row.ingreso_bruto | number: "1.2-4")
|
|
|
}}
|
|
|
</td>
|
|
|
<td mat-footer-cell *matFooterCellDef>
|
|
|
- $USD
|
|
|
- {{
|
|
|
+
|
|
|
+ ${{
|
|
|
consolidado_proyeccion.total_ingreso_bruto | number: "1.2-4"
|
|
|
}}
|
|
|
</td>
|
|
|
@@ -761,16 +761,16 @@
|
|
|
<ng-container matColumnDef="ingreso_neto">
|
|
|
<th mat-header-cell *matHeaderCellDef>Ingreso neto</th>
|
|
|
<td mat-cell *matCellDef="let row">
|
|
|
- $USD
|
|
|
- {{
|
|
|
+
|
|
|
+ ${{
|
|
|
row.ingreso_neto == "" || row.ingreso_neto == undefined
|
|
|
? "-"
|
|
|
: (row.ingreso_neto | number: "1.2-4")
|
|
|
}}
|
|
|
</td>
|
|
|
<td mat-footer-cell *matFooterCellDef>
|
|
|
- $USD
|
|
|
- {{
|
|
|
+
|
|
|
+ ${{
|
|
|
consolidado_proyeccion.total_ingreso_neto | number: "1.2-4"
|
|
|
}}
|
|
|
</td>
|
|
|
@@ -778,12 +778,12 @@
|
|
|
<ng-container matColumnDef="costo_cedeval">
|
|
|
<th mat-header-cell *matHeaderCellDef>Costo CEDEVAL</th>
|
|
|
<td mat-cell *matCellDef="let row">
|
|
|
- $USD
|
|
|
- {{ row.costo_cedeval | number: "1.2-4" }}
|
|
|
+
|
|
|
+ ${{ row.costo_cedeval | number: "1.2-4" }}
|
|
|
</td>
|
|
|
<td mat-footer-cell *matFooterCellDef>
|
|
|
- $USD
|
|
|
- {{
|
|
|
+
|
|
|
+ ${{
|
|
|
consolidado_proyeccion.total_costo_cedeval | number: "1.2-4"
|
|
|
}}
|
|
|
</td>
|
|
|
@@ -791,22 +791,22 @@
|
|
|
<ng-container matColumnDef="renta">
|
|
|
<th mat-header-cell *matHeaderCellDef>Renta</th>
|
|
|
<td mat-cell *matCellDef="let row">
|
|
|
- $USD
|
|
|
- {{ row.renta | number: "1.2-4" }}
|
|
|
+
|
|
|
+ ${{ row.renta | number: "1.2-4" }}
|
|
|
</td>
|
|
|
<td mat-footer-cell *matFooterCellDef>
|
|
|
- $USD {{ consolidado_proyeccion.total_renta | number: "1.2-4" }}
|
|
|
+ ${{ consolidado_proyeccion.total_renta | number: "1.2-4" }}
|
|
|
</td>
|
|
|
</ng-container>
|
|
|
<ng-container matColumnDef="costo_transferencia">
|
|
|
<th mat-header-cell *matHeaderCellDef>Costo transferencia</th>
|
|
|
<td mat-cell *matCellDef="let row">
|
|
|
- $USD
|
|
|
- {{ row.costo_transferencia | number: "1.2-4" }}
|
|
|
+
|
|
|
+ ${{ row.costo_transferencia | number: "1.2-4" }}
|
|
|
</td>
|
|
|
<td mat-footer-cell *matFooterCellDef>
|
|
|
- $USD
|
|
|
- {{
|
|
|
+
|
|
|
+ ${{
|
|
|
consolidado_proyeccion.total_costo_transferencia
|
|
|
| number: "1.2-4"
|
|
|
}}
|
|
|
@@ -815,23 +815,23 @@
|
|
|
<ng-container matColumnDef="costo_banco">
|
|
|
<th mat-header-cell *matHeaderCellDef>Costo banco</th>
|
|
|
<td mat-cell *matCellDef="let row">
|
|
|
- $USD
|
|
|
- {{ row.costo_banco | number: "1.2-4" }}
|
|
|
+
|
|
|
+ ${{ row.costo_banco | number: "1.2-4" }}
|
|
|
</td>
|
|
|
<td mat-footer-cell *matFooterCellDef>
|
|
|
- $USD
|
|
|
- {{ consolidado_proyeccion.total_costo_banco | number: "1.2-4" }}
|
|
|
+
|
|
|
+ ${{ consolidado_proyeccion.total_costo_banco | number: "1.2-4" }}
|
|
|
</td>
|
|
|
</ng-container>
|
|
|
<ng-container matColumnDef="otros_costos">
|
|
|
<th mat-header-cell *matHeaderCellDef>Otros costos</th>
|
|
|
<td mat-cell *matCellDef="let row">
|
|
|
- $USD
|
|
|
- {{ row.otros_costos | number: "1.2-4" }}
|
|
|
+
|
|
|
+ ${{ row.otros_costos | number: "1.2-4" }}
|
|
|
</td>
|
|
|
<td mat-footer-cell *matFooterCellDef>
|
|
|
- $USD
|
|
|
- {{
|
|
|
+
|
|
|
+ ${{
|
|
|
consolidado_proyeccion.total_otros_costos | number: "1.2-4"
|
|
|
}}
|
|
|
</td>
|