账单总金额

This commit is contained in:
liu
2026-09-07 23:07:12 +08:00
parent 7de51391e4
commit 58c733baa2
6 changed files with 54 additions and 2 deletions
+13
View File
@@ -1100,6 +1100,19 @@ const PurchaseOrderPage: React.FC = () => {
<Text type="secondary"></Text>
),
},
{
title: '应付商品金额',
dataIndex: 'bill_product_amount',
hideInForm: true,
hideInSearch: true,
align: 'center',
render: (_, record) =>
record.bill_product_amount != null ? (
<Text strong type="danger">¥{Number(record.bill_product_amount).toFixed(2)}</Text>
) : (
<Text type="secondary"></Text>
),
},
{
title: '总件数',
dataIndex: 'total_quantity',