diff --git a/mycomponents/scan/winScanPackAndLocation.vue b/mycomponents/scan/winScanPackAndLocation.vue
index 99eb53af..e64f960a 100644
--- a/mycomponents/scan/winScanPackAndLocation.vue
+++ b/mycomponents/scan/winScanPackAndLocation.vue
@@ -21,7 +21,7 @@
来源库位
-
+
@@ -41,7 +41,7 @@
+ :isShowHistory="isShowHistory" :clearResult="true" :headerType="headerType">
@@ -264,14 +264,17 @@
})
} else if (datas.length == 1) {
let balance = datas[0];
- if (balance.qty > 0) {
- this.packCallBack(balance);
- } else {
- this.showErrorMessage(this.getQueryCondition() + '
查找到库存记录数量为[' + balance.qty + "],
不可以进行操作",
- res => {
- this.packGetFocus();
- })
- }
+ this.packCallBack(balance);
+
+ //因为盘点时有负库存,暂时去掉判断 2023年12月28日
+ // if (balance.qty > 0) {
+ // this.packCallBack(balance);
+ // } else {
+ // this.showErrorMessage(this.getQueryCondition() + '
查找到库存记录数量为[' + balance.qty + "],
不可以进行操作",
+ // res => {
+ // this.packGetFocus();
+ // })
+ // }
} else {
this.showBalanceSelect(datas);
}