|
|
@@ -133,6 +133,7 @@ export class BONO implements InstrumentComponent {
|
|
|
{ codigo: 1, nombre: "Completa" },
|
|
|
{ codigo: 0, nombre: "Parcial" }
|
|
|
];
|
|
|
+ tipoEjecucion: number;
|
|
|
|
|
|
constructor(
|
|
|
private formBuilder: FormBuilder,
|
|
|
@@ -703,4 +704,8 @@ export class BONO implements InstrumentComponent {
|
|
|
goToNext(form: any) {
|
|
|
this.getCalculations(form, true);
|
|
|
}
|
|
|
+
|
|
|
+ toggle_ejecucion(input: any) {
|
|
|
+ this.tipoEjecucion = +input;
|
|
|
+ }
|
|
|
}
|