Browse Source

储位内移库,储位调拨

dev_pda
李俊城 2 years ago
parent
commit
3aa416edd9
  1. 8
      fe/PDA/pages/inventory/comTransfer.vue
  2. 2
      fe/PDA/pages/inventory/transferByLocation.vue
  3. 2
      fe/PDA/pages/inventory/transferDiffLocation.vue

8
fe/PDA/pages/inventory/comTransfer.vue

@ -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

2
fe/PDA/pages/inventory/transferByLocation.vue

@ -2,7 +2,7 @@
<page-meta root-font-size="16px"></page-meta>
<view class="">
<!-- 区域内调拨(储位内移库) -->
<com-transfer transferType='3101'></com-transfer>
<com-transfer transferType='Transfer_Inside'></com-transfer>
</view>
</template>

2
fe/PDA/pages/inventory/transferDiffLocation.vue

@ -2,7 +2,7 @@
<page-meta root-font-size="16px"></page-meta>
<view class="">
<!-- 区域间调拨(储位调拨) -->
<comTransfer transferType = '3102'></comTransfer>
<comTransfer transferType = 'Transfer_Area'></comTransfer>
</view>
</template>

Loading…
Cancel
Save