iptdevs-design-system 3.1.228 → 3.1.229
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2020/lib/cod/steps/cod-form-step-four/cod-form-step-four.component.mjs +3 -1
- package/fesm2015/iptdevs-design-system.mjs +2 -0
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +2 -0
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -4299,6 +4299,7 @@ class CodFormStepFourComponent extends CodFormSteps {
|
|
|
4299
4299
|
this.codFormStepFour.controls['paid_level'].setValue(this.initialData.cod_price.paid_level);
|
|
4300
4300
|
this.codFormStepFour.controls['fee_number'].setValue(this.initialData.cod_price.fee_number);
|
|
4301
4301
|
this.codFormStepFour.controls['quota_price'].setValue(this.initialData.cod_price.quota_price);
|
|
4302
|
+
this.codFormStepFour.controls['payment_date'].setValue(this.initialData.cod_payment[0].timely_date);
|
|
4302
4303
|
this.updateValueAndValidity();
|
|
4303
4304
|
}
|
|
4304
4305
|
else if (this.codFormStepFour.get('payment_method')?.value == 2) {
|
|
@@ -4308,6 +4309,7 @@ class CodFormStepFourComponent extends CodFormSteps {
|
|
|
4308
4309
|
this.codFormStepFour.controls['paid_level'].setValue(this.initialData.cod_price.paid_level);
|
|
4309
4310
|
this.codFormStepFour.controls['fee_number'].setValue(1);
|
|
4310
4311
|
this.codFormStepFour.controls['quota_price'].setValue(this.initialData.cod_price.quota_price);
|
|
4312
|
+
this.codFormStepFour.controls['payment_date'].setValue(this.initialData.cod_payment[0].timely_date);
|
|
4311
4313
|
this.updateValueAndValidity();
|
|
4312
4314
|
}
|
|
4313
4315
|
// this.codFormStepFour.controls['total_price'].setValue(this.initialData.cod_price.enrollment);
|