fix: [bpm] 并行分支后的审批人自选问题修复,https://t.zsxq.com/daxv1
parent
e55613edc6
commit
026f7e9b10
|
|
@ -816,7 +816,8 @@ const initNextAssigneesFormField = async () => {
|
||||||
isEmpty(node.candidateUsers) &&
|
isEmpty(node.candidateUsers) &&
|
||||||
CandidateStrategy.START_USER_SELECT === node.candidateStrategy) ||
|
CandidateStrategy.START_USER_SELECT === node.candidateStrategy) ||
|
||||||
// 情况二:当前节点是审批人自选
|
// 情况二:当前节点是审批人自选
|
||||||
CandidateStrategy.APPROVE_USER_SELECT === node.candidateStrategy
|
(isEmpty(node.candidateUsers) &&
|
||||||
|
CandidateStrategy.APPROVE_USER_SELECT === node.candidateStrategy)
|
||||||
) {
|
) {
|
||||||
nextAssigneesActivityNode.value.push(node)
|
nextAssigneesActivityNode.value.push(node)
|
||||||
}
|
}
|
||||||
|
|
@ -849,7 +850,7 @@ const validateNextAssignees = () => {
|
||||||
}
|
}
|
||||||
// 如果需要自选审批人,则校验每个节点是否都已配置审批人
|
// 如果需要自选审批人,则校验每个节点是否都已配置审批人
|
||||||
for (const item of nextAssigneesActivityNode.value) {
|
for (const item of nextAssigneesActivityNode.value) {
|
||||||
if (isEmpty(approveReasonForm.nextAssignees[item.id])) {
|
if (isEmpty(item.candidateUsers) && isEmpty(approveReasonForm.nextAssignees[item.id])) {
|
||||||
message.warning('下一个节点的审批人不能为空!')
|
message.warning('下一个节点的审批人不能为空!')
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue