|
@@ -129,6 +129,14 @@ export class CETE implements InstrumentComponent {
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
this.investmentProposalForm = this.formBuilder.group({
|
|
this.investmentProposalForm = this.formBuilder.group({
|
|
|
|
|
+ renta_porcentaje: [
|
|
|
|
|
+ this.instrument_exists ? "" : this.instrument_work.renta_porcentaje,
|
|
|
|
|
+ [
|
|
|
|
|
+ Validators.required,
|
|
|
|
|
+ Validators.pattern(/^[+]?([0-9]+(?:[\.][0-9]*)?|\.[0-9]+)$/)
|
|
|
|
|
+ ]
|
|
|
|
|
+ ],
|
|
|
|
|
+
|
|
|
valor_nominal: [
|
|
valor_nominal: [
|
|
|
this.instrument_exists ? "" : this.instrument_work.valor_nominal,
|
|
this.instrument_exists ? "" : this.instrument_work.valor_nominal,
|
|
|
[
|
|
[
|