|
|
@@ -65,14 +65,7 @@
|
|
|
}}%
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div class="col-lg-3 col-md-4 col-sm-6">
|
|
|
- <h4>Renta (%):</h4>
|
|
|
- <div class="field">
|
|
|
- {{
|
|
|
- instrument_work.renta_porcentaje | number: "1.2-4"
|
|
|
- }}%
|
|
|
- </div>
|
|
|
- </div>
|
|
|
+
|
|
|
<div class="col-lg-3 col-md-4 col-sm-6">
|
|
|
<h4>IVA ($):</h4>
|
|
|
<div class="field">
|
|
|
@@ -197,7 +190,10 @@
|
|
|
<input
|
|
|
type="text"
|
|
|
formControlName="ingreso_bruto"
|
|
|
- [value]="group.get('ingreso_bruto').value | number: '1.2-4'"
|
|
|
+ [value]="
|
|
|
+ group.get('ingreso_bruto').value
|
|
|
+ | number: '1.2-4'
|
|
|
+ "
|
|
|
class="form-control"
|
|
|
readonly
|
|
|
/>
|
|
|
@@ -217,7 +213,10 @@
|
|
|
<input
|
|
|
type="text"
|
|
|
formControlName="ingreso_neto"
|
|
|
- [value]="group.get('ingreso_neto').value | number: '1.2-4'"
|
|
|
+ [value]="
|
|
|
+ group.get('ingreso_neto').value
|
|
|
+ | number: '1.2-4'
|
|
|
+ "
|
|
|
class="form-control"
|
|
|
readonly
|
|
|
/>
|
|
|
@@ -237,7 +236,10 @@
|
|
|
<input
|
|
|
type="text"
|
|
|
formControlName="tasa_porcentaje"
|
|
|
- [value]="group.get('tasa_porcentaje').value | numberPipe"
|
|
|
+ [value]="
|
|
|
+ group.get('tasa_porcentaje').value
|
|
|
+ | numberPipe
|
|
|
+ "
|
|
|
(input)="inputValidator($event)"
|
|
|
class="form-control"
|
|
|
/>
|
|
|
@@ -259,7 +261,10 @@
|
|
|
<input
|
|
|
type="text"
|
|
|
formControlName="amortizacion_capital"
|
|
|
- [value]="group.get('amortizacion_capital').value | numberPipe"
|
|
|
+ [value]="
|
|
|
+ group.get('amortizacion_capital').value
|
|
|
+ | numberPipe
|
|
|
+ "
|
|
|
(input)="inputValidator($event)"
|
|
|
class="form-control"
|
|
|
/>
|
|
|
@@ -279,7 +284,10 @@
|
|
|
<input
|
|
|
type="text"
|
|
|
formControlName="monto_recibir"
|
|
|
- [value]="group.get('monto_recibir').value | number: '1.2-4'"
|
|
|
+ [value]="
|
|
|
+ group.get('monto_recibir').value
|
|
|
+ | number: '1.2-4'
|
|
|
+ "
|
|
|
class="form-control"
|
|
|
readonly
|
|
|
/>
|
|
|
@@ -300,7 +308,9 @@
|
|
|
<input
|
|
|
type="text"
|
|
|
formControlName="iva"
|
|
|
- [value]="group.get('iva').value | number: '1.2-4'"
|
|
|
+ [value]="
|
|
|
+ group.get('iva').value | number: '1.2-4'
|
|
|
+ "
|
|
|
class="form-control"
|
|
|
readonly
|
|
|
/>
|
|
|
@@ -322,7 +332,10 @@
|
|
|
<input
|
|
|
type="text"
|
|
|
formControlName="capital_restante"
|
|
|
- [value]="group.get('capital_restante').value | number: '1.2-4'"
|
|
|
+ [value]="
|
|
|
+ group.get('capital_restante').value
|
|
|
+ | number: '1.2-4'
|
|
|
+ "
|
|
|
class="form-control"
|
|
|
readonly
|
|
|
/>
|