iptdevs-design-system 2.7.130 → 2.7.131

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.
@@ -3577,7 +3577,8 @@ class CodFormStepFourComponent extends CodFormSteps {
3577
3577
  const codPrices = response.data;
3578
3578
  this.codPrices = codPrices;
3579
3579
  if (this.codFormStepFour.controls['payment_method'].value === '1') {
3580
- const aux = this.codPrices.filter(codPrice => codPrice.agreement === Number(agreementSelected) && codPrice.fee_number > 1)[0];
3580
+ // const aux = this.codPrices.filter(codPrice => codPrice.agreement === Number(agreementSelected))[0];
3581
+ const aux = this.codPrices.filter(codPrice => codPrice.fee_number > 1)[0];
3581
3582
  this.codFormStepFour.controls['quota_times'].setValue(aux.code);
3582
3583
  this.codFormStepFour.controls['program_price'].setValue(aux.normal_price);
3583
3584
  }