|
@@ -266,7 +266,7 @@ export default {
|
|
|
{ title: '原厂编码', dataIndex: 'dealerProductEntity.origCode', width: '12%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
{ title: '销售单号', dataIndex: 'salesBillNo', width: '10%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
{ title: '销售审核时间', dataIndex: 'auditDate', width: '10%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
- { title: '急件', dataIndex: 'oosFlagDictValue', width: '5%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
+ { title: '急件', dataIndex: 'oosFlagDictValue', width: '5%', align: 'center', customRender: function (text) { return text == '1' ? text : '' } },
|
|
|
{ title: '原售价', dataIndex: 'price', align: 'right', width: '7%', scopedSlots: { customRender: 'price' } },
|
|
|
{ title: '折后售价', dataIndex: 'discountedPrice', align: 'right', width: '7%', customRender: function (text) { return ((text || text == 0) ? _this.toThousands(text) : '--') } },
|
|
|
// { title: '批发价', dataIndex: 'wholesalePrice', align: 'right', width: '5%', customRender: function (text) { return ((text || text == 0) ? _this.toThousands(text) : '--') } },
|