提交
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user