Przeglądaj źródła

fix: 修改应收款发票号字段

outaozhen 4 lat temu
rodzic
commit
71cfcebb3c

+ 3 - 3
src/pages/Statistic/Product/InvoiceReceivables/index.jsx

@@ -156,11 +156,11 @@ const InvoiceReceivables = () => {
       )
     },
     {
-      dataIndex: 'irid',
+      dataIndex: 'invoiceNo',
       title: '发票号',
       align: 'center',
-      render: (irid, record) => (
-        <>{!record.isRed ? <span>{irid}</span> : <span className="text-red-500">{irid}</span>}</>
+      render: (invoiceNo, record) => (
+        <>{!record.isRed ? <span>{invoiceNo}</span> : <span className="text-red-500">{invoiceNo}</span>}</>
       )
     },
     {