|
@@ -20,8 +20,13 @@
|
|
</a-form-model-item>
|
|
</a-form-model-item>
|
|
</a-col>
|
|
</a-col>
|
|
<a-col :md="6" :sm="24">
|
|
<a-col :md="6" :sm="24">
|
|
- <a-form-model-item label="单号">
|
|
|
|
- <a-input id="srebateReport-bizNo" v-model.trim="queryParam.bizNo" allowClear placeholder="请输入单号"/>
|
|
|
|
|
|
+ <a-form-model-item label="订单号">
|
|
|
|
+ <a-input id="srebateReport-bizNo" v-model.trim="queryParam.bizNo" allowClear placeholder="请输入订单号"/>
|
|
|
|
+ </a-form-model-item>
|
|
|
|
+ </a-col>
|
|
|
|
+ <a-col :md="6" :sm="24">
|
|
|
|
+ <a-form-model-item label="备货单号">
|
|
|
|
+ <a-input id="srebateReport-bizSubNo" v-model.trim="queryParam.bizSubNo" allowClear placeholder="请输入备货单号"/>
|
|
</a-form-model-item>
|
|
</a-form-model-item>
|
|
</a-col>
|
|
</a-col>
|
|
<a-col :md="6" :sm="24">
|
|
<a-col :md="6" :sm="24">
|
|
@@ -132,6 +137,7 @@ export default {
|
|
endDate: '',
|
|
endDate: '',
|
|
buyerSn: undefined, // 客户sn
|
|
buyerSn: undefined, // 客户sn
|
|
bizNo: '', // 单号
|
|
bizNo: '', // 单号
|
|
|
|
+ bizSubNo: '',
|
|
bizType: undefined,
|
|
bizType: undefined,
|
|
directDealerSn: undefined, // 直接经销商SN
|
|
directDealerSn: undefined, // 直接经销商SN
|
|
indirectDealerSn: undefined // 间接经销商SN
|
|
indirectDealerSn: undefined // 间接经销商SN
|
|
@@ -187,8 +193,9 @@ export default {
|
|
const arr = [
|
|
const arr = [
|
|
{ title: '序号', dataIndex: 'no', width: '4%', align: 'center' },
|
|
{ title: '序号', dataIndex: 'no', width: '4%', align: 'center' },
|
|
{ title: '订单号', dataIndex: 'bizNo', width: '8%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
{ title: '订单号', dataIndex: 'bizNo', width: '8%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
- { title: '类型', dataIndex: 'bizTypeDictValue', width: '8%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
|
- { title: '客户级别', dataIndex: 'buyerLevelDictValue', width: '12%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
|
|
|
+ { title: '备货单号', dataIndex: 'bizSubNo', width: '8%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
|
+ { title: '类型', dataIndex: 'bizTypeDictValue', width: '7%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
|
+ { title: '客户级别', dataIndex: 'buyerLevelDictValue', width: '7%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
{ title: '客户名称', dataIndex: 'buyerName', width: '12%', align: 'left', customRender: function (text) { return text || '--' }, ellipsis: true },
|
|
{ title: '客户名称', dataIndex: 'buyerName', width: '12%', align: 'left', customRender: function (text) { return text || '--' }, ellipsis: true },
|
|
{ title: '总开单金额', dataIndex: 'totalAmount', width: '8%', align: 'right', customRender: function (text) { return ((text || text == 0) ? _this.toThousands(text) : '--') } },
|
|
{ title: '总开单金额', dataIndex: 'totalAmount', width: '8%', align: 'right', customRender: function (text) { return ((text || text == 0) ? _this.toThousands(text) : '--') } },
|
|
{ title: '直接差价金额', dataIndex: 'directRebate', width: '8%', align: 'right', customRender: function (text) { return ((text || text == 0) ? _this.toThousands(text) : '--') } },
|
|
{ title: '直接差价金额', dataIndex: 'directRebate', width: '8%', align: 'right', customRender: function (text) { return ((text || text == 0) ? _this.toThousands(text) : '--') } },
|
|
@@ -265,6 +272,7 @@ export default {
|
|
this.queryParam.beginDate = ''
|
|
this.queryParam.beginDate = ''
|
|
this.queryParam.endDate = ''
|
|
this.queryParam.endDate = ''
|
|
this.queryParam.bizNo = ''
|
|
this.queryParam.bizNo = ''
|
|
|
|
+ this.queryParam.bizSubNo = ''
|
|
this.queryParam.bizType = undefined
|
|
this.queryParam.bizType = undefined
|
|
this.queryParam.buyerSn = undefined
|
|
this.queryParam.buyerSn = undefined
|
|
this.queryParam.indirectDealerSn = undefined
|
|
this.queryParam.indirectDealerSn = undefined
|