Browse Source

修改采购退货数量精度问题

wms3.0_pda
lijuncheng 11 months ago
parent
commit
de7ddaef24
  1. 2
      common/detail.js

2
common/detail.js

@ -59,7 +59,7 @@ export function calcHandleQty(detailSource) {
item.handleQty = 0;
for (let detail of item.subList) {
if (detail != undefined && detail.scaned) {
item.handleQty += Number(detail.handleQty)
item.handleQty = calc.add(item.handleQty,detail.handleQty)
}
}
}

Loading…
Cancel
Save