fix: 81782 已发流程--有其他人处理过流程后--发起人的已发流程就看不到了
This commit is contained in:
+1
-2
@@ -334,10 +334,9 @@ public class ActFlowCommonService {
|
|||||||
processAllService.updateById(process);
|
processAllService.updateById(process);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void updateProcessAllWithProjectId(String processInstanceId, String userId, String prcName, String prcMes,
|
public void updateProcessAllWithProjectId(String processInstanceId, String prcName, String prcMes,
|
||||||
Integer prcType, Date dueTime, String projectId) {
|
Integer prcType, Date dueTime, String projectId) {
|
||||||
ProcessAll process = processAllService.getByProcessInstanceId(processInstanceId);
|
ProcessAll process = processAllService.getByProcessInstanceId(processInstanceId);
|
||||||
process.setCreateUserId(userId);
|
|
||||||
process.setPrcName(prcName);
|
process.setPrcName(prcName);
|
||||||
process.setPrcMes(prcMes);
|
process.setPrcMes(prcMes);
|
||||||
process.setDueTime(dueTime);
|
process.setDueTime(dueTime);
|
||||||
|
|||||||
+1
-1
@@ -195,7 +195,7 @@ public class ProcessFbStandardPurchaseServiceImpl extends ServiceImpl<ProcessFbS
|
|||||||
String prcMes = commonVO.getPrcMes();
|
String prcMes = commonVO.getPrcMes();
|
||||||
Date dueTime = commonVO.getDueTime();
|
Date dueTime = commonVO.getDueTime();
|
||||||
Integer prcType = ProcessTypeEnum.FB_STANDARD_PURCHASE.getValue();
|
Integer prcType = ProcessTypeEnum.FB_STANDARD_PURCHASE.getValue();
|
||||||
actFlowCommonService.updateProcessAllWithProjectId(processInstanceId, userId,
|
actFlowCommonService.updateProcessAllWithProjectId(processInstanceId,
|
||||||
prcName, prcMes, prcType, dueTime, data.get(0).getBusinessId());
|
prcName, prcMes, prcType, dueTime, data.get(0).getBusinessId());
|
||||||
}
|
}
|
||||||
if (flowUser != null) {
|
if (flowUser != null) {
|
||||||
|
|||||||
Reference in New Issue
Block a user