iptdevs-design-system 3.1.217 → 3.1.219

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.
@@ -3687,7 +3687,7 @@ class CodFormStepThreeComponent extends CodFormSteps {
3687
3687
  }
3688
3688
  }
3689
3689
  else {
3690
- this.selectNeedAtendant(2);
3690
+ this.selectNeedAtendant(null);
3691
3691
  }
3692
3692
  }
3693
3693
  }
@@ -4290,9 +4290,9 @@ class CodFormStepFourComponent extends CodFormSteps {
4290
4290
  this.codFormStepFour.controls['total_price'].setValue(null);
4291
4291
  }
4292
4292
  setDataFromPreviusCodPrices() {
4293
- this.codFormStepFour.controls['payment_method'].setValue(this.initialData.cod_price.fee_number == 1 ? 1 : 2);
4293
+ this.codFormStepFour.controls['payment_method'].setValue(this.initialData.cod_price.fee_number == 1 ? 2 : 1);
4294
4294
  this.codFormStepFour.controls['total_price'].setValue(this.initialData.cod_price.enrollment);
4295
- this.codFormStepFour.controls['program_price'].setValue(this.initialData.cod_price.fee_number == 1 ? this.initialData.financed_price : this.initialData.normal_price);
4295
+ this.codFormStepFour.controls['program_price'].setValue(this.initialData.cod_price.fee_number == 1 ? this.initialData.cod_price.normal_price : this.initialData.cod_price.financed_price);
4296
4296
  this.codFormStepFour.controls['paid_level'].setValue(this.initialData.cod_price.paid_level);
4297
4297
  this.codFormStepFour.controls['fee_number'].setValue(this.initialData.cod_price.fee_number);
4298
4298
  this.codFormStepFour.controls['quota_price'].setValue(this.initialData.cod_price.quota_price);