Issues resolved with Bill Enter Modal IO-480

This commit is contained in:
Patrick Fic
2021-02-04 19:11:00 -08:00
parent 69ac212f0c
commit 89d59d256c
13 changed files with 52 additions and 47 deletions

View File

@@ -22,7 +22,6 @@ export const CalculateBillTotal = (invoice) => {
billlines.forEach((i) => {
if (!!i) {
console.log("Amount:", (i.actual_cost || 0) * 100);
const itemTotal = Dinero({
amount:
Math.round(((i.actual_cost || 0) * 100 + Number.EPSILON) * 100) / 100,