diff --git a/pages/entry/check-to-store.vue b/pages/entry/check-to-store.vue
index 91871c3..900d9b5 100644
--- a/pages/entry/check-to-store.vue
+++ b/pages/entry/check-to-store.vue
@@ -9,7 +9,7 @@
载具编码
-
+
@@ -174,6 +174,9 @@
toEmpty () {
this.currentData = {}
this.vehicleCode = ''
+ this.sWeight = null
+ this.pcsn = null
+ this.qty = null
this.storCode = null
this.disabled = false
},
diff --git a/pages/outbound/stock-list.vue b/pages/outbound/stock-list.vue
index 12cb2b5..2c2c6d4 100644
--- a/pages/outbound/stock-list.vue
+++ b/pages/outbound/stock-list.vue
@@ -20,6 +20,14 @@
+
+
+ 载具编码
+
+
+
+
+
仓位编码
@@ -36,14 +44,6 @@
-
-
- 载具编码
-
-
-
-
-
diff --git a/pages/pick/pick-task.vue b/pages/pick/pick-task.vue
index 0d1d92a..f52786c 100644
--- a/pages/pick/pick-task.vue
+++ b/pages/pick/pick-task.vue
@@ -62,6 +62,7 @@
@@ -90,6 +91,7 @@
@@ -97,7 +99,7 @@
-
+
@@ -155,6 +157,24 @@
handleChange (e) {
this._queryPick(e)
},
+ handleChange2 (e) {
+ if (this.val3 && e === this.val3) {
+ uni.showToast({
+ title: '出库和入库料箱不能相同',
+ icon: 'none'
+ })
+ this.val3 = ''
+ }
+ },
+ handleChange3 (e) {
+ if (this.val2 && e === this.val2) {
+ uni.showToast({
+ title: '出库和入库料箱不能相同',
+ icon: 'none'
+ })
+ this.val2 = ''
+ }
+ },
async _queryPick (e) {
let res = await queryPick('Picking', e)
this.data = res
@@ -179,6 +199,13 @@
if (!this.val1|| !this.val2 || !this.val3) {
return
}
+ if (this.val2 === this.val3) {
+ uni.showToast({
+ title: '出库和入库料箱不能相同',
+ icon: 'none'
+ })
+ return
+ }
this.show = true
},
toConfirm () {