|
@@ -20,12 +20,12 @@
|
|
|
<rangeDate ref="outWareRangeDate" :value="outWareTime" @change="outWareDateChange" />
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
+ <a-col :md="6" :sm="24">
|
|
|
+ <a-form-item label="店内调出单号">
|
|
|
+ <a-input id="storeTransferOutList-storeCallOutNo" v-model.trim="queryParam.storeCallOutNo" allowClear placeholder="请输入店内调出单号"/>
|
|
|
+ </a-form-item>
|
|
|
+ </a-col>
|
|
|
<template v-if="advanced">
|
|
|
- <a-col :md="6" :sm="24">
|
|
|
- <a-form-item label="店内调出单号">
|
|
|
- <a-input id="storeTransferOutList-storeCallOutNo" v-model.trim="queryParam.storeCallOutNo" allowClear placeholder="请输入店内调出单号"/>
|
|
|
- </a-form-item>
|
|
|
- </a-col>
|
|
|
<a-col :md="6" :sm="24">
|
|
|
<a-form-item label="调往对象名称">
|
|
|
<custList id="storeTransferOutList-putPersonName" ref="custList" @change="custChange"></custList>
|
|
@@ -62,13 +62,8 @@
|
|
|
></v-select>
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
- <a-col :md="6" :sm="24">
|
|
|
- <a-form-model-item label="客户关系">
|
|
|
- <v-select code="CUSTOMER_RELATION_TYPE" id="storeTransferOutList-putPersonRelationType" v-model="queryParam.putPersonRelationType" allowClear placeholder="请选择客户关系"></v-select>
|
|
|
- </a-form-model-item>
|
|
|
- </a-col>
|
|
|
</template>
|
|
|
- <a-col :md="6" :sm="24">
|
|
|
+ <a-col :md="24" :sm="24" style="margin-bottom: 10px;text-align: center;">
|
|
|
<a-button type="primary" @click="$refs.table.refresh(true)" :disabled="disabled" id="storeTransferOutList-refresh">查询</a-button>
|
|
|
<a-button style="margin-left: 8px" @click="resetSearchForm" :disabled="disabled" id="storeTransferOutList-reset">重置</a-button>
|
|
|
<a @click="advanced=!advanced" style="margin-left: 8px">
|
|
@@ -193,7 +188,6 @@ export default {
|
|
|
auditEndDate: '',
|
|
|
outWarehouseBeginDate: '',
|
|
|
outWarehouseEndDate: '',
|
|
|
- putPersonRelationType: undefined, // 客户关系
|
|
|
customerNameCurrent: undefined, // 调往对象
|
|
|
customerSnCurrent: undefined,
|
|
|
storeCallOutNo: undefined, // 店内调出单号
|
|
@@ -236,7 +230,7 @@ export default {
|
|
|
{ title: '创建时间', dataIndex: 'createDate', width: '11%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
{ title: '店内调出单号', scopedSlots: { customRender: 'storeCallOutNo' }, width: '14%', align: 'center' },
|
|
|
{ title: '调往对象名称', width: '16%', align: 'center', customRender: function (text, record) { return (record.putPersonType == 'CUSTOMER' ? record.customerNameCurrent : record.putPersonName) || '--' }, ellipsis: true },
|
|
|
- { title: '客户关系', dataIndex: 'putPersonRelationTypeDictValue', align: 'center', width: '9%', customRender: function (text) { return text || '--' } },
|
|
|
+ { title: '客户关系', dataIndex: 'relationTypeDictValue', align: 'center', width: '9%', customRender: function (text) { return text || '--' } },
|
|
|
{ title: '调拨类型', dataIndex: 'callOutTypeName', width: '7%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
{ title: '总款数', dataIndex: 'productTotalCategory', width: '5%', align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
|
|
|
{ title: '总数量', dataIndex: 'productTotalQty', width: '5%', align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
|
|
@@ -309,7 +303,6 @@ export default {
|
|
|
this.$refs.custList.resetForm()
|
|
|
}
|
|
|
this.queryParam.customerSnCurrent = undefined
|
|
|
- this.queryParam.putPersonRelationType = undefined
|
|
|
this.queryParam.customerNameCurrent = undefined
|
|
|
this.queryParam.storeCallOutNo = undefined
|
|
|
this.queryParam.callOutType = undefined
|