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.
@@ -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: 'contad'
3637
+ payment_method: type
3638
3638
  };
3639
3639
  this.commercialService.getCodPricesByAgreementTypePayment(request).subscribe((response) => {
3640
3640
  this.codPrices = response.data;