$0DB Updates, quantity ignore.

This commit is contained in:
Patrick Fic
2022-02-17 09:17:00 -08:00
parent 9b64d90361
commit 54d4625a6a
8 changed files with 54 additions and 36 deletions

View File

@@ -20,9 +20,10 @@ export default function JobPartsGraphAtom({
}
acc[val.part_type] = acc[val.part_type].add(
Dinero({ amount: Math.round((val[price] || 0) * 100) }).multiply(
val.part_qty || 1
)
Dinero({ amount: Math.round((val[price] || 0) * 100) })
// .multiply(
// val.part_qty || 1
// )
);
return acc;