| | |
| | | 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; |
| | |
| | | private PlanService planService; |
| | | @Autowired |
| | | private PlanTypeService planTypeService; |
| | | @Autowired |
| | | private DeptService deptService; |
| | | |
| | | @GetMapping(value = "/plan/{id}/auth") |
| | | @ManagerAuth |
| | |
| | | return R.error("当前规划单类型已被禁用"); |
| | | } |
| | | resultObj.put("formHtml", planType.getHtml()); |
| | | // 步骤条相关 |
| | | resultObj.put("step", plan.getSettle() == 5 ? 0 : plan.getSettle() + 1); |
| | | |
| | | return R.ok().add(resultObj); |
| | | } |
| | | |
| | |
| | | |
| | | 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("保持失败,请重试"); |
| | |
| | | plan.setUpdateTime(new Date()); |
| | | |
| | | plan.setForm(JSON.toJSONString(param)); // 自定义表单内容 |
| | | User manager = userService.getDeptManager(getHostId(), getUser().getDeptId()); |
| | | plan.setSettleMsg(JSON.toJSONString(SettleDto.init(plan, manager))); |
| | | |
| | | if (!planService.updateById(plan)) { |
| | | throw new CoolException("保持失败,请重试"); |