From 72f84864736d4fb8edde5ccf057b9d15c241dcb6 Mon Sep 17 00:00:00 2001 From: luxiaotao1123 <t1341870251@63.com> Date: 星期四, 24 十一月 2022 16:06:57 +0800 Subject: [PATCH] # --- src/main/java/com/zy/crm/manager/controller/PlanController.java | 34 ++++++++-------------------------- 1 files changed, 8 insertions(+), 26 deletions(-) diff --git a/src/main/java/com/zy/crm/manager/controller/PlanController.java b/src/main/java/com/zy/crm/manager/controller/PlanController.java index 9a5169e..8bd0658 100644 --- a/src/main/java/com/zy/crm/manager/controller/PlanController.java +++ b/src/main/java/com/zy/crm/manager/controller/PlanController.java @@ -21,6 +21,7 @@ import com.zy.crm.manager.service.PlanService; import com.zy.crm.manager.service.PlanTypeService; import com.zy.crm.system.entity.User; +import com.zy.crm.system.service.DeptService; import com.zy.crm.system.service.UserService; import org.apache.poi.hssf.usermodel.HSSFWorkbook; import org.apache.poi.ss.usermodel.DataFormatter; @@ -44,6 +45,8 @@ private PlanService planService; @Autowired private PlanTypeService planTypeService; + @Autowired + private DeptService deptService; @GetMapping(value = "/plan/{id}/auth") @ManagerAuth @@ -61,7 +64,7 @@ } resultObj.put("formHtml", planType.getHtml()); // 姝ラ鏉$浉鍏� - resultObj.put("step", this.getStepOfSettle(plan.getSettle())); + resultObj.put("step", plan.getSettle() == 5 ? 0 : plan.getSettle() + 1); return R.ok().add(resultObj); } @@ -119,7 +122,8 @@ plan.setForm(JSON.toJSONString(param)); // 鑷畾涔夎〃鍗曞唴瀹� plan.setSettle(1); // 1.寮�濮� - plan.setSettleMsg(JSON.toJSONString(SettleDto.init(plan))); + User manager = userService.getDeptManager(hostId, getUser().getDeptId()); // 鑾峰彇閮ㄩ棬棰嗗 + plan.setSettleMsg(JSON.toJSONString(SettleDto.init(plan, manager))); if (!planService.insert(plan)) { throw new CoolException("淇濇寔澶辫触锛岃閲嶈瘯"); @@ -140,7 +144,8 @@ plan.setUpdateTime(new Date()); plan.setForm(JSON.toJSONString(param)); // 鑷畾涔夎〃鍗曞唴瀹� - plan.setSettleMsg(JSON.toJSONString(SettleDto.init(plan))); + User manager = userService.getDeptManager(getHostId(), getUser().getDeptId()); + plan.setSettleMsg(JSON.toJSONString(SettleDto.init(plan, manager))); if (!planService.updateById(plan)) { throw new CoolException("淇濇寔澶辫触锛岃閲嶈瘯"); @@ -289,29 +294,6 @@ throw new CoolException("鍒犻櫎澶辫触锛岃鑱旂郴绠$悊鍛�"); } return R.ok("鍒犻櫎鎴愬姛"); - } - - - - - - - - - /*************************************** 姝ラ鏉$浉鍏� **********************************************/ - private Integer getStepOfSettle(int settle){ - switch (settle){ - case 1: - return 2; - case 2: - return 3; - case 3: - return 4; - case 4: - return 0; - default: - return 1; - } } } -- Gitblit v1.9.1