iptdevs-design-system 2.7.135 → 2.7.137
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 +2 -2
- package/esm2020/lib/cod/steps/cod-form-step-one/cod-form-step-one.component.mjs +4 -4
- package/fesm2015/iptdevs-design-system.mjs +4 -4
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +4 -4
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -2858,9 +2858,9 @@ class CodFormStepOneComponent extends CodFormSteps {
|
|
|
2858
2858
|
selectAcademicPlan(academic_plan) {
|
|
2859
2859
|
if (academic_plan !== 'Plan') {
|
|
2860
2860
|
this.codFormStepOne.controls['academic_plan'].setValue(academic_plan);
|
|
2861
|
-
this.codFormStepOne.controls['agreement_by_category'].setValue(null);
|
|
2862
|
-
this.codFormStepOne.controls['school_name'].setValue(null);
|
|
2863
|
-
this.codFormStepOne.controls['course_type'].setValue(null);
|
|
2861
|
+
// this.codFormStepOne.controls['agreement_by_category'].setValue(null);
|
|
2862
|
+
// this.codFormStepOne.controls['school_name'].setValue(null);
|
|
2863
|
+
// this.codFormStepOne.controls['course_type'].setValue(null);
|
|
2864
2864
|
this.getCourseType(academic_plan);
|
|
2865
2865
|
this.getAgreementByPlan(academic_plan);
|
|
2866
2866
|
}
|
|
@@ -3634,7 +3634,7 @@ class CodFormStepFourComponent extends CodFormSteps {
|
|
|
3634
3634
|
searchPriceByTypePayment(agreementSelected, type) {
|
|
3635
3635
|
let request = {
|
|
3636
3636
|
agreement: Number(agreementSelected),
|
|
3637
|
-
payment_method:
|
|
3637
|
+
payment_method: type
|
|
3638
3638
|
};
|
|
3639
3639
|
this.commercialService.getCodPricesByAgreementTypePayment(request).subscribe((response) => {
|
|
3640
3640
|
this.codPrices = response.data;
|