Commit 9431c002 authored by jingnan's avatar jingnan 👀

批量签审领用出库确认

parent 0025e607
......@@ -99,7 +99,7 @@ export default {
this.printFlowLable(selection)
} else if (selectSubTypeName === 'Inventory') { // 打印移库标签
this.printMoveLibraryLabel(selection)
} else if (selectSubTypeName === 'JobResponseOutStorageMatch' || selectSubTypeName === 'JobResponseOutStorageOut') { // 批量签审_配套出库响应打印标签||批量签审_供外出库响应打印标签
} else if (selectSubTypeName === 'JobResponseOutStorageMatch' || selectSubTypeName === 'JobResponseOutStorageOut' || selectSubTypeName === 'JobResponseOutStorageUse') { // 批量签审_配套出库响应打印标签||批量签审_供外出库响应打印标签||批量签审_领用出库响应打印标签
this.printBatchSignMatchJob(selection)
} else if (selectSubTypeName.includes('OutStorage')) { // 打印出库标签
this.printOutStorageLabel(selection)
......
......@@ -72,11 +72,24 @@ export default {
},
// 申请列表
requests: [
{ name: '供外出库', lists: [] }
{ name: '', lists: [] }
],
searchItems: []
}
},
computed: {},
watch: {
'selectData.taskType': {
immediate: true,
handler(val) {
if (val.includes('领用')) {
this.$set(this.requests[0], 'name', '领用出库')
} else {
this.$set(this.requests[0], 'name', '供外出库')
}
}
}
},
mounted() {
this.init()
this.$bus.$on('reloadModuleList', (hasFlag) => {
......@@ -118,15 +131,12 @@ export default {
processTaskId: item.processTask.id
}
})
this.requests.find(item => item.name === '供外出库').lists = data
this.requests[0].lists = data
data && this.currentDataClick(data[0], 0)
}).catch(err => console.log(err)).finally(() => {
this.loading = false
})
},
searchForm() {
this.init()
},
// 重置表单
resetForm() {
this.form = {}
......
......@@ -22,6 +22,7 @@ export default {
OutStorageOutExamine: () => import('./outStorageOutExamine'), // 供外出库审核
OutStorageOutApproval: () => import('./outStorageOutApproval'), // 供外出库批准
OutStorageOutConfirm: () => import('./outStorageOutConfirm'), // 供外出库确认
OutStorageUseConfirm: () => import('./outStorageOutConfirm'), // 领用出库确认
InStorageMatchBackApply: () => import('./inStorageMatchBackApply'), // 配套退库申请
InStorageMatchBackExamin: () => import('./inStorageMatchBackExamine'), // 配套退库审核
InStorageMatchBackConfirm: () => import('./inStorageMatchBackConfirm'), // 配套退库确认
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment