iptdevs-design-system 3.1.149 → 3.1.150
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/cod-form/cod-form.component.mjs +3 -1
- package/esm2020/lib/core/models/cod/cod-rq.model.mjs +1 -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/lib/core/models/cod/cod-rq.model.d.ts +1 -0
- package/package.json +1 -1
|
@@ -4619,6 +4619,7 @@ class CodFormComponent {
|
|
|
4619
4619
|
payment_dates: this.financingData,
|
|
4620
4620
|
program_price: data.filter(data => data.control === 'program_price')[0].value,
|
|
4621
4621
|
total_price: data.filter(data => data.control === 'total_price')[0].value,
|
|
4622
|
+
paid_level: data.filter(data => data.control === 'paid_level')[0].value,
|
|
4622
4623
|
terms: data.filter(data => data.control === 'terms')[0].value,
|
|
4623
4624
|
re_password: data.filter(data => data.control === 're_password')[0].value,
|
|
4624
4625
|
age: data.filter(data => data.control === 'age')[0].value,
|
|
@@ -4627,6 +4628,7 @@ class CodFormComponent {
|
|
|
4627
4628
|
academic_plan: data.filter(data => data.control === 'academic_plan')[0].value,
|
|
4628
4629
|
code_refers: data.filter(data => data.control === 'code_refers')[0].value,
|
|
4629
4630
|
};
|
|
4631
|
+
console.log(request);
|
|
4630
4632
|
return request;
|
|
4631
4633
|
}
|
|
4632
4634
|
changeStep(step) {
|