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.
462 lines
11 KiB
462 lines
11 KiB
<template>
|
|
<view class="">
|
|
<com-empty-view v-if="jobList.length==0"></com-empty-view>
|
|
<job-filter ref="filter" otherTitle="ASN" @switchChangeToday="switchChangeToday"
|
|
@switchChangeWait="switchChangeWait" @onScanNumber="getScanNumber" :checkedToday="checkedToday"
|
|
:checkedWaitTask="checkedWaitTask" :isShowProductionLineCode="true" @productionLineCode="productionLineCode"
|
|
:productionline="productionLineList"
|
|
:isShowItemCode="true"
|
|
:isShowQurery='true'
|
|
@onQuery="getListByFilter">
|
|
</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:detailOptions"
|
|
@click="swipeClick($event,item)">
|
|
<com-production-job-card :dataContent="item" @click='openJobDetail(item)'>
|
|
</com-production-job-card>
|
|
</uni-swipe-action-item>
|
|
</view>
|
|
</uni-swipe-action>
|
|
|
|
<job-list-popup ref="jobListPopup" @selectedItem="selectedItem"></job-list-popup>
|
|
<job-info-popup ref='jobInfoPopup'></job-info-popup>
|
|
|
|
<uni-load-more :status="loadingType" />
|
|
</view>
|
|
<win-scan-button @goScan='openScanPopup' v-if="jobList.length>0"></win-scan-button>
|
|
<winScanPackJob ref="scanPopup" @getResult='getScanResult'></winScanPackJob>
|
|
<jobList ref="jobList" @selectItem="selectItem"></jobList>
|
|
<comMessage ref="comMessage"></comMessage>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import {
|
|
getProductionReceiptJobList,
|
|
cancleTakeProductionReceiptJob,
|
|
getProductionReceiptJobByProductionline
|
|
} from '@/api/request2.js';
|
|
|
|
import {
|
|
goHome,
|
|
updateTitle
|
|
} from '@/common/basic.js';
|
|
|
|
import {
|
|
getDetailOption,
|
|
getDetailGiveupOption
|
|
} from '@/common/array.js';
|
|
|
|
import comEmptyView from '@/mycomponents/common/comEmptyView.vue'
|
|
import jobFilter from '@/mycomponents/job/jobFilter.vue'
|
|
|
|
import comProductionJobCard from '@/pages/productionReceipt/coms/comProductionJobCard.vue'
|
|
import jobListPopup from '@/pages/productionReceipt/coms/jobListPopup.vue'
|
|
import jobInfoPopup from '@/pages/productionReceipt/coms/jobInfoPopup.vue'
|
|
import winScanButton from '@/mycomponents/scan/winScanButton.vue'
|
|
import winScanPackJob from "@/mycomponents/scan/winScanPackJob.vue"
|
|
import jobList from '@/mycomponents/jobList/jobList.vue'
|
|
|
|
export default {
|
|
name: 'productionReceipt',
|
|
components: {
|
|
comEmptyView,
|
|
jobFilter,
|
|
comProductionJobCard,
|
|
jobListPopup,
|
|
jobInfoPopup,
|
|
winScanPackJob,
|
|
winScanButton,
|
|
jobList
|
|
},
|
|
data() {
|
|
return {
|
|
jobList: [],
|
|
pageNo: 1,
|
|
pageSize: 10,
|
|
totalCount: 0,
|
|
loadingType: "nomore",
|
|
checkedToday: false,
|
|
checkedWaitTask: false,
|
|
todayTime: "",
|
|
status: '1,2', //待处理 、进行中
|
|
detailOptions: [],
|
|
detailGiveupOptions: [],
|
|
title: '',
|
|
scanMessage: "",
|
|
productionLineList: [],
|
|
productionLine: "",
|
|
filterItemCode:""
|
|
};
|
|
},
|
|
onLoad(option) {
|
|
this.title = option.title
|
|
this.getProductionReceiptJobByProductionline()
|
|
},
|
|
|
|
onShow() {
|
|
this.getList('refresh', this.productionLine,this.filterItemCode)
|
|
},
|
|
|
|
onReady() {
|
|
this.detailOptions = getDetailOption();
|
|
this.detailGiveupOptions = getDetailGiveupOption();
|
|
},
|
|
|
|
onReachBottom() {
|
|
//避免多次触发
|
|
if (this.loadingType == 'loading' || this.loadingType == 'nomore') {
|
|
return;
|
|
}
|
|
this.getList('more', this.productionLine,this.filterItemCode)
|
|
},
|
|
|
|
onPullDownRefresh() {
|
|
this.getList('refresh', this.productionLine,this.filterItemCode)
|
|
},
|
|
|
|
//后退按钮
|
|
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.openFilter();
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
productionLineCode(productionLineCode) {
|
|
this.productionLine = productionLineCode
|
|
this.getList('refresh', this.productionLine,this.filterItemCode)
|
|
},
|
|
getProductionReceiptJobByProductionline() {
|
|
getProductionReceiptJobByProductionline().then(res => {
|
|
if (res.code == 0) {
|
|
this.productionLineList = res.data.map(item => ({
|
|
value: item.value,
|
|
text: item.name
|
|
}))
|
|
this.productionLineList.unshift({
|
|
value: "",
|
|
text: "全部"
|
|
})
|
|
} else {
|
|
this.productionLineList = []
|
|
}
|
|
})
|
|
},
|
|
getList(type, productionLine = '',filterItemCode="") {
|
|
let that = this;
|
|
uni.showLoading({
|
|
title: "加载中....",
|
|
mask: true
|
|
});
|
|
|
|
this.loadingType = "loading";
|
|
if (type === "refresh") {
|
|
this.pageNo = 1;
|
|
this.jobList = [];
|
|
}
|
|
var filters = []
|
|
if (this.checkedToday) {
|
|
filters.push({
|
|
column: "create_time",
|
|
action: "betweeen",
|
|
value: this.todayTime
|
|
})
|
|
}
|
|
|
|
filters.push({
|
|
column: "status",
|
|
action: "in",
|
|
value: this.status
|
|
})
|
|
|
|
filters.push({
|
|
column: "accept_user_id",
|
|
action: "==",
|
|
value: this.$store.state.user.id
|
|
})
|
|
|
|
if (productionLine) {
|
|
// 生产线
|
|
filters.push({
|
|
column: "productionLineCode",
|
|
action: "==",
|
|
value: productionLine
|
|
})
|
|
}
|
|
|
|
if(filterItemCode){
|
|
// 物料代码
|
|
filters.push({
|
|
column: "itemCode",
|
|
action: "like",
|
|
value: filterItemCode
|
|
})
|
|
}
|
|
|
|
var params = {
|
|
filters: filters,
|
|
pageNo: this.pageNo,
|
|
pageSize: this.pageSize,
|
|
}
|
|
|
|
getProductionReceiptJobList(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)
|
|
})
|
|
},
|
|
|
|
openJobDetail(item, scanMessage = '') {
|
|
uni.navigateTo({
|
|
url: './productionReceiptDetail?id=' + item.masterId + '&status=' + item.status +
|
|
'&scanMessage=' + scanMessage + '&title=' + this.title
|
|
});
|
|
this.scanMessage = ""
|
|
},
|
|
|
|
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);
|
|
}
|
|
});
|
|
}
|
|
},
|
|
|
|
openjobInfoPopup(item) {
|
|
this.$refs.jobInfoPopup.openPopup(item)
|
|
},
|
|
|
|
cancleJob(id) {
|
|
cancleTakeProductionReceiptJob(id).then(res => {
|
|
if (res.data) {
|
|
this.getList('refresh', this.productionLine,this.filterItemCode)
|
|
uni.showToast({
|
|
title: "放弃任务成功"
|
|
})
|
|
} else {
|
|
this.showMessage("放弃任务失败")
|
|
}
|
|
}).catch(error => {
|
|
this.showMessage(error)
|
|
})
|
|
},
|
|
|
|
switchChangeToday(state, creationTime) {
|
|
this.checkedToday = state;
|
|
this.todayTime = creationTime;
|
|
this.getList('refresh', this.productionLine,this.filterItemCode)
|
|
},
|
|
|
|
switchChangeWait(state, jobStatus) {
|
|
this.checkedWaitTask = state;
|
|
this.status = jobStatus;
|
|
this.getList('refresh', this.productionLine,this.filterItemCode)
|
|
},
|
|
getScanNumber(code) {
|
|
this.getDataListByType(code)
|
|
},
|
|
getDataListByType(code) {
|
|
let that = this;
|
|
uni.showLoading({
|
|
title: "加载中....",
|
|
mask: true
|
|
});
|
|
var filters = []
|
|
filters.push({
|
|
column: "status",
|
|
action: "in",
|
|
value: '1,2'
|
|
})
|
|
filters.push({
|
|
column: "number",
|
|
action: "==",
|
|
value: code
|
|
})
|
|
filters.push({
|
|
column: "accept_user_id",
|
|
action: "==",
|
|
value: this.$store.state.user.id
|
|
})
|
|
|
|
var params = {
|
|
filters: filters,
|
|
pageNo: 1,
|
|
pageSize: 100,
|
|
}
|
|
getProductionReceiptJobList(params).then(res => {
|
|
uni.hideLoading();
|
|
if (res.data.list.length == 0) {
|
|
that.showMessage('未查找到' + '【' + code + '】的收货任务');
|
|
} else if (res.data.list.length == 1) {
|
|
that.openJobDetail(res.data.list[0]);
|
|
}
|
|
}).catch(error => {
|
|
uni.hideLoading();
|
|
that.showMessage(error);
|
|
})
|
|
},
|
|
|
|
showMessage(message) {
|
|
this.$refs.comMessage.showErrorMessage(message, res => {
|
|
if (res) {
|
|
|
|
}
|
|
});
|
|
},
|
|
openScanPopup() {
|
|
this.$refs.scanPopup.openScanPopup();
|
|
},
|
|
selectItem(item) {
|
|
this.$refs.scanPopup.closeScanPopup();
|
|
this.openJobDetail(item, this.scanMessage);
|
|
},
|
|
getScanResult(result) {
|
|
try {
|
|
this.scanMessage = ""
|
|
var filters = [{
|
|
column: "packingNumber",
|
|
action: "in",
|
|
value: result.package.number + "," + result.package.parentNumber
|
|
},
|
|
{
|
|
column: "batch",
|
|
action: "==",
|
|
value: result.label.batch
|
|
},
|
|
{
|
|
column: "itemCode",
|
|
action: "==",
|
|
value: result.label.itemCode
|
|
},
|
|
{
|
|
column: "accept_user_id",
|
|
action: "==",
|
|
value: this.$store.state.user.id
|
|
}
|
|
]
|
|
getProductionReceiptJobList({
|
|
filters: filters,
|
|
pageNo: 1,
|
|
pageSize: 100,
|
|
}).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 > 1) {
|
|
this.$refs.jobList.openList(list)
|
|
} else {
|
|
this.selectItem(list[0])
|
|
}
|
|
} else {
|
|
this.showMessage("未查找到任务\n" + "扫描[" + result.scanMessage + "]")
|
|
}
|
|
}).catch(error => {
|
|
this.showMessage(error + "\n扫描[" + result.scanMessage + "]")
|
|
})
|
|
|
|
} catch (e) {
|
|
this.showMessage(e.message)
|
|
}
|
|
},
|
|
|
|
getListByFilter(params) {
|
|
console.log('getListByFilter',params)
|
|
let that = this;
|
|
var filters = []
|
|
if (this.checkedToday) {
|
|
filters.push({
|
|
column: "create_time",
|
|
action: "betweeen",
|
|
value: this.todayTime
|
|
})
|
|
}
|
|
|
|
filters.push({
|
|
column: "status",
|
|
action: "in",
|
|
value: this.status
|
|
})
|
|
|
|
|
|
if (params.productionLineCode) {
|
|
// 生产线
|
|
this.productionLine = params.productionLineCode
|
|
}else{
|
|
this.productionLine = ''
|
|
}
|
|
if (params.itemCode) {
|
|
// 物料代码
|
|
this.filterItemCode = params.itemCode
|
|
}else{
|
|
this.filterItemCode = ''
|
|
}
|
|
|
|
this.getList('refresh', this.productionLine, this.filterItemCode)
|
|
},
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
|
|
</style>
|