Commit 1460250a authored by 前端-吴智勇's avatar 前端-吴智勇

Merge branch 'jinfa-0518' into 'jinfa-0518'

fix: 请购单剩余 为0处理 See merge request project/jinfa-platform!329
parents fa1a1167 7a8b33ac
......@@ -334,7 +334,7 @@ const OrderMaterialsDrawer: React.ForwardRefRenderFunction<OrderMaterialsDrawerR
{
title: '请购单剩余',
dataIndex: 'surplusQuantity',
render: (text, record) => text || record.quantity,
render: (text, record) => text === 0 ? 0 : (text || record.quantity),
},
...(isPurchaseOrderContract ? [
{
......
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