Browse Source

YT-1124 直接物料隔离,校验物料是否在业务类型里

intex_online20241205
lijuncheng 5 months ago
parent
commit
b55f37367b
  1. 7
      src/common/directory.js
  2. 76
      src/pages/inventoryMove/coms/comMoveRecord.vue
  3. 2
      src/pages/inventoryMove/coms/okToHoldRecordPack.vue

7
src/common/directory.js

@ -304,6 +304,13 @@ export function getLocationAreaTypeName(value) {
return location == '' ? value : location.label; return location == '' ? value : location.label;
} }
//获取物品类型名称
export function getItemTypeName(value) {
let location = getItemTypeInfo(value);
return location == '' ? value : location.label;
}
//获取库位类型名称 //获取库位类型名称
export function getLocationTypeName(value) { export function getLocationTypeName(value) {

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

@ -11,8 +11,7 @@
<view class=""> <view class="">
<com-move-record-card :dataContent="item" :index="index" @removeData="removeData" <com-move-record-card :dataContent="item" :index="index" @removeData="removeData"
:isShowStatus="isShowStatus" @updateData="updateData" @removePack='removePack' :isShowStatus="isShowStatus" @updateData="updateData" @removePack='removePack'
:allowEditQty="true" :allowEditQty="true" :allowEditStatus="allowEditStatus">
:allowEditStatus="allowEditStatus" >
</com-move-record-card> </com-move-record-card>
</view> </view>
</view> </view>
@ -35,7 +34,10 @@
<win-scan-button @goScan='showPopup'></win-scan-button> <win-scan-button @goScan='showPopup'></win-scan-button>
</view> </view>
<!-- 合格转隔离单独的弹窗--> <!-- 合格转隔离单独的弹窗-->
<okToHoldRecordPack ref="okToHoldRecordPackRef" :showOnePop='showOnePop' @showFromLocationPopup='showFromLocationPopup' @itemCodeClick='openScanPopup' @confirm='okToHoldRecordPackConfirm' @getInputMsgResult="getInputMsgResult" @itemCodeScanMsg='itemCodeScanMsg' ></okToHoldRecordPack> <okToHoldRecordPack ref="okToHoldRecordPackRef" :showOnePop='showOnePop'
@showFromLocationPopup='showFromLocationPopup' @itemCodeClick='openScanPopup'
@confirm='okToHoldRecordPackConfirm' @getInputMsgResult="getInputMsgResult"
@itemCodeScanMsg='itemCodeScanMsg'></okToHoldRecordPack>
<win-scan-pack-and-location ref="scanPopup" @getResult='getScanResult' :title="'箱码'"> <win-scan-pack-and-location ref="scanPopup" @getResult='getScanResult' :title="'箱码'">
</win-scan-pack-and-location> </win-scan-pack-and-location>
<win-scan-location ref="scanFromLocationCode" title="来源库位" @getLocation='getFromLocation' <win-scan-location ref="scanFromLocationCode" title="来源库位" @getLocation='getFromLocation'
@ -60,10 +62,14 @@
import { import {
inventoryMoveRecordSubmit, inventoryMoveRecordSubmit,
getBasicLocationByCode, getBasicLocationByCode,
getBasicItemByCode
} from '@/api/request2.js'; } from '@/api/request2.js';
import { import {
getDirectoryItemArray getDirectoryItemArray,
getItemTypeName,
checkDirectoryItemExist,
getListItemTypeDesc
} from '@/common/directory.js'; } from '@/common/directory.js';
import { import {
@ -72,7 +78,7 @@
import { import {
getPackingNumberAndBatchByList, getPackingNumberAndBatchByList,
deepCopyData deepCopyData,
} from '@/common/basic.js'; } from '@/common/basic.js';
import { import {
@ -148,6 +154,7 @@
dataContent: {}, dataContent: {},
fromLocationAreaTypeList: [], fromLocationAreaTypeList: [],
toLocationAreaTypeList: [], toLocationAreaTypeList: [],
itemCodeTypeList: [],
isShowEditLocation: false, isShowEditLocation: false,
isJustReplay: true, // isJustReplay: true, //
} }
@ -157,6 +164,7 @@
getBusinessType(this.businessTypeCode, res => { getBusinessType(this.businessTypeCode, res => {
if (res.success) { if (res.success) {
this.businessType = res.businessType; this.businessType = res.businessType;
this.itemCodeTypeList = res.itemCodeTypeList;
this.fromLocationAreaTypeList = res.fromLocationAreaTypeList; this.fromLocationAreaTypeList = res.fromLocationAreaTypeList;
this.toLocationAreaTypeList = res.toLocationAreaTypeList; this.toLocationAreaTypeList = res.toLocationAreaTypeList;
this.showPopup() this.showPopup()
@ -311,6 +319,11 @@
this.$refs.comMessage.showErrorMessage('请输入数量'); this.$refs.comMessage.showErrorMessage('请输入数量');
return; return;
} }
this.checkItemCode(obj.itemCode, callBack => {
if (callBack) {
if (checkDirectoryItemExist(this.itemCodeTypeList, callBack)) {
this.getResult = this.getResult ? this.getResult : { this.getResult = this.getResult ? this.getResult : {
label: {}, label: {},
fromLocationCode: '' fromLocationCode: ''
@ -321,7 +334,44 @@
this.getResult.label.qty = obj.handleQty this.getResult.label.qty = obj.handleQty
this.isJustReplay = false this.isJustReplay = false
this.$refs.scanPopup.getScanResult(this.getResult, this.businessType) this.$refs.scanPopup.getScanResult(this.getResult, this.businessType)
} else {
var hint = getListItemTypeDesc(this.itemCodeTypeList);
this.showErrorMessage("扫描物料[" + obj.itemCode + "]是[" +
getItemTypeName(callBack) + "],需要的物料类型是[" + hint + "]")
}
} else {
this.showErrorMessage('未查找到物料【' + obj.itemCode + '】');
}
})
}, },
//checkItemCode
checkItemCode(itemCode, callBack) {
getBasicItemByCode(itemCode).then(res => {
if (res.data.list.length > 0) {
var itemType = res.data.list[0].type
callBack(itemType)
} else {
callBack(null)
}
}).catch(error => {
callBack(null)
})
},
isInItemCodeTypeList(itemType) {
var item = this.itemCodeTypeList.find(res => res == itemType)
if (item = undefined) {
return false
}
return true
},
getScanResultAfter(result) { getScanResultAfter(result) {
var balance = result.balance; var balance = result.balance;
var pack = result.package; var pack = result.package;
@ -398,7 +448,8 @@
} }
// //
if (result.label.qty > balance.qty) { if (result.label.qty > balance.qty) {
this.$refs.comMessage.showConfirmWarningModal("物料号[" + result.label.itemCode + "]数量[" + result.label.qty + "]不可以大于库存余额数量[" + balance.qty + "]") this.$refs.comMessage.showConfirmWarningModal("物料号[" + result.label.itemCode + "]数量[" + result.label
.qty + "]不可以大于库存余额数量[" + balance.qty + "]")
return return
} }
if (item == undefined) { if (item == undefined) {
@ -478,7 +529,8 @@
"已经存在") "已经存在")
} else if (managementTypeParams == 'BY_BATCH') { } else if (managementTypeParams == 'BY_BATCH') {
this.showErrorMessage( this.showErrorMessage(
"物料号[" + item.itemCode + "]\n" + "批次[" + detail.batch + "]\n" + "库位[" + detail.fromLocationCode + "]\n" + "物料号[" + item.itemCode + "]\n" + "批次[" + detail.batch + "]\n" + "库位[" + detail
.fromLocationCode + "]\n" +
"已经存在") "已经存在")
} }
} }
@ -487,7 +539,12 @@
}, },
getInputMsgResult(result, fromWitch) { getInputMsgResult(result, fromWitch) {
if (fromWitch == 'fromLocationScanMsg') { if (fromWitch == 'fromLocationScanMsg') {
this.isClearFromLocationCode = false this.$refs.scanFromLocationCode.getScanResult(result) }else if(fromWitch == 'itemCodeScanMsg'){ result.fromLocationCode = this.fromLocationCode this.$refs.scanPopup.getScanResult(result) } this.isClearFromLocationCode = false
this.$refs.scanFromLocationCode.getScanResult(result)
} else if (fromWitch == 'itemCodeScanMsg') {
result.fromLocationCode = this.fromLocationCode
this.$refs.scanPopup.getScanResult(result)
}
}, },
// //
clearFromLocation(fromLocationCodeParams) { clearFromLocation(fromLocationCodeParams) {
@ -614,7 +671,8 @@
console.log("提交", params) console.log("提交", params)
let obj = params.subList.find(item => item.balanceQty < item.handleQty) let obj = params.subList.find(item => item.balanceQty < item.handleQty)
if (obj) { if (obj) {
this.$refs.comMessage.showConfirmWarningModal('物料号[' +obj.itemCode + ']批次[' +obj.batch + ']数量[' + obj.handleQty + ']不允许大于库存数量[' +obj.balanceQty + ']') this.$refs.comMessage.showConfirmWarningModal('物料号[' + obj.itemCode + ']批次[' + obj.batch + ']数量[' + obj
.handleQty + ']不允许大于库存数量[' + obj.balanceQty + ']')
uni.hideLoading() uni.hideLoading()
return return
} }

2
src/pages/inventoryMove/coms/okToHoldRecordPack.vue

@ -38,7 +38,7 @@
<view class="item"> <view class="item">
<view class="label">数量</view> <view class="label">数量</view>
<view class="value1"> <view class="value1">
<u-number-box v-model="handleQty" @change="valChange"></u-number-box> <u-number-box v-model="handleQty" ></u-number-box>
<view class="uom">EA</view> <view class="uom">EA</view>
</view> </view>
</view> </view>

Loading…
Cancel
Save