|
@@ -382,7 +382,7 @@ export const TabColumns = [
|
|
|
width: 200,
|
|
|
computed: (prop) => {
|
|
|
const { qty, taxPrice } = prop;
|
|
|
- const taxMoney = (qty * taxPrice).toFixed(8);
|
|
|
+ const taxMoney = (qty * taxPrice).toFixed(6);
|
|
|
return taxMoney === "NaN" ? null : taxMoney;
|
|
|
},
|
|
|
},
|
|
@@ -394,7 +394,7 @@ export const TabColumns = [
|
|
|
computed: (prop) => {
|
|
|
const { tax, taxPrice } = prop;
|
|
|
const newTax = Number(tax) / 100;
|
|
|
- const taxFreePrice = (taxPrice / (1 + newTax)).toFixed(8);
|
|
|
+ const taxFreePrice = (taxPrice / (1 + newTax)).toFixed(6);
|
|
|
return taxFreePrice === "NaN" ? null : taxFreePrice;
|
|
|
},
|
|
|
},
|
|
@@ -405,7 +405,7 @@ export const TabColumns = [
|
|
|
width: 200,
|
|
|
computed: (prop) => {
|
|
|
const { qty, taxFreePrice } = prop;
|
|
|
- const taxFreeMoney = (qty * taxFreePrice).toFixed(8);
|
|
|
+ const taxFreeMoney = (qty * taxFreePrice).toFixed(6);
|
|
|
return taxFreeMoney === "NaN" ? null : taxFreeMoney;
|
|
|
},
|
|
|
},
|