Browse Source

修改库存转移

lijuncheng0816
lijuncheng 4 months ago
parent
commit
66bf11b1ad
  1. 11
      src/pages/inventoryMove/coms/comMoveRecord.vue

11
src/pages/inventoryMove/coms/comMoveRecord.vue

@ -237,9 +237,6 @@
getScanResult(result) {
var balance = result.balance;
var pack = result.package;
if(!balance.packingNumber){
balance.packingNumber=pack.number;
}
var item = this.detailSource.find(res => {
if (res.itemCode == balance.itemCode) {
return res
@ -264,8 +261,8 @@
this.detailSource.push(itemp)
} else {
var detail = item.subList.find(r => {
if (r.packingNumber == balance.packingNumber &&
r.batch == balance.batch &&
if (r.packingNumber == pack.number &&
r.batch == pack.batch &&
r.fromLocationCode == balance.locationCode &&
r.toInventoryStatus == balance.inventoryStatus &&
r.scaned == true) {
@ -285,7 +282,7 @@
newDetail.fromLocationCode = result.fromLocationCode
item.subList.push(newDetail);
} else {
this.showErrorMessage(balance.packingNumber + "重复扫描")
this.showErrorMessage(detail.packingNumber + "重复扫描")
}
}
calcHandleQty(this.detailSource);
@ -362,7 +359,7 @@
if (res.success) {
this.managementList = res.list;
var params = this.setParams()
// console.log("" + JSON.stringify(params))
console.log("提交" + JSON.stringify(params))
inventoryMoveRecordSubmit(params).then(res => {
uni.hideLoading()
if (res.data) {

Loading…
Cancel
Save