|
|
@ -98,7 +98,7 @@ |
|
|
|
}, |
|
|
|
transferType: { |
|
|
|
type: String, |
|
|
|
value: '3101' //3101:储位内 3102:储位间 |
|
|
|
value: 'Transfer_Inside' //Transfer_Inside:储位内 Transfer_Area:储位间 |
|
|
|
} |
|
|
|
}, |
|
|
|
|
|
|
@ -196,7 +196,7 @@ |
|
|
|
this.locationErpCode = balanceItem.locationErpCode; |
|
|
|
this.itemList.unshift(item); |
|
|
|
} else { |
|
|
|
if (this.transferType == '3101') //储位内移库 |
|
|
|
if (this.transferType == 'Transfer_Inside') //储位内移库 |
|
|
|
{ |
|
|
|
if (this.locationErpCode != balanceItem.locationErpCode) { |
|
|
|
this.showMessage('箱码【' + balanceItem.packingCode + '】的ERP储位【' + balanceItem.locationErpCode + |
|
|
@ -206,7 +206,7 @@ |
|
|
|
} else { |
|
|
|
this.itemList.unshift(item); |
|
|
|
} |
|
|
|
} else if (this.transferType == '3102') //储位调拨 |
|
|
|
} else if (this.transferType == 'Transfer_Area') //储位调拨 |
|
|
|
{ |
|
|
|
this.itemList.unshift(item); |
|
|
|
} |
|
|
@ -284,7 +284,7 @@ |
|
|
|
this.$refs.location.clearLocation() |
|
|
|
this.locationGotFocus = true; |
|
|
|
} else { |
|
|
|
if (that.transferType == '3101') //储位内调拨 |
|
|
|
if (that.transferType == 'Transfer_Inside') //储位内调拨 |
|
|
|
{ |
|
|
|
if (that.locationErpCode != res.erpLocationCode) { |
|
|
|
that.showMessage('目标库位的ERP储位【' + res.erpLocationCode + '】与【' + this |
|
|
|