You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
482 lines
12 KiB
482 lines
12 KiB
<template>
|
|
<view class="page-wraper">
|
|
<view class="page-header">
|
|
<view class="header_job_top">
|
|
<job-top :dataContent="jobContent"></job-top>
|
|
</view>
|
|
<view class="header_item">
|
|
申请单号 : {{jobContent.requestNumber}}
|
|
</view>
|
|
<u-line color="#D8D8D8"></u-line>
|
|
</view>
|
|
|
|
<view class="page-main">
|
|
<scroll-view scroll-y="true" class="">
|
|
<view v-for="(toLocation, index) in detailSource">
|
|
<com-repleish-detail-card ref='comIssueDetailCard' :dataContent="toLocation"
|
|
@updateData='updateData'>
|
|
</com-repleish-detail-card>
|
|
</view>
|
|
</scroll-view>
|
|
</view>
|
|
|
|
<view class="page-footer">
|
|
<view class="uni-flex u-col-center space-between padding_10"
|
|
style="background-color:ghostwhite; width: 100%; ">
|
|
<view class="">
|
|
<requiredLocation ref='comScanLocation' title="目标库位" :locationCode="toLocationCode"
|
|
@getLocation='scanLocationCode' :isShowEdit="jobContent.allowModifyLocation == 'TRUE'"
|
|
:locationTypeList="tolocationTypeList"></requiredLocation>
|
|
</view>
|
|
<view class=" uni-flex uni-row">
|
|
<button class="btn_single_commit" hover-class="btn_commit_after" @click="submit">提交</button>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<win-scan-button @goScan='openScanDetailPopup'></win-scan-button>
|
|
<com-scan-replish-pack ref="comScanIssuePack" @closeScan='closeScan' @updateData='updateData'>
|
|
</com-scan-replish-pack>
|
|
<comMessage ref="comMessage"></comMessage>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import {
|
|
takeRepleinshJob,
|
|
cancleTakeRepleinshJob,
|
|
getRepleinshJobDetail,
|
|
repleinshJobSubmit
|
|
} from '@/api/request2.js';
|
|
|
|
import {
|
|
goHome,
|
|
updateTitle,
|
|
navigateBack,
|
|
getRemoveOption,
|
|
getCurrDateTime,
|
|
getDirectoryItemArray,
|
|
getPackingNumberAndBatch,
|
|
} from '@/common/basic.js';
|
|
|
|
import {
|
|
getDataSource
|
|
} from '@/pages/issue/js/issue.js';
|
|
|
|
import {
|
|
calc
|
|
} from '@/common/calc.js';
|
|
|
|
import {
|
|
getManagementPrecisions
|
|
} from '@/common/balance.js';
|
|
|
|
import requiredLocation from '@/mycomponents/location/requiredLocation.vue'
|
|
import jobDetailPopup from '@/mycomponents/job/jobDetailPopup.vue'
|
|
import winScanButton from '@/mycomponents/scan/winScanButton.vue'
|
|
import comRepleishDetailCard from '@/pages/repleinsh/coms/comRepleishDetailCard.vue'
|
|
import comScanReplishPack from '@/pages/repleinsh/coms/comScanReplishPack.vue'
|
|
import comMessage from '@/mycomponents/common/comMessage.vue'
|
|
import jobTop from '@/mycomponents/job/jobTop.vue'
|
|
|
|
export default {
|
|
name: 'issueDetail',
|
|
components: {
|
|
jobDetailPopup,
|
|
winScanButton,
|
|
comRepleishDetailCard,
|
|
comScanReplishPack,
|
|
comMessage,
|
|
requiredLocation,
|
|
jobTop
|
|
},
|
|
data() {
|
|
return {
|
|
id: '',
|
|
jobContent: {}, //任务内容
|
|
subList: [], //接口返回的任务subList
|
|
detailSource: [], //绑定在页面上的数据源
|
|
detailOptions: [],
|
|
scanOptions: [],
|
|
toLocationCode: '',
|
|
tolocationTypeList: [],
|
|
received:false,
|
|
};
|
|
},
|
|
|
|
props: {
|
|
|
|
},
|
|
|
|
onLoad(option) {
|
|
this.id = option.id;
|
|
if (this.id != undefined) {
|
|
//新建的任务自动接收
|
|
if (option.status == "1") {
|
|
this.receive((callback => {
|
|
this.received = true;
|
|
this.getDetail();
|
|
}));
|
|
} else {
|
|
this.getDetail();
|
|
}
|
|
}
|
|
},
|
|
|
|
onNavigationBarButtonTap(e) {
|
|
if (e.index === 0) {
|
|
goHome();
|
|
}
|
|
},
|
|
|
|
//拦截返回按钮事件
|
|
onBackPress(e) {
|
|
//已经接收但是没提交任务
|
|
if (e.from === 'backbutton') {
|
|
if (this.received) {
|
|
//取消承接任务
|
|
cancleTakeRepleinshJob(this.id).then(res => {
|
|
uni.navigateBack();
|
|
}).catch(error => {
|
|
uni.navigateBack();
|
|
})
|
|
} else {
|
|
uni.navigateBack();
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
},
|
|
|
|
watch: {
|
|
locationTypes(newVal) {
|
|
let value = newVal;
|
|
},
|
|
},
|
|
mounted: function() {
|
|
|
|
},
|
|
|
|
methods: {
|
|
//接收
|
|
receive(callback) {
|
|
if (this.id != null) {
|
|
takeRepleinshJob(this.id).then(res => {
|
|
callback();
|
|
}).catch(error => {
|
|
this.showErrorMessage(error)
|
|
})
|
|
}
|
|
},
|
|
|
|
getDetail() {
|
|
var that = this;
|
|
uni.showLoading({
|
|
title: "加载中....",
|
|
mask: true
|
|
});
|
|
getRepleinshJobDetail(that.id).then(res => {
|
|
uni.hideLoading();
|
|
if (res.data == null) {
|
|
that.showMessage('未获取到详情');
|
|
} else {
|
|
if (res.data.subList.length > 0) {
|
|
that.jobContent = res.data;
|
|
that.subList = res.data.subList;
|
|
that.toLocationCode = that.subList[0].toLocationCode
|
|
that.tolocationTypeList = getDirectoryItemArray(that.jobContent.toLocationTypes)
|
|
that.detailSource = getDataSource(that.detailSource, that.subList)
|
|
that.resizeCollapse();
|
|
} else {
|
|
that.showMessage('列表数据为0');
|
|
}
|
|
}
|
|
}).catch(error => {
|
|
uni.hideLoading()
|
|
this.showErrorMessage(error)
|
|
})
|
|
},
|
|
|
|
closeScan() {
|
|
this.resizeCollapse();
|
|
},
|
|
|
|
resizeCollapse() {
|
|
this.$nextTick(r => {
|
|
this.$refs.comIssueDetailCard.forEach(r => {
|
|
r.resizeCollapse();
|
|
})
|
|
});
|
|
},
|
|
|
|
|
|
submit() {
|
|
var scanCount = this.getScanCount(this.subList);
|
|
if (scanCount == 0) {
|
|
this.showErrorMessage("扫描数为0,请先扫描")
|
|
return;
|
|
}
|
|
uni.showLoading({
|
|
title: "提交中....",
|
|
mask: true
|
|
});
|
|
|
|
//目前任务只到一个库位
|
|
var itemCodes = []
|
|
let locationCode = this.toLocationCode
|
|
this.detailSource.forEach(toLocation => {
|
|
toLocation.Items.forEach(item => {
|
|
itemCodes.push(item.itemCode)
|
|
})
|
|
})
|
|
|
|
//使用在途库,不查询管理模式
|
|
if (this.jobContent.useOnTheWayLocation == 'TRUE') {
|
|
this.submitJob();
|
|
} else {
|
|
//获取管理模式,封装参数
|
|
getManagementPrecisions(itemCodes, locationCode, res => {
|
|
if (res.success) {
|
|
this.managementList = res.list;
|
|
this.submitJob();
|
|
} else {
|
|
uni.hideLoading();
|
|
this.showErrorMessage(res.message);
|
|
}
|
|
});
|
|
}
|
|
},
|
|
|
|
submitJob() {
|
|
var params = this.setParams()
|
|
console.log("提交参数", JSON.stringify(params));
|
|
|
|
repleinshJobSubmit(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)
|
|
})
|
|
},
|
|
|
|
setParams() {
|
|
var commitSubList = []
|
|
var createTime = getCurrDateTime();
|
|
var creator = this.$store.state.user.id
|
|
this.detailSource.forEach(toLocationCode => {
|
|
toLocationCode.Items.forEach(item => {
|
|
item.Locations.forEach(fromLocation => {
|
|
fromLocation.Batchs.forEach(batch => {
|
|
let subItem = batch.detail;
|
|
|
|
if (subItem != undefined) {
|
|
if (batch.Records.length > 0) {
|
|
subItem.recordList = [];
|
|
batch.Records.forEach(r => {
|
|
let record = {};
|
|
record.handleQty = r.qty;
|
|
|
|
record.fromPackingNumber = r
|
|
.packingNumber;
|
|
record.fromBatch = r.batch;
|
|
record.fromContainerNumber = r
|
|
.ContainerNumber;
|
|
|
|
record.toContainerNumber = r
|
|
.ContainerNumber;
|
|
record.toInventoryStatus = r
|
|
.inventoryStatus;
|
|
record.toLocationCode = this
|
|
.toLocationCode;
|
|
record.supplierCode = r.supplierCode;
|
|
|
|
//使用在途库不改变管理模式
|
|
if (this.jobContent
|
|
.useOnTheWayLocation ==
|
|
'TRUE') {
|
|
record.toPackingNumber = r
|
|
.packingNumber;
|
|
record.toBatch = r.batch;
|
|
} else {
|
|
var info =
|
|
getPackingNumberAndBatch(
|
|
this.managementList, r
|
|
.itemCode,
|
|
r.packingNumber, r
|
|
.batch);
|
|
record.toPackingNumber = info
|
|
.packingNumber;
|
|
record.toBatch = info.batch;
|
|
}
|
|
subItem.recordList.push(record);
|
|
})
|
|
commitSubList.push(subItem);
|
|
}
|
|
}
|
|
})
|
|
})
|
|
})
|
|
})
|
|
|
|
this.jobContent.subList = commitSubList
|
|
this.jobContent.createTime = createTime;
|
|
this.jobContent.creator = creator;
|
|
return this.jobContent;
|
|
},
|
|
|
|
cancel() {
|
|
let that = this;
|
|
this.$refs.comMessage.showQuestionMessage('是否要清空已扫描的物料和目标库位信息?', res => {
|
|
if (res) {
|
|
that.clearInfo();
|
|
}
|
|
});
|
|
},
|
|
|
|
clearInfo() {
|
|
this.dataContent.itemCodeList.forEach(res => {
|
|
if (res.recommendList != null) {
|
|
res.recommendList.forEach(res1 => {
|
|
if (res1.locationCodeList != null) {
|
|
res1.locationCodeList.forEach(res2 => {
|
|
if (res2.packingCodeList != null) {
|
|
res2.packingCodeList.forEach(res3 => {
|
|
res3.itemCode = "";
|
|
res3.qty = 0;
|
|
})
|
|
}
|
|
})
|
|
}
|
|
|
|
})
|
|
}
|
|
|
|
})
|
|
},
|
|
|
|
updateData(record) {
|
|
let requestLocation = this.detailSource.find(r => r.toLocationCode == record.toLocationCode);
|
|
let item = requestLocation.Items.find(r => r.itemCode == record.itemCode);
|
|
let itemHandleQty = 0;
|
|
if (item != undefined) {
|
|
item.Locations.forEach(l => {
|
|
let batch = l.Batchs.find(b => (b.packingNumber == record.packingNumber || b
|
|
.packingNumber == null || b.packingNumber == '') && b.batch ==
|
|
record.batch);
|
|
let handleQty = 0;
|
|
if (batch != undefined) {
|
|
batch.Records.forEach(res => {
|
|
handleQty = calc.add(handleQty,res.qty)
|
|
})
|
|
batch.handleQty = handleQty;
|
|
itemHandleQty = calc.add(itemHandleQty,handleQty)
|
|
}
|
|
})
|
|
}
|
|
|
|
// item.handleQty=itemHandleQty;
|
|
},
|
|
|
|
scanPopupGetFocus() {
|
|
if (this.$refs.scanPopup != undefined) {
|
|
this.$refs.scanPopup.getfocus();
|
|
}
|
|
},
|
|
|
|
showMessage(message) {
|
|
this.$refs.comMessage.showMessage(message, res => {
|
|
if (res) {
|
|
this.afterCloseMessage()
|
|
}
|
|
});
|
|
},
|
|
showErrorMessage(message) {
|
|
this.$refs.comMessage.showErrorMessage(message, res => {
|
|
if (res) {
|
|
this.afterCloseMessage()
|
|
}
|
|
});
|
|
},
|
|
|
|
showScanMessage(message) {
|
|
this.$refs.comMessage.showScanMessage(message);
|
|
},
|
|
|
|
showCommitSuccess() {
|
|
this.$refs.comMessage.showCommitSuccess();
|
|
},
|
|
|
|
showCommitSuccessMessage(hint) {
|
|
this.$refs.comMessage.showSuccessMessage(hint, res => {
|
|
navigateBack(1)
|
|
})
|
|
},
|
|
|
|
showRescanMessage(message) {
|
|
this.$refs.comMessage.showRescanMessage(message);
|
|
},
|
|
|
|
afterCloseMessage() {
|
|
this.scanPopupGetFocus();
|
|
},
|
|
|
|
showScanMessage(message) {
|
|
this.$refs.comMessage.showScanMessage(message);
|
|
},
|
|
|
|
closeScanMessage() {
|
|
this.scanPopupGetFocus();
|
|
},
|
|
confirm(data) {
|
|
this.dataContent = data;
|
|
},
|
|
confirmResult(result) {
|
|
this.dataContent = result;
|
|
this.$forceUpdate();
|
|
},
|
|
openScanDetailPopup() {
|
|
var datacontent = {}
|
|
//克隆对象,深度克隆,防止双向绑定同一个变量
|
|
// Object.assign(datacontent, this.detailSource);
|
|
this.$refs.comScanIssuePack.openScanPopup(this.detailSource, this.jobContent);
|
|
},
|
|
closeScanPopup() {
|
|
this.updateCommitBtn();
|
|
},
|
|
scanLocationCode(location, code) {
|
|
this.$refs.comMessage.showQuestionMessage("是否把所有的目标库位都变成默认库位[" + code + "]", res => {
|
|
this.toLocationCode = code
|
|
|
|
})
|
|
},
|
|
getScanCount(subList) {
|
|
var scanCount = 0;
|
|
this.detailSource.forEach(toLocationCode => {
|
|
toLocationCode.Items.forEach(item => {
|
|
item.Locations.forEach(fromLocation => {
|
|
fromLocation.Batchs.forEach(batch => {
|
|
let subItem = batch.detail;
|
|
if (batch.Records.length > 0) {
|
|
scanCount = calc.add(scanCount,batch.Records.length)
|
|
}
|
|
})
|
|
})
|
|
})
|
|
})
|
|
return scanCount;
|
|
}
|
|
|
|
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
|
|
</style>
|
|
|