|
|
@ -9,11 +9,13 @@ |
|
|
|
<scroll-view scroll-y="true" class="page-main-scroll"> |
|
|
|
<view class="detail-list" v-for="(item, index) in detailSource" :key="item.id"> |
|
|
|
<view class=""> |
|
|
|
<view class="" style="padding: 20rpx; font-size: 35rpx;"> |
|
|
|
<view class="" style="padding: 20rpx; font-size: 32rpx;"> |
|
|
|
<view> 来源库位 : {{item.subList[0].locationCode}} |
|
|
|
</view> |
|
|
|
<view> 来源包装规格 : {{getPackUnitName(packUnit)}} |
|
|
|
<view> 来源包装规格 : |
|
|
|
{{fromPackUnit}}/{{item.subList[0].packQty}}{{getUomInfo(item.subList[0].uom)}} |
|
|
|
</view> |
|
|
|
|
|
|
|
</view> |
|
|
|
|
|
|
|
<record-com-detail-card :dataContent="item" :index="index" |
|
|
@ -30,14 +32,16 @@ |
|
|
|
<view class="uni-flex u-col-center space-between padding_10" |
|
|
|
style="background-color:ghostwhite; width: 100%; "> |
|
|
|
<view class=""> |
|
|
|
<view class="uni-flex uni-row title u-col-center" style="font-size: 30rpx;"> |
|
|
|
<view class="uni-flex uni-row title u-col-center" style="font-size: 28rpx;"> |
|
|
|
<text>目标包装规格 :</text> |
|
|
|
<view class="uni-flex u-col-center uni-row" @click="showPackage"> |
|
|
|
<view class="" style="margin-left: 5rpx;width: 100%;"> |
|
|
|
{{toPackUnit}} |
|
|
|
{{toPackUnitShow}} |
|
|
|
</view> |
|
|
|
<u-select v-model="show" mode="single-column" :list="packageList" |
|
|
|
@confirm="confirmSelect"></u-select> |
|
|
|
@confirm="confirmSelect"> |
|
|
|
|
|
|
|
</u-select> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
|
|
|
@ -53,7 +57,7 @@ |
|
|
|
<win-scan-pack-and-location ref="scanPopup" @getResult='getScanResult' :allowModifyLocation="false"> |
|
|
|
</win-scan-pack-and-location> |
|
|
|
<win-scan-location ref="scanLocationCode" title="来源库位" @getLocation='getLocation' |
|
|
|
:locationTypeList="fromlocationTypeList"></win-scan-location> |
|
|
|
:locationTypeList="fromLocationAreaTypeList"></win-scan-location> |
|
|
|
<comMessage ref="comMessage"></comMessage> |
|
|
|
</view> |
|
|
|
</template> |
|
|
@ -70,7 +74,8 @@ |
|
|
|
import { |
|
|
|
getInventoryStatusDesc, |
|
|
|
getDirectoryItemArray, |
|
|
|
getPackUnitName |
|
|
|
getPackUnitName, |
|
|
|
getUomInfo |
|
|
|
} from '@/common/directory.js'; |
|
|
|
|
|
|
|
import { |
|
|
@ -113,17 +118,18 @@ |
|
|
|
fromLocationCode: "", |
|
|
|
isShowLocation: false, |
|
|
|
fromlocationTypeList: [], |
|
|
|
fromLocationAreaTypeList: [], |
|
|
|
tolocationTypeList: [], |
|
|
|
inInventoryStatus: "", //目标入库库存状态 |
|
|
|
outInventoryStatus: "", //来源出库库存状态 |
|
|
|
businessType: {}, |
|
|
|
dataContent: {}, |
|
|
|
packUnit: "", |
|
|
|
packageList:[], |
|
|
|
fromPackUnit: "", |
|
|
|
packageList: [], |
|
|
|
show: false, |
|
|
|
toPackUnit:"包装规格", |
|
|
|
toPackQty:"", |
|
|
|
itemCode:"" |
|
|
|
toPackUnitShow: "包装规格", |
|
|
|
toPackQty: "", |
|
|
|
itemCode: "" |
|
|
|
}; |
|
|
|
}, |
|
|
|
onLoad(option) { |
|
|
@ -132,13 +138,13 @@ |
|
|
|
if (res.success) { |
|
|
|
this.businessType = res.businessType; |
|
|
|
this.fromlocationTypeList = res.fromlocationTypeList; |
|
|
|
this.fromLocationAreaTypeList = res.fromLocationAreaTypeList |
|
|
|
this.tolocationTypeList = res.tolocationTypeList; |
|
|
|
this.showFromLocationPopup(); |
|
|
|
} else { |
|
|
|
this.showErrorMessage(res.message) |
|
|
|
} |
|
|
|
}); |
|
|
|
// this.getPackUnitByItemCode("LENS") |
|
|
|
}, |
|
|
|
//返回首页 |
|
|
|
onNavigationBarButtonTap(e) { |
|
|
@ -154,61 +160,67 @@ |
|
|
|
mounted() {}, |
|
|
|
|
|
|
|
methods: { |
|
|
|
getUomInfo(uom) { |
|
|
|
let item = getUomInfo(uom); |
|
|
|
if (item == '') { |
|
|
|
return uom; |
|
|
|
} else { |
|
|
|
return item.label |
|
|
|
} |
|
|
|
}, |
|
|
|
scanPopupPack() { |
|
|
|
this.$refs.scanPopupPack.openScanPopup(); |
|
|
|
}, |
|
|
|
showPackage(){ |
|
|
|
getPackUnitByItemCode(this.itemCode).then(res=>{ |
|
|
|
if(res.data != null && res.data.list.length > 0){ |
|
|
|
showPackage() { |
|
|
|
getPackUnitByItemCode(this.itemCode).then(res => { |
|
|
|
if (res.data != null && res.data.list.length > 0) { |
|
|
|
res.data.list.forEach(item => { |
|
|
|
item.value = item.packQty; |
|
|
|
item.label = item.packUnit; |
|
|
|
item.label = item.packUnit + "/" + item.packQty + this |
|
|
|
.getUomInfo(item.uom); |
|
|
|
}) |
|
|
|
this.packageList = res.data.list |
|
|
|
this.show = true; |
|
|
|
}else { |
|
|
|
} else { |
|
|
|
this.showErrorMessage("未查找到包装规格"); |
|
|
|
} |
|
|
|
|
|
|
|
}).catch(error=>{ |
|
|
|
this.showErrorMessage("未查找到包装规格"+error); |
|
|
|
}).catch(error => { |
|
|
|
this.showErrorMessage("未查找到包装规格" + error); |
|
|
|
}) |
|
|
|
|
|
|
|
}, |
|
|
|
confirmSelect(e){ |
|
|
|
this.toPackQty = e[0].value; |
|
|
|
this.toPackUnit = e[0].label; |
|
|
|
}, |
|
|
|
getPackUnitByItemCode(itemCode){ |
|
|
|
getPackUnitByItemCode(itemCode).then(res=>{ |
|
|
|
res.data.list.forEach(item => { |
|
|
|
item.value = item.packQty; |
|
|
|
item.label = item.packUnit; |
|
|
|
}) |
|
|
|
this.packageList = res.data.list |
|
|
|
}) |
|
|
|
confirmSelect(e) { |
|
|
|
if (this.fromPackUnit == e[0].label) { |
|
|
|
this.showErrorMessage("来源包装规格【" + this.fromPackUnit + "】与目标包装规格【" + e[0].label + "】不能相等") |
|
|
|
return |
|
|
|
} |
|
|
|
this.toPackUnitShow = e[0].label |
|
|
|
var toPackUnit = e[0].label.split("/")[0] |
|
|
|
this.toPackUnit =toPackUnit |
|
|
|
this.toPackQty = e[0].value |
|
|
|
}, |
|
|
|
|
|
|
|
getScanResult(result) { |
|
|
|
let balance = result.balance; |
|
|
|
let label = result.label; |
|
|
|
let pack = result.package; |
|
|
|
this.packUnit = pack.packUnit; |
|
|
|
this.fromPackUnit = pack.packUnit; |
|
|
|
var item = this.detailSource.find(res => { |
|
|
|
if (res.itemCode == balance.itemCode) { |
|
|
|
return res |
|
|
|
} |
|
|
|
}) |
|
|
|
if (item == undefined) { |
|
|
|
if(this.itemCode!=""&&this.itemCode!=balance.itemCode){ |
|
|
|
this.showErrorMessage("请扫描物料为【"+this.itemCode+"】的箱码") |
|
|
|
if (this.itemCode != "" && this.itemCode != balance.itemCode) { |
|
|
|
this.showErrorMessage("请扫描物料为【" + this.itemCode + "】的箱码") |
|
|
|
return; |
|
|
|
} |
|
|
|
var itemp = createItemInfo(balance, pack); |
|
|
|
let newDetail = createDetailInfo(balance, pack); // |
|
|
|
itemp.subList.push(newDetail); |
|
|
|
this.detailSource.push(itemp) |
|
|
|
this.itemCode =balance.itemCode; |
|
|
|
this.itemCode = balance.itemCode; |
|
|
|
} else { |
|
|
|
var detail = item.subList.find(r => { |
|
|
|
if (r.packingNumber == balance.packingNumber && |
|
|
@ -245,9 +257,6 @@ |
|
|
|
}); |
|
|
|
}, |
|
|
|
|
|
|
|
updateData() { |
|
|
|
this.calcHandleQty(); |
|
|
|
}, |
|
|
|
removeItem(index, item) { |
|
|
|
this.detailSource.splice(index, 1) |
|
|
|
}, |
|
|
@ -285,34 +294,55 @@ |
|
|
|
this.$refs.scanPopup.getfocus(); |
|
|
|
} |
|
|
|
}, |
|
|
|
|
|
|
|
commit() { |
|
|
|
if (this.detailSource.length > 0 && this.detailSource[0].subList.length > 0) { |
|
|
|
if(this.toPackUnit=="目标包装"){ |
|
|
|
if (this.toPackUnit == "包装规格") { |
|
|
|
this.showErrorMessage("请选择目标包装规格") |
|
|
|
return; |
|
|
|
} |
|
|
|
uni.showLoading({ |
|
|
|
title: "提交中....", |
|
|
|
mask: true |
|
|
|
}); |
|
|
|
|
|
|
|
var params = this.setParams(); |
|
|
|
console.log("提交" + JSON.stringify(params)) |
|
|
|
overPackageRecordSubmit(params).then(res => { |
|
|
|
uni.hideLoading() |
|
|
|
if (res.data) { |
|
|
|
this.showCommitSuccessMessage("提交成功<br>生成翻包记录<br>" + res.data) |
|
|
|
} else { |
|
|
|
this.showErrorMessage("提交失败[" + res.msg + "]") |
|
|
|
} |
|
|
|
}).catch(error => { |
|
|
|
uni.hideLoading() |
|
|
|
this.showErrorMessage(error) |
|
|
|
}) |
|
|
|
this.checkSubmit(); |
|
|
|
|
|
|
|
} else { |
|
|
|
this.showErrorMessage("没有要扫描的数据") |
|
|
|
} |
|
|
|
}, |
|
|
|
|
|
|
|
checkSubmit() { |
|
|
|
var tempHandleQty = this.detailSource[0].subList[0].handleQty |
|
|
|
var toPackQty = this.toPackQty; |
|
|
|
//包装提示 |
|
|
|
if (tempHandleQty % toPackQty > 0) { |
|
|
|
// var count = Math.ceil(tempHandleQty / toPackQty); |
|
|
|
this.$refs.comMessage.showQuestionMessage( "扫描数量【" + tempHandleQty + |
|
|
|
"】,将有1个非整包,是否提交?", res => { |
|
|
|
if (res) { |
|
|
|
this.submitJob() |
|
|
|
} |
|
|
|
}); |
|
|
|
} else { |
|
|
|
this.submitJob() |
|
|
|
} |
|
|
|
}, |
|
|
|
|
|
|
|
submitJob() { |
|
|
|
uni.showLoading({ |
|
|
|
title: "提交中....", |
|
|
|
mask: true |
|
|
|
}); |
|
|
|
|
|
|
|
var params = this.setParams(); |
|
|
|
console.log("提交" + JSON.stringify(params)) |
|
|
|
overPackageRecordSubmit(params).then(res => { |
|
|
|
uni.hideLoading() |
|
|
|
if (res.data) { |
|
|
|
this.showCommitSuccessMessage("提交成功<br>生成翻包记录<br>" + res.data) |
|
|
|
} else { |
|
|
|
this.showErrorMessage("提交失败[" + res.msg + "]") |
|
|
|
} |
|
|
|
}).catch(error => { |
|
|
|
uni.hideLoading() |
|
|
|
this.showErrorMessage(error) |
|
|
|
}) |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
@ -335,8 +365,11 @@ |
|
|
|
subItem.fromPackingNumber = detail.packingNumber; |
|
|
|
subItem.fromBatch = detail.batch; |
|
|
|
subItem.fromLocationCode = detail.locationCode; |
|
|
|
subItem.toPackQty =this.toPackQty; |
|
|
|
subItem.toPackUnit =this.toPackUnit; |
|
|
|
subItem.fromPackUnit = detail.packUnit; |
|
|
|
subItem.fromPackQty = detail.packQty; |
|
|
|
|
|
|
|
subItem.toPackQty = this.toPackQty; |
|
|
|
subItem.toPackUnit = this.toPackUnit; |
|
|
|
subItem.package = "" |
|
|
|
subList.push(subItem) |
|
|
|
} |
|
|
|