iptdevs-design-system 3.1.639 → 3.1.640
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-self-managed/steps/cod-form-step-three/cod-self-form-step-three.component.mjs +3 -2
- package/fesm2015/iptdevs-design-system.mjs +2 -1
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +2 -1
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -7385,8 +7385,9 @@ class CodSelfFormStepThreeComponent extends CodSelfManagedSteps {
|
|
|
7385
7385
|
const enrollmentValueTwo = parseFloat(this.dataFinancing[0][1].replace(/[^\d.-]/g, ''));
|
|
7386
7386
|
const firstQuotaValueTwo = parseFloat(this.dataFinancing[1][1].replace(/[^\d.-]/g, ''));
|
|
7387
7387
|
this.totalInitialPayment = enrollmentValueTwo + firstQuotaValueTwo;
|
|
7388
|
+
console.log('linea, 246', this.totalInitialPayment);
|
|
7388
7389
|
const totalInitialPaymentInteger = Math.round(this.totalInitialPayment);
|
|
7389
|
-
const formattedTotalInitialPayment = new Intl.NumberFormat('en-US', { style: 'currency', currency: 'USD' }).format(totalInitialPaymentInteger);
|
|
7390
|
+
const formattedTotalInitialPayment = new Intl.NumberFormat('en-US', { style: 'currency', currency: 'USD', minimumFractionDigits: 0 }).format(totalInitialPaymentInteger);
|
|
7390
7391
|
console.log('linea, 246', formattedTotalInitialPayment);
|
|
7391
7392
|
const combinedRecord = [
|
|
7392
7393
|
this.dataFinancing[0][0],
|