diff --git a/jshERP-web/src/views/bill/dialog/LinkBillList.vue b/jshERP-web/src/views/bill/dialog/LinkBillList.vue index 9f581953..4ab5bf0a 100644 --- a/jshERP-web/src/views/bill/dialog/LinkBillList.vue +++ b/jshERP-web/src/views/bill/dialog/LinkBillList.vue @@ -76,9 +76,14 @@ } } }, - { title: '单据日期', dataIndex: 'operTimeStr',width:145}, + { title: '单据日期', dataIndex: 'operTimeStr',width:135}, { title: '操作员', dataIndex: 'userName',width:70}, { title: '金额合计', dataIndex: 'totalPrice',width:70}, + { title: '含税合计', dataIndex: 'totalTaxLastMoney',width:80, + customRender:function (text,record,index) { + return (record.discountMoney + record.discountLastMoney).toFixed(2); + } + }, { title: '状态', dataIndex: 'status', width: 70, align: "center", scopedSlots: { customRender: 'customRenderStatus' } }