IO-2030 Add totals to labor allocations table.

This commit is contained in:
Patrick Fic
2022-08-25 14:56:59 -07:00
parent 5264dfa49f
commit 79563a5cba
2 changed files with 36 additions and 2 deletions

View File

@@ -39,7 +39,7 @@ export const CalculateAllocationsTotals = (
}, 0),
};
r.difference = (r.total + r.adjustments - r.claimed).toFixed(2);
r.difference = r.total + r.adjustments - r.claimed;
acc.push(r);
return acc;
}, []);