|
@@ -81,6 +81,8 @@ public class ItdmRunFlowPathStepServiceImpl extends ServiceImpl<ItdmRunFlowPathS
|
|
|
|
|
|
itdmRunFlowPath.setId(select.getRunFlowPath());
|
|
itdmRunFlowPath.setId(select.getRunFlowPath());
|
|
itdmRunFlowPath.setDqSetp(nextstep.getFlowPathSetp());
|
|
itdmRunFlowPath.setDqSetp(nextstep.getFlowPathSetp());
|
|
|
|
+ itdmRunFlowPath.setDqSetpUserIds(nextstep.getUserIds());
|
|
|
|
+ itdmRunFlowPath.setDqSetpRoleId(nextstep.getRoleId());
|
|
itdmRunFlowPathMapper.updateById(itdmRunFlowPath);
|
|
itdmRunFlowPathMapper.updateById(itdmRunFlowPath);
|
|
|
|
|
|
logService.insert(select.getRunFlowPath(), select.getId(), nextstep.getId(), "通过", "");
|
|
logService.insert(select.getRunFlowPath(), select.getId(), nextstep.getId(), "通过", "");
|
|
@@ -105,7 +107,8 @@ public class ItdmRunFlowPathStepServiceImpl extends ServiceImpl<ItdmRunFlowPathS
|
|
);
|
|
);
|
|
|
|
|
|
itdmRunFlowPath.setDqSetp(prvestep.getFlowPathSetp());
|
|
itdmRunFlowPath.setDqSetp(prvestep.getFlowPathSetp());
|
|
-
|
|
|
|
|
|
+ itdmRunFlowPath.setDqSetpUserIds(prvestep.getUserIds());
|
|
|
|
+ itdmRunFlowPath.setDqSetpRoleId(prvestep.getRoleId());
|
|
|
|
|
|
itdmRunFlowPathMapper.updateById(itdmRunFlowPath);
|
|
itdmRunFlowPathMapper.updateById(itdmRunFlowPath);
|
|
logService.insert(select.getRunFlowPath(), select.getId(), prvestep.getId(), "驳回上一节点", itdmRejectDQRunFlowPath.getYuanyin());
|
|
logService.insert(select.getRunFlowPath(), select.getId(), prvestep.getId(), "驳回上一节点", itdmRejectDQRunFlowPath.getYuanyin());
|
|
@@ -136,6 +139,8 @@ public class ItdmRunFlowPathStepServiceImpl extends ServiceImpl<ItdmRunFlowPathS
|
|
ItdmRunFlowPath itdmRunFlowPath = this.itdmRunFlowPathMapper.selectById(zdRunFlowPath.getRunFlowPath());
|
|
ItdmRunFlowPath itdmRunFlowPath = this.itdmRunFlowPathMapper.selectById(zdRunFlowPath.getRunFlowPath());
|
|
ItdmRunFlowPathStep prvestep = this.baseMapper.selectById(zdRunFlowPath.getRunFlowPathSept());
|
|
ItdmRunFlowPathStep prvestep = this.baseMapper.selectById(zdRunFlowPath.getRunFlowPathSept());
|
|
itdmRunFlowPath.setDqSetp(prvestep.getFlowPathSetp());
|
|
itdmRunFlowPath.setDqSetp(prvestep.getFlowPathSetp());
|
|
|
|
+ itdmRunFlowPath.setDqSetpUserIds(prvestep.getUserIds());
|
|
|
|
+ itdmRunFlowPath.setDqSetpRoleId(prvestep.getRoleId());
|
|
itdmRunFlowPathMapper.updateById(itdmRunFlowPath);
|
|
itdmRunFlowPathMapper.updateById(itdmRunFlowPath);
|
|
logService.insert(prvestep.getRunFlowPath(), itdmRunFlowPath.getDqSetp(), prvestep.getId(), "驳回指定节点", zdRunFlowPath.getYuanyin());
|
|
logService.insert(prvestep.getRunFlowPath(), itdmRunFlowPath.getDqSetp(), prvestep.getId(), "驳回指定节点", zdRunFlowPath.getYuanyin());
|
|
|
|
|