iptdevs-design-system 2.7.140 → 2.7.141
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 +3 -3
- package/fesm2015/iptdevs-design-system.mjs +2 -2
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +2 -2
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -3583,7 +3583,7 @@ class CodFormStepFourComponent extends CodFormSteps {
|
|
|
3583
3583
|
if (this.codFormStepFour.controls['payment_method'].value === '1') {
|
|
3584
3584
|
let request = {
|
|
3585
3585
|
agreement: Number(agreementSelected),
|
|
3586
|
-
payment_method: '
|
|
3586
|
+
payment_method: 'cuota'
|
|
3587
3587
|
};
|
|
3588
3588
|
this.commercialService.getCodPricesByAgreementTypePayment(request).subscribe((response) => {
|
|
3589
3589
|
this.codPrices = response.data;
|
|
@@ -3595,7 +3595,7 @@ class CodFormStepFourComponent extends CodFormSteps {
|
|
|
3595
3595
|
if (this.codFormStepFour.controls['payment_method'].value === '2') {
|
|
3596
3596
|
let request = {
|
|
3597
3597
|
agreement: Number(agreementSelected),
|
|
3598
|
-
payment_method: '
|
|
3598
|
+
payment_method: 'conta'
|
|
3599
3599
|
};
|
|
3600
3600
|
this.commercialService.getCodPricesByAgreementTypePayment(request).subscribe((response) => {
|
|
3601
3601
|
this.codPrices = response.data;
|