Commit 9477bbea authored by 卢均锐's avatar 卢均锐

feat: 业务请款&业务请款协同补充发票信息

parent f42c557a
...@@ -65,7 +65,7 @@ const SearchDetail = () => { ...@@ -65,7 +65,7 @@ const SearchDetail = () => {
{ label: '支付方式', extra: data.moneyPayWayName, type: 'text' }, { label: '支付方式', extra: data.moneyPayWayName, type: 'text' },
{ label: '请款备注', extra: data.remark, type: 'text' }, { label: '请款备注', extra: data.remark, type: 'text' },
{ label: '对账单号', extra: data?.reconciliationNo ? <Link to={`/memberCenter/balance/businessReconciliation/search/preview?id=${data.reconciliationId}&no=${data.reconciliationNo}`}>{data.reconciliationNo}</Link> : '-', type: 'text' }, { label: '对账单号', extra: data?.reconciliationNo ? <Link to={`/memberCenter/balance/businessReconciliation/search/preview?id=${data.reconciliationId}&no=${data.reconciliationNo}`}>{data.reconciliationNo}</Link> : '-', type: 'text' },
{ label: '发票号码', extra: '40122826 (2020-08-25)', type: 'text' }, { label: '发票号码', extra: data?.invoiceMessages ? <>{data?.invoiceMessages?.numbers.map((item) => <div>{item.invoiceNumber}({item.invoiceDate})</div>)}</> : '-', type: 'text' },
{ label: '状态', extra: <StatusTag type='primary' title={data.statusName} />, type: 'text' }, { label: '状态', extra: <StatusTag type='primary' title={data.statusName} />, type: 'text' },
{ label: '单据时间', extra: data.createTime, type: 'text' }, { label: '单据时间', extra: data.createTime, type: 'text' },
] ]
......
...@@ -65,7 +65,7 @@ const SearchDetail = () => { ...@@ -65,7 +65,7 @@ const SearchDetail = () => {
{ label: '支付方式', extra: data.moneyPayWayName, type: 'text' }, { label: '支付方式', extra: data.moneyPayWayName, type: 'text' },
{ label: '请款备注', extra: data.remark, type: 'text' }, { label: '请款备注', extra: data.remark, type: 'text' },
{ label: '对账单号', extra: data?.reconciliationNo ? <Link to={`/memberCenter/balance/businessReconciliation/search/preview?id=${data.reconciliationId}&no=${data.reconciliationNo}`}>{data.reconciliationNo}</Link> : '-', type: 'text' }, { label: '对账单号', extra: data?.reconciliationNo ? <Link to={`/memberCenter/balance/businessReconciliation/search/preview?id=${data.reconciliationId}&no=${data.reconciliationNo}`}>{data.reconciliationNo}</Link> : '-', type: 'text' },
{ label: '发票号码', extra: '40122826 (2020-08-25)', type: 'text' }, { label: '发票号码', extra: data?.invoiceMessages ? <>{data?.invoiceMessages?.numbers.map((item) => <div>{item.invoiceNumber}({item.invoiceDate})</div>)}</> : '-', type: 'text' },
{ label: '状态', extra: <StatusTag type='primary' title={data.statusName} />, type: 'text' }, { label: '状态', extra: <StatusTag type='primary' title={data.statusName} />, type: 'text' },
{ label: '单据时间', extra: data.createTime, type: 'text' }, { label: '单据时间', extra: data.createTime, type: 'text' },
] ]
......
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