iptdevs-design-system 2.7.127 → 2.7.128
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 +4 -1
- package/fesm2015/iptdevs-design-system.mjs +3 -0
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +3 -0
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -3564,6 +3564,7 @@ class CodFormStepFourComponent extends CodFormSteps {
|
|
|
3564
3564
|
});
|
|
3565
3565
|
}
|
|
3566
3566
|
getCodPricesByAgreement(agreement) {
|
|
3567
|
+
console.log(agreement);
|
|
3567
3568
|
let agreementSelected;
|
|
3568
3569
|
if (agreement) {
|
|
3569
3570
|
agreementSelected = agreement;
|
|
@@ -3713,6 +3714,7 @@ class CodFormStepFourComponent extends CodFormSteps {
|
|
|
3713
3714
|
}
|
|
3714
3715
|
// Eventos del select
|
|
3715
3716
|
selectPaymentMethod(paymentMethod) {
|
|
3717
|
+
console.log(paymentMethod);
|
|
3716
3718
|
if (paymentMethod !== '') {
|
|
3717
3719
|
this.codFormStepFour.controls['payment_method'].setValue(paymentMethod);
|
|
3718
3720
|
this.getCodPricesByAgreement();
|
|
@@ -3722,6 +3724,7 @@ class CodFormStepFourComponent extends CodFormSteps {
|
|
|
3722
3724
|
}
|
|
3723
3725
|
}
|
|
3724
3726
|
selectQuotas(quotas) {
|
|
3727
|
+
console.log(quotas);
|
|
3725
3728
|
if (quotas !== 'Número de cuotas') {
|
|
3726
3729
|
const codPrice = this.codPrices.filter(codPrice => codPrice.code === Number(quotas));
|
|
3727
3730
|
console.log(codPrice[0].code);
|