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.

452 lines
11 KiB

10 months ago
<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>
9 months ago
<u-line color="#D8D8D8"></u-line>
<view class="cen_card" style="padding: 5rpx;">
<view class="cell_box uni-flex uni-row">
<view class="cell_info">
<view class="text_lightblue">客户代码</view>
<view>{{jobContent.customerCode}}</view>
</view>
<view class="cell_info">
<view class="text_lightblue">客户寄售库</view>
<view>{{toLocationCode}}</view>
</view>
</view>
<u-line />
</view>
</view>
10 months ago
<view class="page-main">
10 months ago
<scroll-view scroll-y="true" class="">
<view v-for="(toLocation, index) in detailSource">
<comDeliverDetailCard ref='comIssueDetailCard' :dataContent="toLocation" @updateData='updateData'>
</comDeliverDetailCard>
10 months ago
</view>
</scroll-view>
</view>
10 months ago
10 months ago
<div class="btn_bottom">
<view class="" style="display: flex;flex-direction: row;">
10 months ago
<view class="">
10 months ago
<button class="btn_commit" hover-class="btn_commit_after" @click="submit()">提交</button>
10 months ago
</view>
</view>
10 months ago
</div>
<win-scan-button @goScan='openScanDetailPopup'></win-scan-button>
<comScanDeliverPack ref="comScanIssuePack" @closeScan='closeScan' @updateData='updateData'>
</comScanDeliverPack>
<comMessage ref="comMessage"></comMessage>
10 months ago
</view>
</template>
<script>
import {
getDeliverDetail,
getBasicLocationByCode,
10 months ago
takeDeliverJob,
10 months ago
cancleTakeDeliverJob,
deliverJobSubmit
} from '@/api/request2.js';
10 months ago
10 months ago
import {
goHome,
10 months ago
updateTitle,
navigateBack,
10 months ago
getRemoveOption,
10 months ago
getCurrDateTime,
10 months ago
getDirectoryItemArray,
getPackingNumberAndBatch,
10 months ago
} from '@/common/basic.js';
import {
10 months ago
getDataSource
} from '@/pages/issue/js/issue.js';
import {
getManagementPrecisions
} from '@/common/balance.js';
10 months ago
10 months ago
import jobDetailPopup from '@/mycomponents/job/jobDetailPopup.vue'
10 months ago
import winScanButton from '@/mycomponents/scan/winScanButton.vue'
10 months ago
import comDeliverDetailCard from '@/pages/deliver/coms/comDeliverDetailCard.vue'
import comScanDeliverPack from '@/pages/deliver/coms/comScanDeliverPack.vue'
10 months ago
import comMessage from '@/mycomponents/common/comMessage.vue'
import jobTop from '@/mycomponents/job/jobTop.vue'
10 months ago
export default {
10 months ago
name: 'issueDetail',
10 months ago
components: {
10 months ago
jobDetailPopup,
10 months ago
winScanButton,
10 months ago
comDeliverDetailCard,
comScanDeliverPack,
comMessage,
jobTop
10 months ago
},
data() {
return {
id: '',
jobContent: {}, //任务内容
10 months ago
subList: [], //接口返回的任务subList
10 months ago
detailSource: [], //绑定在页面上的数据源
10 months ago
detailOptions: [],
scanOptions: [],
status:"",
received :false,
toLocationCode:""
10 months ago
};
},
10 months ago
props: {
},
10 months ago
onLoad(option) {
this.id = option.id;
10 months ago
if (this.id != undefined) {
//新建的任务自动接收
if (option.status == "1") {
this.receive((callback => {
this.received = true;
this.getDetail();
}));
} else {
this.getDetail();
}
}
10 months ago
},
10 months ago
10 months ago
onNavigationBarButtonTap(e) {
if (e.index === 0) {
goHome();
}
},
10 months ago
10 months ago
//拦截返回按钮事件
onBackPress(e) {
//已经接收但是没提交任务
10 months ago
if (this.received) {
//取消承接任务
cancleTakeDeliverJob(this.id).then(res => {}).catch(error => {
this.showMessage(err);
})
10 months ago
}
},
methods: {
//接收
receive(callback) {
if (this.id != null) {
takeDeliverJob(this.id).then(res => {
callback();
}).catch(error => {
this.showErrorMessage(error)
})
}
},
getDetail() {
var that = this;
uni.showLoading({
title: "加载中....",
mask: true
});
getDeliverDetail(that.id).then(res => {
uni.hideLoading();
if (res.data == null) {
that.showMessage('未获取到详情');
} else {
if (res.data.subList.length > 0) {
that.jobContent = res.data;
10 months ago
that.subList = res.data.subList;
10 months ago
that.detailSource = getDataSource(that.detailSource, that.subList)
that.toLocationCode =that.subList[0].toLocationCode
10 months ago
that.resizeCollapse();
10 months ago
} else {
that.showMessage('列表数据为0');
}
}
}).catch(error => {
uni.hideLoading()
this.showErrorMessage(error)
})
},
10 months ago
closeScan() {
this.resizeCollapse();
10 months ago
},
10 months ago
resizeCollapse() {
this.$nextTick(r => {
this.$refs.comIssueDetailCard.forEach(r => {
r.resizeCollapse();
})
});
10 months ago
},
10 months ago
10 months ago
10 months ago
submit() {
uni.showLoading({
title: "提交中....",
mask: true
});
10 months ago
10 months ago
//目前任务只到一个库位
var itemCodes = []
let locationCode = this.detailSource[0].toLocationCode
this.detailSource.forEach(toLocationCode => {
toLocationCode.Items.forEach(item=>{
itemCodes.push(item.itemCode)
})
})
10 months ago
10 months ago
//使用在途库,不查询管理模式
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);
10 months ago
}
10 months ago
});
10 months ago
}
},
10 months ago
submitJob() {
var params = this.setParams()
console.log("提交参数", JSON.stringify(params));
10 months ago
10 months ago
deliverJobSubmit(params).then(res => {
uni.hideLoading()
if (res.data) {
this.showCommitSuccessMessage("提交成功<br>生成发货记录" + res.data)
10 months ago
} else {
10 months ago
this.showErrorMessage("提交失败[" + res.msg+"]")
10 months ago
}
10 months ago
}).catch(error => {
uni.hideLoading()
this.showErrorMessage(error)
})
10 months ago
},
10 months ago
setParams() {
var subList = []
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;
subItem.recordList = [];
if (batch.Records.length > 0) {
batch.Records.forEach(r => {
let record = {};
record.handleQty = r.qty;
record.toContainerNumber = r
.ContainerNumber;
record.toInventoryStatus = r
.inventoryStatus;
record.toLocationCode = subItem
.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);
})
subList.push(subItem);
}
})
10 months ago
})
})
})
10 months ago
10 months ago
this.jobContent.subList = subList
this.jobContent.createTime = createTime;
this.jobContent.creator = creator;
return this.jobContent;
},
10 months ago
10 months ago
cancel() {
let that = this;
this.$refs.comMessage.showQuestionMessage('是否要清空已扫描的零件和目标库位信息?', res => {
if (res) {
that.clearInfo();
10 months ago
}
10 months ago
});
10 months ago
},
10 months ago
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;
})
}
})
}
10 months ago
10 months ago
})
10 months ago
}
10 months ago
10 months ago
})
10 months ago
},
10 months ago
10 months ago
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 += Number(res.qty)
})
batch.handleQty = handleQty;
itemHandleQty += handleQty;
10 months ago
}
})
10 months ago
}
// item.handleQty=itemHandleQty;
10 months ago
},
10 months ago
scanPopupGetFocus() {
if (this.$refs.scanPopup != undefined) {
this.$refs.scanPopup.getfocus();
10 months ago
}
},
10 months ago
showMessage(message) {
this.$refs.comMessage.showMessage(message, res => {
if (res) {
this.afterCloseMessage()
}
});
},
showErrorMessage(message) {
this.$refs.comMessage.showErrorMessage(message, res => {
10 months ago
if (res) {
10 months ago
this.afterCloseMessage()
10 months ago
}
});
},
10 months ago
showScanMessage(message) {
this.$refs.comMessage.showScanMessage(message);
10 months ago
},
10 months ago
showCommitSuccess() {
this.$refs.comMessage.showCommitSuccess();
10 months ago
},
10 months ago
showCommitSuccessMessage(hint) {
this.$refs.comMessage.showSuccessMessage(hint, res => {
navigateBack(1)
10 months ago
})
},
10 months ago
showRescanMessage(message) {
this.$refs.comMessage.showRescanMessage(message);
10 months ago
},
afterCloseMessage() {
this.scanPopupGetFocus();
},
10 months ago
showScanMessage(message) {
this.$refs.comMessage.showScanMessage(message);
10 months ago
},
10 months ago
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();
10 months ago
},
}
10 months ago
};
10 months ago
</script>
<style scoped lang="scss">
10 months ago
.uni-numbox__value {
width: 40px;
10 months ago
}
10 months ago
button[disabled] {
background-color: #3C9CFF;
color: #fff;
opacity: 0.7;
10 months ago
}
10 months ago
// /deep/ .input-value {
// font-size: 16px;
// }
10 months ago
10 months ago
// /deep/ .uni-collapse-item__title-text {
// font-size: 16px;
// }
10 months ago
10 months ago
// /deep/ .uni-collapse-item--border {
// border-bottom-width: 0px;
// border-bottom-color: #ebeef5;
// }
10 months ago
10 months ago
// /deep/ .uni-collapse-item--border {
// border-bottom-width: 1px;
// border-bottom-color: #ebeef5;
// }
10 months ago
</style>