Commit 0b1b74ec authored by litengwei's avatar litengwei

驳回撤回再提交修改

parent 3fa7bfb3
...@@ -547,7 +547,11 @@ public class JgChangeRegistrationUnitServiceImpl extends BaseService<JgChangeReg ...@@ -547,7 +547,11 @@ public class JgChangeRegistrationUnitServiceImpl extends BaseService<JgChangeReg
dto.setComment(notice.getProcessAdvice()); dto.setComment(notice.getProcessAdvice());
} }
HashMap<String, Object> map = new HashMap<>(); HashMap<String, Object> map = new HashMap<>();
if(notice.getStatus().equals(WorkFlowStatusEnum.UNIT_RENAME_SUBMIT.getReject()) || notice.getStatus().equals(WorkFlowStatusEnum.UNIT_RENAME_SUBMIT.getRollBack()) ) {
map.put("approvalStatus", "提交");
} else {
map.put("approvalStatus", op); map.put("approvalStatus", op);
}
dto.setVariable(map); dto.setVariable(map);
//执行流程 //执行流程
AjaxResult ajaxResult1 = null; AjaxResult ajaxResult1 = null;
......
...@@ -641,7 +641,12 @@ public class JgInstallationNoticeServiceImpl extends BaseService<JgInstallationN ...@@ -641,7 +641,12 @@ public class JgInstallationNoticeServiceImpl extends BaseService<JgInstallationN
dto.setComment(notice.getProcessAdvice()); dto.setComment(notice.getProcessAdvice());
} }
HashMap<String, Object> map = new HashMap<>(); HashMap<String, Object> map = new HashMap<>();
if(notice.getNoticeStatus().equals("6614") || notice.getNoticeStatus().equals("6615") ) {
map.put("approvalStatus", "提交");
} else {
map.put("approvalStatus", op); map.put("approvalStatus", op);
}
dto.setVariable(map); dto.setVariable(map);
//执行流程 //执行流程
AjaxResult ajaxResult1 = null; AjaxResult ajaxResult1 = null;
......
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