给关联单据选择列表中增加含税金额的列

This commit is contained in:
神话 2022-04-28 20:24:53 +08:00
parent 2df1e02080
commit 8dbc722674

View File

@ -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' }
}