|
@@ -397,12 +397,12 @@
|
|
<div class="product-total-table">
|
|
<div class="product-total-table">
|
|
<div class="total-item">
|
|
<div class="total-item">
|
|
<div class="label">Sub Total</div>
|
|
<div class="label">Sub Total</div>
|
|
- <div class="value">{{ subTotal.toFixed(2) }}</div>
|
|
|
|
|
|
+ <div class="value">{{ toFixed(subTotal, 2) }}</div>
|
|
</div>
|
|
</div>
|
|
<div class="total-item">
|
|
<div class="total-item">
|
|
<div class="label">Total Discount</div>
|
|
<div class="label">Total Discount</div>
|
|
<div class="value">
|
|
<div class="value">
|
|
- {{ totalDiscount.toFixed(2) }}
|
|
|
|
|
|
+ {{ toFixed(totalDiscount, 2) }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="total-item">
|
|
<div class="total-item">
|
|
@@ -418,7 +418,7 @@
|
|
<div class="total-item">
|
|
<div class="total-item">
|
|
<div class="label">Grand Total</div>
|
|
<div class="label">Grand Total</div>
|
|
<div class="value">
|
|
<div class="value">
|
|
- {{ grandTotal.toFixed(2) }}
|
|
|
|
|
|
+ {{ toFixed(grandTotal, 2) }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@@ -672,13 +672,13 @@
|
|
<td>
|
|
<td>
|
|
{{ currentCurrency.country
|
|
{{ currentCurrency.country
|
|
}}{{ currentCurrency.symbol }} {{
|
|
}}{{ currentCurrency.symbol }} {{
|
|
- Number(product.rate).toFixed(computedDeci)
|
|
|
|
|
|
+ toFixed(Number(product.rate), computedDeci)
|
|
}}
|
|
}}
|
|
</td>
|
|
</td>
|
|
<td>
|
|
<td>
|
|
{{ currentCurrency.country
|
|
{{ currentCurrency.country
|
|
}}{{ currentCurrency.symbol }} {{
|
|
}}{{ currentCurrency.symbol }} {{
|
|
- Number(product.amount).toFixed(computedDeci)
|
|
|
|
|
|
+ toFixed(Number(product.amount), computedDeci)
|
|
}}
|
|
}}
|
|
</td>
|
|
</td>
|
|
</tr>
|
|
</tr>
|
|
@@ -712,7 +712,7 @@
|
|
<div class="value">
|
|
<div class="value">
|
|
{{ currentCurrency.country
|
|
{{ currentCurrency.country
|
|
}}{{ currentCurrency.symbol }} {{
|
|
}}{{ currentCurrency.symbol }} {{
|
|
- subTotal.toFixed(computedDeci)
|
|
|
|
|
|
+ toFixed(subTotal, computedDeci)
|
|
}}
|
|
}}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@@ -721,7 +721,7 @@
|
|
<div class="value">
|
|
<div class="value">
|
|
{{ currentCurrency.country
|
|
{{ currentCurrency.country
|
|
}}{{ currentCurrency.symbol }} {{
|
|
}}{{ currentCurrency.symbol }} {{
|
|
- grandTotal.toFixed(computedDeci)
|
|
|
|
|
|
+ toFixed(grandTotal, computedDeci)
|
|
}}
|
|
}}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@@ -906,13 +906,13 @@
|
|
<td>
|
|
<td>
|
|
{{ currentCurrency.country
|
|
{{ currentCurrency.country
|
|
}}{{ currentCurrency.symbol }} {{
|
|
}}{{ currentCurrency.symbol }} {{
|
|
- Number(product.rate).toFixed(computedDeci)
|
|
|
|
|
|
+ toFixed(Number(product.rate), computedDeci)
|
|
}}
|
|
}}
|
|
</td>
|
|
</td>
|
|
<td>
|
|
<td>
|
|
{{ currentCurrency.country
|
|
{{ currentCurrency.country
|
|
}}{{ currentCurrency.symbol }} {{
|
|
}}{{ currentCurrency.symbol }} {{
|
|
- Number(product.amount).toFixed(computedDeci)
|
|
|
|
|
|
+ toFixed(Number(product.amount), computedDeci)
|
|
}}
|
|
}}
|
|
</td>
|
|
</td>
|
|
</tr>
|
|
</tr>
|
|
@@ -1622,6 +1622,13 @@ const getProductList = utils.debounce(
|
|
},
|
|
},
|
|
1000,
|
|
1000,
|
|
)
|
|
)
|
|
|
|
+const toFixed = function (value: number, ratio = 2) {
|
|
|
|
+ let r = 100
|
|
|
|
+ if (ratio === 3) {
|
|
|
|
+ r = 1000
|
|
|
|
+ }
|
|
|
|
+ return utils.toFixed(value, r)
|
|
|
|
+}
|
|
|
|
|
|
const vendorList = ref<IVendorItem[]>([])
|
|
const vendorList = ref<IVendorItem[]>([])
|
|
const computedVendor = computed(() => {
|
|
const computedVendor = computed(() => {
|