|
@@ -30,7 +30,7 @@ const InvoiceAggregate = () => {
|
|
|
align: 'center'
|
|
align: 'center'
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
- dataIndex: 'creditPrice',
|
|
|
|
|
|
|
+ dataIndex: 'invoicePrice',
|
|
|
title: '开票金额(元)',
|
|
title: '开票金额(元)',
|
|
|
align: 'center',
|
|
align: 'center',
|
|
|
render: text => <div className="text-right">{text}</div>
|
|
render: text => <div className="text-right">{text}</div>
|
|
@@ -42,7 +42,7 @@ const InvoiceAggregate = () => {
|
|
|
render: text => <div className="text-right">{text}</div>
|
|
render: text => <div className="text-right">{text}</div>
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
- dataIndex: 'invoicePrice',
|
|
|
|
|
|
|
+ dataIndex: 'creditPrice',
|
|
|
title: '入账金额(元)',
|
|
title: '入账金额(元)',
|
|
|
align: 'center',
|
|
align: 'center',
|
|
|
render: text => <div className="text-right">{text}</div>
|
|
render: text => <div className="text-right">{text}</div>
|
|
@@ -131,13 +131,13 @@ const InvoiceAggregate = () => {
|
|
|
<Table.Summary.Row>
|
|
<Table.Summary.Row>
|
|
|
<Table.Summary.Cell className="text-center">{state.sum?.name}</Table.Summary.Cell>
|
|
<Table.Summary.Cell className="text-center">{state.sum?.name}</Table.Summary.Cell>
|
|
|
<Table.Summary.Cell className="text-right">
|
|
<Table.Summary.Cell className="text-right">
|
|
|
- {state.sum?.creditPrice}
|
|
|
|
|
|
|
+ {state.sum?.invoicePrice}
|
|
|
</Table.Summary.Cell>
|
|
</Table.Summary.Cell>
|
|
|
<Table.Summary.Cell className="text-right">
|
|
<Table.Summary.Cell className="text-right">
|
|
|
{state.sum?.receivablesPrice}
|
|
{state.sum?.receivablesPrice}
|
|
|
</Table.Summary.Cell>
|
|
</Table.Summary.Cell>
|
|
|
<Table.Summary.Cell className="text-right">
|
|
<Table.Summary.Cell className="text-right">
|
|
|
- {state.sum?.invoicePrice}
|
|
|
|
|
|
|
+ {state.sum?.creditPrice}
|
|
|
</Table.Summary.Cell>
|
|
</Table.Summary.Cell>
|
|
|
</Table.Summary.Row>
|
|
</Table.Summary.Row>
|
|
|
</>
|
|
</>
|