From 32f5e20fb172b498eb0ee160daf0bfa39b996424 Mon Sep 17 00:00:00 2001 From: lijuncheng Date: Sat, 7 Sep 2024 12:30:32 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E9=87=87=E8=B4=AD=E4=B8=8A?= =?UTF-8?q?=E6=9E=B6=E6=89=B9=E9=87=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- password.txt | 4 +- src/mycomponents/button/comCheckAll.vue | 49 +++ src/mycomponents/job/jobFilter.vue | 15 + src/pages/putaway/job/quantityPutawayJob.vue | 385 +++++++----------- src/pages/putaway/record/putawayRecord.vue | 13 +- .../components/u-checkbox/u-checkbox.vue | 5 +- 6 files changed, 228 insertions(+), 243 deletions(-) create mode 100644 src/mycomponents/button/comCheckAll.vue diff --git a/password.txt b/password.txt index b79b823d..e19b4386 100644 --- a/password.txt +++ b/password.txt @@ -1,2 +1,4 @@ 别名:testalias -密码: wms3.0 \ No newline at end of file +密码: wms3.0 +包名:uni.UNI43932FE +id:__UNI__C9CF4BF \ No newline at end of file diff --git a/src/mycomponents/button/comCheckAll.vue b/src/mycomponents/button/comCheckAll.vue new file mode 100644 index 00000000..253a349a --- /dev/null +++ b/src/mycomponents/button/comCheckAll.vue @@ -0,0 +1,49 @@ + + + + + \ No newline at end of file diff --git a/src/mycomponents/job/jobFilter.vue b/src/mycomponents/job/jobFilter.vue index feb2e9bf..33ce9716 100644 --- a/src/mycomponents/job/jobFilter.vue +++ b/src/mycomponents/job/jobFilter.vue @@ -46,6 +46,14 @@ + + + 目标库位 + + + @@ -127,6 +135,10 @@ type: Boolean, default: false }, + isShowToLocationCode: { + type: Boolean, + default: false + }, isShowProductionLineCode: { type: Boolean, default: false @@ -165,6 +177,7 @@ checkedWaitModel: false, productionLineCode: '', // 生产线 fromLocationCode: '', // 来源库位 + toLocationCode:"",//目标库位 fromAreaCode: '', // 来源库区 toAreaCode: '', // 到库区 itemCode: '', //物料代码 @@ -197,6 +210,7 @@ let params = { productionLineCode: this.productionLineCode, fromLocationCode: this.fromLocationCode, + toLocationCode:this.toLocationCode, fromAreaCode: this.fromAreaCode, // 来源库区 toAreaCode: this.toAreaCode, // 到库区 itemCode: this.itemCode, @@ -210,6 +224,7 @@ this.checkedWaitModel = false this.productionLineCode = '' this.fromLocationCode = '' + this.toLocationCode="" this.fromAreaCode = '' // 来源库区 this.toAreaCode = '' // 到库区 this.itemCode = '' diff --git a/src/pages/putaway/job/quantityPutawayJob.vue b/src/pages/putaway/job/quantityPutawayJob.vue index 279ccb2b..2fa4016c 100644 --- a/src/pages/putaway/job/quantityPutawayJob.vue +++ b/src/pages/putaway/job/quantityPutawayJob.vue @@ -1,22 +1,34 @@