diff --git a/fe/PDA/mycomponents/coms/comUnPacking.vue b/fe/PDA/mycomponents/coms/comUnPacking.vue
index c1cdc774c..b670b39d2 100644
--- a/fe/PDA/mycomponents/coms/comUnPacking.vue
+++ b/fe/PDA/mycomponents/coms/comUnPacking.vue
@@ -350,7 +350,7 @@
fromLocationErpCode: itemData.recommendFromLocationErpCode,
fromWarehouseCode: itemData.recommendFromWarehouseCode,
fromLot: itemData.recommendLot,
- fromStatus: 1,
+ fromStatus: 2,
toPackingCode: newPackingCode,
toContainerCode: itemData.recommendContainerCode,
@@ -361,12 +361,11 @@
toWarehouseCode: itemData.recommendFromWarehouseCode,
toLot: itemData.recommendLot,
- toStatus: 1,
+ toStatus: 2,
supplierBatch: itemData.recommendSupplierBatch,
arriveDate: itemData.recommendArriveDate,
produceDate: itemData.recommendProduceDate,
expireDate: itemData.recommendExpireDate,
-
onTheWayLocationCode: "",
reason: ""
}
diff --git a/fe/PDA/mycomponents/wincom/winScanByContainer.vue b/fe/PDA/mycomponents/wincom/winScanByContainer.vue
index 6c16104c1..b5c1278ac 100644
--- a/fe/PDA/mycomponents/wincom/winScanByContainer.vue
+++ b/fe/PDA/mycomponents/wincom/winScanByContainer.vue
@@ -70,8 +70,8 @@
getScanResult(result) {
console.log("扫描",result.data.code)
if (result != null) {
- if(result.data.code[0].toUpperCase()!="C"){
- this.showMessage("标签格式不正确")
+ if(result.data.code[0].toUpperCase()!="Q"){
+ this.showMessage("标签格式不正确 : "+result.data.code)
return;
}
// uni.showLoading({
diff --git a/fe/PDA/pages/task/deliverBoard.vue b/fe/PDA/pages/task/deliverBoard.vue
index 9d50a60f1..c0eea9551 100644
--- a/fe/PDA/pages/task/deliverBoard.vue
+++ b/fe/PDA/pages/task/deliverBoard.vue
@@ -1,28 +1,23 @@
-
-
-
-
+
-
+
-
-
+
+
-
+ -->
+
diff --git a/fe/PDA/pages/task/deliverBoard_detail.vue b/fe/PDA/pages/task/deliverBoard_detail.vue
index 69cc66532..d5f7a59f2 100644
--- a/fe/PDA/pages/task/deliverBoard_detail.vue
+++ b/fe/PDA/pages/task/deliverBoard_detail.vue
@@ -1,16 +1,14 @@
-
-
+
-
+
-
@@ -72,63 +70,58 @@
+
-
-
-
+
+
+
-
-
+
+
-
+
diff --git a/fe/PDA/pages/task/issue_detail.vue b/fe/PDA/pages/task/issue_detail.vue
index 986cda610..fc517ba20 100644
--- a/fe/PDA/pages/task/issue_detail.vue
+++ b/fe/PDA/pages/task/issue_detail.vue
@@ -519,9 +519,9 @@
item.handledPackingCode = balanceItem.packingCode;
item.handledBatch = balanceItem.batch;
item.handledLot = balanceItem.lot;
-
- item.defaultHandleQty = balanceItem.qty;
- item.handledQty = balanceItem.qty;
+
+ item.handledQty = balanceItem.qty>item.recommendQty?item.recommendQty:balanceItem.qty;
+ item.defaultHandleQty = item.handledQty;
item.handledFromLocationCode = balanceItem.locationCode;
item.handledFromLocationArea = balanceItem.locationArea;
item.handledFromLocationGroup = balanceItem.locationErpCode;
@@ -747,7 +747,7 @@
this.$refs['comNumberBox_' + index][0].setValue(item.handledQty);
} else if (value > item.defaultHandleQty) {
item.handledQty = item.defaultHandleQty
- this.showMessage('发料数量不能大于库存数量:' + item.handledQty)
+ this.showMessage('发料数量不能大于叫料数量:' + item.handledQty)
this.$refs['comNumberBox_' + index][0].setValue(item.handledQty);
}
},