|
@@ -12,7 +12,7 @@
|
|
</a-col>
|
|
</a-col>
|
|
<a-col :xl="6" :lg="6" :md="12" :sm="24">
|
|
<a-col :xl="6" :lg="6" :md="12" :sm="24">
|
|
<a-form-item label="客户名称">
|
|
<a-form-item label="客户名称">
|
|
- <a-input id="outboundOrderList-demanderName" v-model.trim="queryParam.demanderName" placeholder="请输入单位名称" allowClear />
|
|
|
|
|
|
+ <a-input id="outboundOrderList-demanderName" v-model.trim="queryParam.demanderNameCurrent" placeholder="请输入单位名称" allowClear />
|
|
</a-form-item>
|
|
</a-form-item>
|
|
</a-col>
|
|
</a-col>
|
|
<a-col :xl="4" :lg="6" :md="6" :sm="8">
|
|
<a-col :xl="4" :lg="6" :md="6" :sm="8">
|
|
@@ -150,7 +150,7 @@ export default {
|
|
queryParam: { // 查询条件
|
|
queryParam: { // 查询条件
|
|
beginDate: getDate.getCurrMonthDays().starttime,
|
|
beginDate: getDate.getCurrMonthDays().starttime,
|
|
endDate: getDate.getCurrMonthDays().endtime,
|
|
endDate: getDate.getCurrMonthDays().endtime,
|
|
- demanderName: undefined, // 单位名称
|
|
|
|
|
|
+ demanderNameCurrent: undefined, // 单位名称
|
|
outBizType: undefined, // 出库类型
|
|
outBizType: undefined, // 出库类型
|
|
state: undefined // 状态
|
|
state: undefined // 状态
|
|
},
|
|
},
|
|
@@ -159,7 +159,7 @@ export default {
|
|
{ title: '序号', dataIndex: 'no', width: '4%', align: 'center' },
|
|
{ title: '序号', dataIndex: 'no', width: '4%', align: 'center' },
|
|
{ title: '关联单号', dataIndex: 'outBizNo', width: '10%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
{ title: '关联单号', dataIndex: 'outBizNo', width: '10%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
{ title: '出库类型', dataIndex: 'outBizTypeDictValue', width: '8%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
{ title: '出库类型', dataIndex: 'outBizTypeDictValue', width: '8%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
- { title: '客户名称', dataIndex: 'demanderName', width: '20%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
|
|
|
+ { title: '客户名称', dataIndex: 'demanderNameCurrent', width: '20%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
{ title: '总款数', dataIndex: 'productTotalCategory', width: '6%', align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
|
|
{ title: '总款数', dataIndex: 'productTotalCategory', width: '6%', align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
|
|
{ title: '总数量', dataIndex: 'productTotalQty', width: '6%', align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
|
|
{ title: '总数量', dataIndex: 'productTotalQty', width: '6%', align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
|
|
{ title: '总售价', dataIndex: 'productTotalPrice', width: '6%', align: 'right', customRender: function (text) { return ((text || text == 0) ? _this.toThousands(text) : '--') } },
|
|
{ title: '总售价', dataIndex: 'productTotalPrice', width: '6%', align: 'right', customRender: function (text) { return ((text || text == 0) ? _this.toThousands(text) : '--') } },
|
|
@@ -247,7 +247,7 @@ export default {
|
|
this.$refs.rangeDate.resetDate(flag ? '' : this.time)
|
|
this.$refs.rangeDate.resetDate(flag ? '' : this.time)
|
|
this.queryParam.beginDate = flag ? '' : getDate.getCurrMonthDays().starttime
|
|
this.queryParam.beginDate = flag ? '' : getDate.getCurrMonthDays().starttime
|
|
this.queryParam.endDate = flag ? '' : getDate.getCurrMonthDays().endtime
|
|
this.queryParam.endDate = flag ? '' : getDate.getCurrMonthDays().endtime
|
|
- this.queryParam.demanderName = undefined
|
|
|
|
|
|
+ this.queryParam.demanderNameCurrent = undefined
|
|
this.queryParam.outBizType = undefined
|
|
this.queryParam.outBizType = undefined
|
|
this.queryParam.state = undefined
|
|
this.queryParam.state = undefined
|
|
},
|
|
},
|