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.
635 lines
16 KiB
635 lines
16 KiB
<template>
|
|
<view class="">
|
|
<com-empty-view v-if="jobList.length==0"></com-empty-view>
|
|
<job-filter-time :isShowFromLocationCode="false" :isShowFromAreaCode="false" :isShowToAreaCode="false" :isShowStatus="false"
|
|
:isShowProductionLineCode="true" :productionline="productionlineList"
|
|
ref="filter" otherTitle="" :isShowItemCode="false"
|
|
@onQuery="getListByFilter" :isShowQurery="true" :isShowBad="true">
|
|
</job-filter-time>
|
|
|
|
<!-- <job-filter :isShowFromLocationCode="true"
|
|
ref="filter" otherTitle="" :isShowItemCode="true"
|
|
@onQuery="getListByFilter" :isShowQurery='true'>
|
|
</job-filter> -->
|
|
<view v-if="jobList.length>0">
|
|
<uni-swipe-action ref="swipeAction">
|
|
<view v-for="(item, index) in jobList" :key="index">
|
|
<uni-swipe-action-item
|
|
:right-options="item.status=='2'?detailGiveupOptions:item.status=='1'?detailCloseOptions:detailOptions"
|
|
@click="swipeClick($event,item)">
|
|
<com-repleinsh-time-job-card :dataContent="item"
|
|
@click='openJobDetail(item)'></com-repleinsh-time-job-card>
|
|
</uni-swipe-action-item>
|
|
</view>
|
|
</uni-swipe-action>
|
|
|
|
<repleinsh-info-popup ref='jobInfoPopup'></repleinsh-info-popup>
|
|
<repleinsh-job-list-popup ref="jobListPopup" @selectedItem="selectedItem"></repleinsh-job-list-popup>
|
|
<uni-load-more :status="loadingType" v-if="jobList.length>0" />
|
|
|
|
</view>
|
|
<!-- <win-scan-button @goScan='openScanPopup' v-if="jobList.length>0"></win-scan-button> -->
|
|
<winComScanBalance ref="scanPopup" @getBalance='getScanResult' :bussinessCode="businessTypeCode">
|
|
</winComScanBalance>
|
|
<!-- <winScanPackJob ref="scanPopup" @getResult='getScanResult' ></winScanPackJob> -->
|
|
<comMessage ref="comMessage"></comMessage>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import {
|
|
getRepleinshJobList,
|
|
getRepleinshTimeJobList,
|
|
cancleTakeRepleinshJob,
|
|
closeTakeRepleinshJob,
|
|
getRepleinshTimByProductionline,
|
|
} from '@/api/request2.js';
|
|
|
|
import {
|
|
goHome,
|
|
updateTitle
|
|
} from '@/common/basic.js';
|
|
|
|
import {
|
|
getBusinessType
|
|
} from '@/common/record.js';
|
|
|
|
import {
|
|
getDetailOption,
|
|
getDetailGiveupOption,
|
|
getDetailCloseOption
|
|
} from '@/common/array.js';
|
|
|
|
import {
|
|
planRefreshTime,
|
|
repleinshJobFilter
|
|
} from '@/common/config.js';
|
|
|
|
import {
|
|
getManagementPrecisions
|
|
} from '@/common/balance.js';
|
|
|
|
import comEmptyView from '@/mycomponents/common/comEmptyView.vue'
|
|
import jobFilterTime from '@/mycomponents/job/jobFilterTime.vue'
|
|
import comRepleinshJobCard from '@/pages/repleinsh/coms/comRepleinshJobCard.vue'
|
|
import comRepleinshTimeJobCard from '@/pages/repleinsh/coms/comRepleinshTimeJobCard.vue'
|
|
import repleinshInfoPopup from '@/pages/repleinsh/coms/repleinshInfoPopup.vue'
|
|
import winScanButton from '@/mycomponents/scan/winScanButton.vue'
|
|
import winScanPackJob from "@/mycomponents/scan/winScanPackJob.vue"
|
|
import winComScanBalance from '@/mycomponents/scan/winComScanBalance.vue'
|
|
|
|
export default {
|
|
name: 'repleinsh',
|
|
components: {
|
|
comEmptyView,
|
|
jobFilterTime,
|
|
comRepleinshJobCard,
|
|
comRepleinshTimeJobCard,
|
|
repleinshInfoPopup,
|
|
winScanPackJob,
|
|
winScanButton,
|
|
winComScanBalance
|
|
},
|
|
data() {
|
|
return {
|
|
jobList: [],
|
|
pageNo: 1,
|
|
pageSize: 10,
|
|
totalCount: 0,
|
|
loadingType: "nomore",
|
|
checkedToday: false,
|
|
checkedWaitTask: false,
|
|
todayTime: "",
|
|
status: '1,2', //待处理 、进行中
|
|
detailOptions: [],
|
|
detailGiveupOptions: [],
|
|
detailCloseOptions: [],
|
|
title: '',
|
|
scanMessage: "",
|
|
businessTypeCode: "Repleinment",
|
|
businessType: null,
|
|
scanBalance: {},
|
|
inInventoryStatus: "", //目标入库库存状态
|
|
outInventoryStatus: "", //来源出库库存状态
|
|
productionLineCode: "",
|
|
productionlineList: [],
|
|
fromLocationCode:'',
|
|
filterItemCode:'',
|
|
timer:null
|
|
};
|
|
},
|
|
onLoad(option) {
|
|
this.title = option.title
|
|
this.getRepleinshTimByProductionline()
|
|
// this.getBusinessTypeFunc()
|
|
},
|
|
|
|
|
|
onShow() {
|
|
this.getList('refresh')
|
|
},
|
|
|
|
onHide() {
|
|
// this.stopRefresh();
|
|
},
|
|
onUnload(){
|
|
// this.stopRefresh();
|
|
},
|
|
onReady() {
|
|
this.detailOptions = getDetailOption();
|
|
this.detailGiveupOptions = getDetailGiveupOption();
|
|
this.detailCloseOptions = getDetailCloseOption();
|
|
},
|
|
|
|
//后退按钮
|
|
onBackPress(options) {
|
|
if (options.from === 'navigateBack') {
|
|
uni.navigateBack({
|
|
delta: 1
|
|
})
|
|
return false;
|
|
}
|
|
},
|
|
|
|
//返回首页
|
|
onNavigationBarButtonTap(e) {
|
|
if (e.index === 0) {
|
|
goHome();
|
|
} else if (e.index == 1) {
|
|
this.$refs.filter.openFilterParams(uni.getStorageSync(repleinshJobFilter));
|
|
}
|
|
},
|
|
onReachBottom() {
|
|
//避免多次触发
|
|
if (this.loadingType == 'loading' || this.loadingType == 'nomore') {
|
|
return;
|
|
}
|
|
this.getList('more')
|
|
|
|
},
|
|
onPullDownRefresh() {
|
|
this.getList('refresh')
|
|
|
|
},
|
|
|
|
methods: {
|
|
timerRefresh() {
|
|
this.getList('refresh')
|
|
this.stopRefresh();
|
|
var that = this;
|
|
this.timer = setInterval(function() {
|
|
that.getList('refresh')
|
|
console.log('补料刷新');
|
|
}, planRefreshTime)
|
|
},
|
|
stopRefresh() {
|
|
if (this.timer) {
|
|
clearInterval(this.timer);
|
|
this.timer = null;
|
|
}
|
|
},
|
|
getBusinessTypeFunc() {
|
|
getBusinessType(this.businessTypeCode, res => {
|
|
if (res.success) {
|
|
this.businessType = res.businessType;
|
|
this.fromInventoryStatuses = res.fromInventoryStatuses.split(',');
|
|
this.fromLocationAreaTypeList = res.fromLocationAreaTypeList
|
|
// this.openScanPopup();
|
|
} else {
|
|
this.$refs.comMessage.showErrorMessage(res.message)
|
|
}
|
|
});
|
|
},
|
|
getRepleinshTimByProductionline() {
|
|
getRepleinshTimByProductionline().then(res => {
|
|
if (res.code == 0) {
|
|
this.productionlineList = res.data.map(item => ({
|
|
value: item.value,
|
|
text: item.label
|
|
}))
|
|
this.productionlineList.unshift({
|
|
value: "",
|
|
text: "全部"
|
|
})
|
|
} else {
|
|
this.productionlineList = []
|
|
}
|
|
})
|
|
},
|
|
setQueryParam(){
|
|
var filterParams = []
|
|
var queryParams=uni.getStorageSync(repleinshJobFilter)
|
|
console.log('queryParams',queryParams)
|
|
//只看当天
|
|
if (queryParams.creationTime ) {
|
|
filterParams.push({
|
|
column: "create_time",
|
|
action: "between",
|
|
value: queryParams.creationTime
|
|
})
|
|
}
|
|
// 只看欠品
|
|
if(queryParams.isOwing){
|
|
filterParams.push({
|
|
column: "isOwing",
|
|
action: "==",
|
|
value: 'TRUE'
|
|
})
|
|
}
|
|
|
|
//只看待处理
|
|
// if (queryParams.status) {
|
|
// filterParams.push({
|
|
// column: "status",
|
|
// action: "in",
|
|
// value: queryParams.status
|
|
// })
|
|
// }else {
|
|
// filterParams.push({
|
|
// column: "status",
|
|
// action: "in",
|
|
// value: "1,2"
|
|
// })
|
|
// }
|
|
filterParams.push({
|
|
column: "status",
|
|
action: "!=",
|
|
value: "8"
|
|
})
|
|
if(queryParams.productionLineCode){
|
|
filterParams.push({
|
|
column: "productionLineCode",
|
|
action: "==",
|
|
value: queryParams.productionLineCode
|
|
})
|
|
}
|
|
// 日期
|
|
if(queryParams.day){
|
|
filterParams.push({
|
|
column: "day",
|
|
action: "==",
|
|
value: queryParams.day
|
|
})
|
|
}
|
|
// 时间
|
|
if(queryParams.time){
|
|
filterParams.push({
|
|
column: "time",
|
|
action: "==",
|
|
value: queryParams.time
|
|
})
|
|
}
|
|
// 便次
|
|
if(queryParams.deliNo){
|
|
filterParams.push({
|
|
column: "deliNo",
|
|
action: "==",
|
|
value: queryParams.deliNo
|
|
})
|
|
}
|
|
|
|
// 来源库位
|
|
if (queryParams.fromLocationCode) {
|
|
filterParams.push({
|
|
column: "fromLocationCode",
|
|
action: "==",
|
|
value: queryParams.fromLocationCode
|
|
})
|
|
}
|
|
//物料代码
|
|
if (queryParams.itemCode) {
|
|
filterParams.push({
|
|
column: "itemCode",
|
|
action: "like",
|
|
value: queryParams.itemCode
|
|
})
|
|
}
|
|
|
|
//来源库区
|
|
if (queryParams.fromAreaCode) {
|
|
filterParams.push({
|
|
column: "fromAreaCode",
|
|
action: "==",
|
|
value: queryParams.fromAreaCode
|
|
})
|
|
}
|
|
//到库区
|
|
if (queryParams.toAreaCode) {
|
|
filterParams.push({
|
|
column: "toAreaCode",
|
|
action: "==",
|
|
value: queryParams.toAreaCode
|
|
})
|
|
}
|
|
return filterParams;
|
|
|
|
},
|
|
|
|
getList(type) {
|
|
let that = this;
|
|
uni.showLoading({
|
|
title: "加载中....",
|
|
mask: true
|
|
});
|
|
|
|
this.loadingType = "loading";
|
|
if (type === "refresh") {
|
|
this.pageNo = 1;
|
|
this.jobList = [];
|
|
}
|
|
|
|
var queryFiltersParams =this.setQueryParam()
|
|
var params = {
|
|
filters: queryFiltersParams,
|
|
pageNo: this.pageNo,
|
|
pageSize: this.pageSize,
|
|
}
|
|
|
|
getRepleinshTimeJobList(params).then(res => {
|
|
uni.hideLoading();
|
|
if (type === "refresh") {
|
|
uni.stopPullDownRefresh();
|
|
}
|
|
|
|
var list = res.data.list;
|
|
this.totalCount = res.data.total
|
|
updateTitle(this.title + "(" + this.totalCount + ")");
|
|
this.loadingType = "loadmore";
|
|
if (list == null || list.length == 0) {
|
|
this.loadingType = "nomore";
|
|
return;
|
|
}
|
|
this.jobList = type === "refresh" ? list : this.jobList.concat(list);
|
|
this.pageNo++;
|
|
|
|
}).catch(error => {
|
|
if (type === "refresh") {
|
|
uni.stopPullDownRefresh();
|
|
}
|
|
this.loadingType = "";
|
|
updateTitle(this.title);
|
|
uni.hideLoading();
|
|
that.showMessage(error)
|
|
})
|
|
},
|
|
|
|
getListByFilter(params) {
|
|
console.log('查询参数',params)
|
|
uni.setStorageSync(repleinshJobFilter,params)
|
|
this.getList('refresh')
|
|
},
|
|
|
|
|
|
openJobDetail(item, scanMessage = '') {
|
|
this.getJobInfoByNumber(item.number,scanMessage, item)
|
|
|
|
},
|
|
|
|
getJobInfoByNumber(number,scanMessage, item){
|
|
let that = this;
|
|
uni.showLoading({
|
|
title: "加载中....",
|
|
mask: true
|
|
});
|
|
var filters = []
|
|
// filters.push({
|
|
// column: "status",
|
|
// action: "in",
|
|
// value: '1,2'
|
|
// })
|
|
filters.push({
|
|
column: "status",
|
|
action: "!=",
|
|
value: "8"
|
|
})
|
|
filters.push({
|
|
column: "number",
|
|
action: "==",
|
|
value: number
|
|
})
|
|
|
|
var params = {
|
|
filters: filters,
|
|
pageNo: 1,
|
|
pageSize: this.pageSize,
|
|
}
|
|
getRepleinshTimeJobList(params).then(res => {
|
|
uni.hideLoading();
|
|
if (res.data.list.length == 0) {
|
|
that.showMessage('未查找到' + '【' + number + '】的发料任务');
|
|
} else {
|
|
var result =res.data.list[0];
|
|
if(result.acceptUserId&&result.acceptUserId!=this.$store.state.user.id){
|
|
this.$refs.comMessage.showErrorMessage("任务号["+result.number+"]已经被["+result.acceptUserName+"]承接,无法执行", res => {
|
|
if (res) {
|
|
if (this.$refs.scanPopup) {
|
|
this.$refs.scanPopup.getfocus()
|
|
}
|
|
this.getList('refresh')
|
|
}
|
|
});
|
|
|
|
return;
|
|
}
|
|
// getManagementPrecisions([item.itemCode], item.fromLocationCode, ret => {
|
|
// if (ret.success) {
|
|
// this.managementList = ret.list;
|
|
// this.managementType = this.managementList.some(cur => cur.ManagementPrecision == 'BY_BATCH') ?
|
|
// 'BY_BATCH' : ''
|
|
// alert(this.managementType)
|
|
// if (this.managementType == 'BY_BATCH') {
|
|
// uni.navigateTo({
|
|
// url: './repleinshDetailBatch?id=' + result.masterId + '&status=' + result.status +
|
|
// '&scanMessage=' +
|
|
// scanMessage + '&title=' + this.title
|
|
// });
|
|
// } else {
|
|
uni.navigateTo({
|
|
url: './repleinshTimeDetail?id=' + result.id + '&status=' + result.status + '&scanMessage=' +
|
|
scanMessage + '&title=' + this.title
|
|
});
|
|
// }
|
|
// }
|
|
// })
|
|
this.scanMessage = ""
|
|
}
|
|
}).catch(error => {
|
|
uni.hideLoading();
|
|
that.showMessage(error);
|
|
})
|
|
},
|
|
|
|
showItemList(itemList) {
|
|
this.$refs.jobListPopup.openPopup(itemList);
|
|
},
|
|
|
|
selectedItem(item) {
|
|
this.openJobDetail(item);
|
|
},
|
|
|
|
swipeClick(e, dataContent) {
|
|
if (e.content.text == "详情") {
|
|
this.openjobInfoPopup(dataContent);
|
|
} else if (e.content.text == "放弃") {
|
|
this.$refs.comMessage.showQuestionMessage("确定要放弃当前任务?",
|
|
res => {
|
|
if (res) {
|
|
this.cancleJob(dataContent.masterId);
|
|
}
|
|
});
|
|
} else if (e.content.text == "关闭") {
|
|
this.$refs.comMessage.showQuestionMessage("确定要关闭当前任务?",
|
|
res => {
|
|
if (res) {
|
|
this.closeJob(dataContent.masterId);
|
|
}
|
|
});
|
|
}
|
|
},
|
|
|
|
openjobInfoPopup(item) {
|
|
this.$refs.jobInfoPopup.openPopup(item)
|
|
},
|
|
|
|
cancleJob(id) {
|
|
cancleTakeRepleinshJob(id).then(res => {
|
|
if (res.data) {
|
|
this.getList('refresh')
|
|
uni.showToast({
|
|
title: "放弃任务成功"
|
|
})
|
|
} else {
|
|
this.showMessage("放弃任务失败")
|
|
}
|
|
}).catch(error => {
|
|
this.showMessage(error)
|
|
})
|
|
},
|
|
closeJob(id) {
|
|
uni.showLoading({
|
|
title: "加载中....",
|
|
mask: true
|
|
});
|
|
|
|
closeTakeRepleinshJob(id).then(res => {
|
|
uni.hideLoading()
|
|
if (res.data) {
|
|
this.getList('refresh')
|
|
uni.showToast({
|
|
title: "关闭任务成功"
|
|
})
|
|
} else {
|
|
this.showMessage("关闭任务失败")
|
|
}
|
|
}).catch(error => {
|
|
uni.hideLoading()
|
|
this.showMessage(error)
|
|
})
|
|
},
|
|
|
|
showMessage(message) {
|
|
this.$refs.comMessage.showErrorMessage(message, res => {
|
|
if (res) {
|
|
|
|
}
|
|
});
|
|
},
|
|
openScanPopup() {
|
|
if (this.businessType == null) {
|
|
this.getBusinessTypeFunc()
|
|
} else {
|
|
this.$refs.scanPopup.openScanPopup(this.businessType);
|
|
}
|
|
},
|
|
selectItem(item) {
|
|
this.$refs.scanPopup.closeScanPopup();
|
|
this.openJobDetail(item, this.scanMessage);
|
|
},
|
|
getScanResult(result) {
|
|
let balance = result.balance;
|
|
if (balance != null) {
|
|
this.scanMessage = ""
|
|
if (!result.label.batch) {
|
|
this.showMessage("批次为空")
|
|
return;
|
|
}
|
|
if (!result.label.itemCode) {
|
|
this.showMessage("物料号为空")
|
|
return;
|
|
}
|
|
try {
|
|
var filters = [
|
|
// {
|
|
// column: "status",
|
|
// action: "in",
|
|
// value: '1,2'
|
|
// },
|
|
{
|
|
column: "status",
|
|
action: "!=",
|
|
value: "8"
|
|
},
|
|
{
|
|
column: "batch",
|
|
action: "==",
|
|
value: result.label.batch
|
|
},
|
|
{
|
|
column: "itemCode",
|
|
action: "==",
|
|
value: result.label.itemCode
|
|
},
|
|
{
|
|
column: "fromLocationCode",
|
|
action: "==",
|
|
value: balance.locationCode
|
|
}
|
|
]
|
|
getRepleinshTimeJobList({
|
|
filters: filters,
|
|
pageNo: 1,
|
|
pageSize: 1000,
|
|
sort: 'createTime',
|
|
by: 'asc'
|
|
}).then(res => {
|
|
this.scanMessage = result.scanMessage
|
|
let resultList = res.data.list;
|
|
if (resultList.length > 0) {
|
|
resultList.forEach(item => {
|
|
item.title = item.number;
|
|
item.selected = false
|
|
})
|
|
let list = []
|
|
resultList.forEach(item => {
|
|
if (!list.find(subItem => subItem.title == item.title)) {
|
|
list.push(item)
|
|
}
|
|
})
|
|
if (list.length > 0) {
|
|
this.selectItem(list[0])
|
|
}
|
|
} else {
|
|
this.showMessage("按来源库位[" + balance.locationCode + "]批次[" + result.label.batch +
|
|
"]物料号[" + result.label.itemCode + "]未查找到任务\n" + "扫描[" + result
|
|
.scanMessage + "]")
|
|
}
|
|
}).catch(error => {
|
|
this.showMessage(error + "\n扫描[" + result.scanMessage + "]")
|
|
})
|
|
|
|
} catch (e) {
|
|
this.showMessage(e.message)
|
|
}
|
|
}
|
|
// else
|
|
// {
|
|
// this.showMessage(error + "\n扫描[" + result.scanMessage + "]")
|
|
// }
|
|
},
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
|
|
</style>
|