Commit 8dbc7226 authored by 神话's avatar 神话
Browse files

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

parent 2df1e020
......@@ -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' }
}
......
Supports Markdown
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