This commit is contained in:
2026-03-10 09:33:29 +08:00
parent a491fd75c3
commit f2b8f2f6de
4 changed files with 8 additions and 7 deletions

View File

@@ -145,8 +145,8 @@ const summaryList = computed(() => {
props.billAllObj.forEach(item => {
if (map.has(item.wlNo)) {
const existing = map.get(item.wlNo);
const total = (parseFloat(existing.totalQty) * 100*10000+ parseFloat(item.realQty)* 100*10000)
existing.totalQty = total / ( 100 * 10000);
const total = parseFloat(existing.totalQty) * 1000000+ parseFloat(item.realQty) * 1000000
existing.totalQty = total / ( 1000000);
} else {
map.set(item.wlNo, {
...item,