Commit b68c1dd9 authored by GuanHua's avatar GuanHua

fix: 进货单显示已选商品数量问题

parent 8ccf0cd3
......@@ -417,7 +417,7 @@ const PurchaseOrder: React.FC<PurchaseOrderPropsType> = (props) => {
for (const item of orderList) {
for (const orderItem of item.orderList) {
if (item.checkedList.includes(orderItem.id)) {
count += orderItem.count
count += Number(orderItem.count)
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment