|
@@ -35,13 +35,13 @@
|
|
|
</a-form-model-item>
|
|
|
</a-col>
|
|
|
<a-col :md="6" :sm="24">
|
|
|
- <a-form-item label="急件类型">
|
|
|
+ <a-form-item label="单据来源">
|
|
|
<v-select
|
|
|
- v-model="queryParam.bizType"
|
|
|
- ref="status"
|
|
|
- id="urgentItemsOffsetReport-biztype"
|
|
|
- code="URGENT_BIZ_TYPE"
|
|
|
- placeholder="急件类型"
|
|
|
+ v-model="queryParam.sourceType"
|
|
|
+ ref="sourceType"
|
|
|
+ id="urgentItemsOffsetReport-sourceType"
|
|
|
+ code="SALES_SOURCE"
|
|
|
+ placeholder="请选择单据来源"
|
|
|
allowClear></v-select>
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
@@ -134,7 +134,7 @@ export default {
|
|
|
buyerName: '',
|
|
|
bizBillNo: '',
|
|
|
urgentBillNo: '',
|
|
|
- bizType: undefined,
|
|
|
+ sourceType: undefined,
|
|
|
productType: undefined,
|
|
|
productBrandSn: undefined, // 产品品牌
|
|
|
productTypeSn1: '', // 产品一级分类
|
|
@@ -180,8 +180,8 @@ export default {
|
|
|
const arr = [
|
|
|
{ title: '序号', dataIndex: 'no', width: '4%', align: 'center' },
|
|
|
{ title: '急件单号', dataIndex: 'urgentBillNo', width: '10%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
- { title: '急件类型', dataIndex: 'bizTypeDictValue', width: '8%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
{ title: '销售单号', dataIndex: 'bizBillNo', width: '10%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
+ { title: '单据来源', dataIndex: 'sourceTypeDictValue', width: '8%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
{ title: '客户名称', dataIndex: 'buyerName', width: '15%', align: 'center', customRender: function (text) { return text || '--' }, ellipsis: true },
|
|
|
{ title: '产品编码', dataIndex: 'dealerProductEntity.code', width: '12%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
{ title: '产品名称', dataIndex: 'dealerProductEntity.name', width: '13%', align: 'left', customRender: function (text) { return text || '--' }, ellipsis: true },
|
|
@@ -232,7 +232,7 @@ export default {
|
|
|
this.queryParam.bizBillNo = ''
|
|
|
this.queryParam.buyerName = ''
|
|
|
this.queryParam.urgentBillNo = ''
|
|
|
- this.queryParam.bizType = undefined
|
|
|
+ this.queryParam.sourceType = undefined
|
|
|
this.queryParam.productBrandSn = undefined
|
|
|
this.queryParam.productTypeSn1 = ''
|
|
|
this.queryParam.productTypeSn2 = ''
|