Browse Source

单号搜索

chenrui 2 years ago
parent
commit
32e92fdbda

+ 4 - 2
src/views/allocationManagement/chainTransferIn/list.vue

@@ -12,7 +12,7 @@
             </a-col>
             <a-col :md="6" :sm="24">
               <a-form-item label="连锁调入单号">
-                <a-input id="warehousingAuditList-purchaseBillNo" v-model.trim="queryParam.purchaseBillNo" allowClear placeholder="请输入连锁调入单号"/>
+                <a-input id="chainTransferInList-allocationLinkagePutNo" v-model.trim="queryParam.allocationLinkagePutNo" allowClear placeholder="请输入连锁调入单号"/>
               </a-form-item>
             </a-col>
             <a-col :md="6" :sm="24">
@@ -155,7 +155,8 @@ export default {
       queryParam: { //  查询条件
         beginDate: '',
         endDate: '',
-        outTenantSn: undefined, //  调出对象
+        allocationLinkagePutNo: undefined, // 连锁调入单号
+        outTenantSn: undefined, //  调入对象
         allocationType: undefined, //  调拨产品类型
         state: undefined, //  业务状态
         settleState: undefined
@@ -234,6 +235,7 @@ export default {
       this.$refs.rangeDate.resetDate()
       this.queryParam.beginDate = ''
       this.queryParam.endDate = ''
+      this.queryParam.allocationLinkagePutNo = undefined
       this.queryParam.outTenantSn = undefined
       this.queryParam.allocationType = undefined
       this.queryParam.state = undefined

+ 3 - 1
src/views/allocationManagement/chainTransferOut/list.vue

@@ -23,7 +23,7 @@
             <template v-if="advanced">
               <a-col :md="6" :sm="24">
                 <a-form-item label="连锁调出单号">
-                  <a-input id="warehousingAuditList-purchaseBillNo" v-model.trim="queryParam.purchaseBillNo" allowClear placeholder="请输入连锁调出单号"/>
+                  <a-input id="chainTransferOutList-allocationLinkageOutNo" v-model.trim="queryParam.allocationLinkageOutNo" allowClear placeholder="请输入连锁调出单号"/>
                 </a-form-item>
               </a-col>
               <a-col :md="6" :sm="24">
@@ -189,6 +189,7 @@ export default {
         auditEndDate: '',
         outWarehouseBeginDate: '',
         outWarehouseEndDate: '',
+        allocationLinkageOutNo: undefined, //  连锁调出单号
         putTenantSn: undefined, //  调往对象
         allocationType: undefined, //  调出产品类型
         state: undefined, //  业务状态
@@ -287,6 +288,7 @@ export default {
       this.queryParam.outWarehouseBeginDate = ''
       this.queryParam.outWarehouseEndDate = ''
 
+      this.queryParam.allocationLinkageOutNo = undefined
       this.queryParam.putTenantSn = undefined
       this.queryParam.allocationType = undefined
       this.queryParam.state = undefined

+ 3 - 1
src/views/allocationManagement/storeTransferOut/list.vue

@@ -22,7 +22,7 @@
             </a-col>
             <a-col :md="6" :sm="24">
               <a-form-item label="店内调出单号">
-                <a-input id="warehousingAuditList-purchaseBillNo" v-model.trim="queryParam.purchaseBillNo" allowClear placeholder="请输入店内调出单号"/>
+                <a-input id="storeTransferOutList-storeCallOutNo" v-model.trim="queryParam.storeCallOutNo" allowClear placeholder="请输入店内调出单号"/>
               </a-form-item>
             </a-col>
             <template v-if="advanced">
@@ -190,6 +190,7 @@ export default {
         outWarehouseEndDate: '',
         customerNameCurrent: undefined, //  调往对象
         customerSnCurrent: undefined,
+        storeCallOutNo: undefined, // 店内调出单号
         callOutType: undefined, //  调拨类型
         state: undefined, //  业务状态
         settleState: undefined //  财务状态
@@ -300,6 +301,7 @@ export default {
       this.$refs.custList.resetForm()
       this.queryParam.customerSnCurrent = undefined
       this.queryParam.customerNameCurrent = undefined
+      this.queryParam.storeCallOutNo = undefined
       this.queryParam.callOutType = undefined
       this.queryParam.state = undefined
       this.queryParam.settleState = undefined

+ 4 - 2
src/views/allocationManagement/warehouseAllocation/list.vue

@@ -12,7 +12,7 @@
             </a-col>
             <a-col :md="6" :sm="24">
               <a-form-item label="单号">
-                <a-input id="warehousingAuditList-purchaseBillNo" v-model.trim="queryParam.purchaseBillNo" allowClear placeholder="请输入单号"/>
+                <a-input id="warehousingAuditList-allocationWarehouseNo" v-model.trim="queryParam.allocationWarehouseNo" allowClear placeholder="请输入单号"/>
               </a-form-item>
             </a-col>
             <a-col :md="6" :sm="24">
@@ -153,7 +153,8 @@ export default {
         endDate: getDate.getCurrMonthDays().endtime,
         outWarehouseSn: undefined, //  调出仓库
         putWarehouseSn: undefined, //  调入仓库
-        state: undefined //  审核状态
+        state: undefined, //  审核状态
+        allocationWarehouseNo: undefined// 单号
       },
       disabled: false, //  查询、重置按钮是否可操作
       // 加载数据方法 必须为 Promise 对象
@@ -242,6 +243,7 @@ export default {
       this.queryParam.outWarehouseSn = undefined
       this.queryParam.putWarehouseSn = undefined
       this.queryParam.state = undefined
+      this.queryParam.allocationWarehouseNo = undefined
       if (!flag) {
         this.setIsHomeNav(this.$route.name, null)
       }