Browse Source

注释掉下一个节点获取,获取下一个节点存在bug

dev
long 2 years ago
parent
commit
5159efd920
  1. 5
      src/components/jeecg/modal/ProcessPlan.vue
  2. 55
      src/views/activiti/todoManage.vue

5
src/components/jeecg/modal/ProcessPlan.vue

@ -207,6 +207,11 @@ export default {
scopedSlots: { customRender: 'describes' }, scopedSlots: { customRender: 'describes' },
dataIndex: 'describes' dataIndex: 'describes'
}, },
{
title: '采购类型',
align: 'center',
dataIndex: 'planType_dictText'
},
{ {
title: '流程发起公司', title: '流程发起公司',
align: 'center', align: 'center',

55
src/views/activiti/todoManage.vue

@ -503,6 +503,7 @@
let res3=await this.getAction('/hy/processMaterialsAllot/getCurrent', param) let res3=await this.getAction('/hy/processMaterialsAllot/getCurrent', param)
if (res3.success) { if (res3.success) {
if (res3.result) { if (res3.result) {
console.log(res.username,res3.result.relateId)
if(param.username==res3.result.relateId){ if(param.username==res3.result.relateId){
if ( res3.result.name=='生产供应站' || res3.result.name=='物装公司' || res3.result.name=='采购员' ){ if ( res3.result.name=='生产供应站' || res3.result.name=='物装公司' || res3.result.name=='采购员' ){
this.lcModa.isPlanType = true; this.lcModa.isPlanType = true;
@ -551,33 +552,33 @@
this.form.type = 0 this.form.type = 0
this.modalTaskVisible = true this.modalTaskVisible = true
this.userLoading = true this.userLoading = true
this.getAction(this.url.getNextNode, { procDefId: v.procDefId, currActId: v.key ,procInstId:v.procInstId}).then(res => { // this.getAction(this.url.getNextNode, { procDefId: v.procDefId, currActId: v.key ,procInstId:v.procInstId}).then(res => {
this.userLoading = false // this.userLoading = false
if (res.success) { // if (res.success) {
if (res.result.type == 4) { // if (res.result.type == 4) {
this.isGateway = true // this.isGateway = true
this.showAssign = false // this.showAssign = false
this.error = '' // this.error = ''
return // return
} // }
this.isGateway = false // this.isGateway = false
if (res.result.users && res.result.users.length > 0) { // if (res.result.users && res.result.users.length > 0) {
this.error = '' // this.error = ''
this.assigneeList = res.result.users // this.assigneeList = res.result.users
console.log(this.assigneeList) // console.log(this.assigneeList)
// // //
let ids = [] // let ids = []
res.result.users.forEach(e => { // res.result.users.forEach(e => {
ids.push(e.username) // ids.push(e.username)
}) // })
this.form.assignees = ids // this.form.assignees = ids
this.showAssign = true // this.showAssign = true
} else { // } else {
this.form.assignees = [] // this.form.assignees = []
this.showAssign = false // this.showAssign = false
} // }
} // }
}) // })
}, },
changeBackTask(v) { changeBackTask(v) {
if (v == '-1') { if (v == '-1') {

Loading…
Cancel
Save