|  |  |  | 
|---|
|  |  |  | package com.zy.crm.manager.controller; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import com.alibaba.fastjson.JSON; | 
|---|
|  |  |  | import com.alibaba.fastjson.JSONObject; | 
|---|
|  |  |  | import com.baomidou.mybatisplus.mapper.EntityWrapper; | 
|---|
|  |  |  | import com.baomidou.mybatisplus.mapper.Wrapper; | 
|---|
|  |  |  | 
|---|
|  |  |  | import com.core.common.DateUtils; | 
|---|
|  |  |  | import com.core.common.R; | 
|---|
|  |  |  | import com.core.domain.KeyValueVo; | 
|---|
|  |  |  | import com.core.exception.CoolException; | 
|---|
|  |  |  | import com.zy.crm.common.model.SettleDto; | 
|---|
|  |  |  | import com.zy.crm.common.web.BaseController; | 
|---|
|  |  |  | import com.zy.crm.manager.entity.Plan; | 
|---|
|  |  |  | import com.zy.crm.manager.entity.Pri; | 
|---|
|  |  |  | import com.zy.crm.manager.entity.PriOnline2; | 
|---|
|  |  |  | import com.zy.crm.manager.service.PlanService; | 
|---|
|  |  |  | import com.zy.crm.manager.service.PriOnline2Service; | 
|---|
|  |  |  | import com.zy.crm.manager.service.PriService; | 
|---|
|  |  |  | import com.zy.crm.manager.entity.*; | 
|---|
|  |  |  | import com.zy.crm.manager.service.*; | 
|---|
|  |  |  | import com.zy.crm.system.entity.User; | 
|---|
|  |  |  | import com.zy.crm.system.service.UserService; | 
|---|
|  |  |  | import org.springframework.beans.factory.annotation.Autowired; | 
|---|
|  |  |  | import org.springframework.core.io.ClassPathResource; | 
|---|
|  |  |  | import org.springframework.util.ClassUtils; | 
|---|
|  |  |  | 
|---|
|  |  |  | @Autowired | 
|---|
|  |  |  | private PlanService planService; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Autowired | 
|---|
|  |  |  | private  PlanTypeService planTypeService; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Autowired | 
|---|
|  |  |  | private ProcessPermissionsService processPermissionsService; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Autowired | 
|---|
|  |  |  | private PriQuoteService priQuoteService; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Autowired | 
|---|
|  |  |  | private CstmrService cstmrService; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Autowired | 
|---|
|  |  |  | private UserService userService; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | String PZH=" ———————————————————————————————————————————————————————————————————————————————— "; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @RequestMapping(value = "/priOnline2/{id}/auth") | 
|---|
|  |  |  | @ManagerAuth | 
|---|
|  |  |  | public R get(@PathVariable("id") String id) { | 
|---|
|  |  |  | return R.ok(priOnline2Service.selectById(String.valueOf(id))); | 
|---|
|  |  |  | PriOnline2 priOnline2 = priOnline2Service.selectById(String.valueOf(id)); | 
|---|
|  |  |  | assert priOnline2 != null; | 
|---|
|  |  |  | JSONObject resultObj = JSON.parseObject(JSON.toJSONString(priOnline2)); | 
|---|
|  |  |  | // 步骤条相关 | 
|---|
|  |  |  | resultObj.put("step", priOnline2.getSettle() == 3 ? 0 : priOnline2.getSettle() + 1); | 
|---|
|  |  |  | return R.ok().add(resultObj); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @RequestMapping(value = "/priOnline2/viewCheck/{id}/auth") | 
|---|
|  |  |  | @ManagerAuth | 
|---|
|  |  |  | @ManagerAuth(memo = "查看询价") | 
|---|
|  |  |  | public R viewCheck(@PathVariable("id") String id) { | 
|---|
|  |  |  | PriOnline2 priOnline = priOnline2Service.selectById(String.valueOf(id)); | 
|---|
|  |  |  | if (Cools.isEmpty(priOnline.getCheckData())) { | 
|---|
|  |  |  | 
|---|
|  |  |  | @RequestParam(required = false)String condition, | 
|---|
|  |  |  | @RequestParam Map<String, Object> param){ | 
|---|
|  |  |  | EntityWrapper<PriOnline2> wrapper = new EntityWrapper<>(); | 
|---|
|  |  |  | wrapper.setSqlSelect("id,title,create_time as createTime,filepath,item_id as itemId,order_num as orderNum,template_name as templateName,user_id as userId,dept_id as deptId,status,update_time as updateTime,check_data as checkData,update_user_id as updateUserId,member_id as memberId"); | 
|---|
|  |  |  | wrapper.in("member_id", getUserRoleBelongsToUserId("allopen")); | 
|---|
|  |  |  | wrapper.setSqlSelect("id,title,create_time as createTime,filepath,settle,item_id as itemId,order_num as orderNum,template_name as templateName,user_id as userId,dept_id as deptId,status,update_time as updateTime,check_data as checkData,update_user_id as updateUserId,member_id as memberId"); | 
|---|
|  |  |  | //        wrapper.in("member_id", getUserRoleBelongsToUserId("allopen")); | 
|---|
|  |  |  | excludeTrash(param); | 
|---|
|  |  |  | convert(param, wrapper); | 
|---|
|  |  |  | allLike(PriOnline2.class, param.keySet(), wrapper, condition); | 
|---|
|  |  |  | wrapper.or().eq("member_id",getUserId()); | 
|---|
|  |  |  | if (!Cools.isEmpty(orderByField)){wrapper.orderBy(humpToLine(orderByField), "asc".equals(orderByType));} | 
|---|
|  |  |  | return R.ok(priOnline2Service.selectPage(new Page<>(curr, limit), wrapper)); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | private <T> void convert(Map<String, Object> map, EntityWrapper<T> wrapper){ | 
|---|
|  |  |  | Long deptId = getDeptId(); | 
|---|
|  |  |  | boolean signUserId = false; | 
|---|
|  |  |  | boolean signDeptId = false; | 
|---|
|  |  |  | boolean signHostId = false; | 
|---|
|  |  |  | for (Map.Entry<String, Object> entry : map.entrySet()){ | 
|---|
|  |  |  | if (entry.getKey().equals("dept_id")){ | 
|---|
|  |  |  | signDeptId = true; | 
|---|
|  |  |  | if (String.valueOf(entry.getValue()).equals("19")){ | 
|---|
|  |  |  | signHostId = true; | 
|---|
|  |  |  | } | 
|---|
|  |  |  | } | 
|---|
|  |  |  | } | 
|---|
|  |  |  | for (Map.Entry<String, Object> entry : map.entrySet()){ | 
|---|
|  |  |  | 
|---|
|  |  |  | } | 
|---|
|  |  |  | } | 
|---|
|  |  |  | if (!signUserId && !signDeptId){ | 
|---|
|  |  |  | wrapper.eq("user_id", getUserId()); | 
|---|
|  |  |  | if (getRole().getId()==1){ | 
|---|
|  |  |  | wrapper.or().eq("host_id",1); | 
|---|
|  |  |  | }else if (getRole().getId()==2){ | 
|---|
|  |  |  | wrapper.eq("dept_id",getDeptId()); | 
|---|
|  |  |  | }else { | 
|---|
|  |  |  | wrapper.eq("user_id", getUserId()); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | } | 
|---|
|  |  |  | if (signHostId){ | 
|---|
|  |  |  | wrapper.or().eq("host_id",1); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @RequestMapping(value = "/priOnline2/add/auth") | 
|---|
|  |  |  | @ManagerAuth | 
|---|
|  |  |  | @ManagerAuth(memo = "添加核价管理") | 
|---|
|  |  |  | public R add(@RequestBody Map<String,Object> map) { | 
|---|
|  |  |  | PriOnline2 priOnline2 = new PriOnline2(); | 
|---|
|  |  |  | priOnline2.setCreateTime(new Date()); | 
|---|
|  |  |  | priOnline2.setTitle(map.get("title").toString()); | 
|---|
|  |  |  | priOnline2.setTemplateName(map.get("title").toString()); | 
|---|
|  |  |  | //        priOnline2.setTemplateName(map.get("title").toString()); | 
|---|
|  |  |  | priOnline2.setSheetData(map.get("sheetData").toString()); | 
|---|
|  |  |  | priOnline2.setItemId(Long.parseLong(map.get("itemId").toString())); | 
|---|
|  |  |  | SimpleDateFormat format = new SimpleDateFormat("yyyyMMddHHmmss"); | 
|---|
|  |  |  | priOnline2.setOrderNum(format.format(new Date())); | 
|---|
|  |  |  | //创建人员 | 
|---|
|  |  |  | priOnline2.setUserId(getUserId()); | 
|---|
|  |  |  | //创建人员部门 | 
|---|
|  |  |  | priOnline2.setDeptId(getDeptId()); | 
|---|
|  |  |  | //更新时间 | 
|---|
|  |  |  | priOnline2.setUpdateTime(new Date()); | 
|---|
|  |  |  | //更新人员 | 
|---|
|  |  |  | priOnline2.setUpdateUserId(getUserId()); | 
|---|
|  |  |  | //状态,未完成 | 
|---|
|  |  |  | priOnline2.setStatus(0); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | //业务员 | 
|---|
|  |  |  | //        Item item = itemService.selectById(priOnline.getItemId()); | 
|---|
|  |  |  | Plan plan = planService.selectById(priOnline2.getItemId()); | 
|---|
|  |  |  | priOnline2.setMemberId(plan.getUserId()); | 
|---|
|  |  |  | User userUp = userService.selectById(plan.getUserId()); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | //业务员 | 
|---|
|  |  |  | priOnline2.setUserId(userUp.getId()); | 
|---|
|  |  |  | //业务员部门 | 
|---|
|  |  |  | priOnline2.setDeptId(userUp.getDeptId()); | 
|---|
|  |  |  | //更新人员 | 
|---|
|  |  |  | priOnline2.setUpdateUserId(getUserId()); | 
|---|
|  |  |  | //更新时间 | 
|---|
|  |  |  | priOnline2.setUpdateTime(new Date()); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | //状态,未完成 | 
|---|
|  |  |  | priOnline2.setStatus(0); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | if (plan.getStatus()!=1){ | 
|---|
|  |  |  | return R.error("此规划单状态改变,请刷新页面重新选择!"); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | priOnline2.setMemberId(getUserId()); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | Cstmr cstmr = cstmrService.selectById(plan.getCstmrId()); | 
|---|
|  |  |  | priOnline2.setTemplateName(cstmr.getName());  //甲方单位名称 | 
|---|
|  |  |  |  | 
|---|
|  |  |  | priOnline2.setSettle(0); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | //        User manager = new User(); | 
|---|
|  |  |  | //        try{ | 
|---|
|  |  |  | //            manager = userService.getDeptManager(getHostId(), getUser().getDeptId());        // 获取部门领导 | 
|---|
|  |  |  | //        }catch (Exception e){ | 
|---|
|  |  |  | //            manager = getUser(); | 
|---|
|  |  |  | //        } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | //        String node="2-"; | 
|---|
|  |  |  | //        PlanType planType = planTypeService.selectById(plan.getPlanType()); | 
|---|
|  |  |  | //        node = node+planType.getType(); | 
|---|
|  |  |  | //        ProcessPermissions processPermissions = processPermissionsService.selectOne(new EntityWrapper<ProcessPermissions>().eq("process_memo", 5).eq("process", node));//2:核价流程 | 
|---|
|  |  |  | //        User manager = userService.selectById(processPermissions.getUserId());       // 获取核价流程节点2确认人 | 
|---|
|  |  |  |  | 
|---|
|  |  |  | // 获取业务员 | 
|---|
|  |  |  | List<String> initNames = new ArrayList<>(); | 
|---|
|  |  |  | initNames.add("接取核价任务"); | 
|---|
|  |  |  | initNames.add("完成核价"); | 
|---|
|  |  |  | //        initNames.add("经理审核"); | 
|---|
|  |  |  | initNames.add("业务员确认"); | 
|---|
|  |  |  | priOnline2.setSettleMsg(JSON.toJSONString(SettleDto.initSalesPricingPriOnline2(getUser(),userUp,initNames,2))); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | //设置项目流程 | 
|---|
|  |  |  | plan.setStep(2); | 
|---|
|  |  |  | plan.setStatus(2); | 
|---|
|  |  |  | planService.updateById(plan); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | priOnline2Service.insert(priOnline2); | 
|---|
|  |  |  | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @RequestMapping(value = "/priOnline2/addOther/auth") | 
|---|
|  |  |  | @ManagerAuth | 
|---|
|  |  |  | @ManagerAuth(memo = "另存核价管理") | 
|---|
|  |  |  | public R addOther(@RequestBody Map<String,Object> map) { | 
|---|
|  |  |  | PriOnline2 online = priOnline2Service.selectById(Long.parseLong(map.get("id").toString())); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @RequestMapping(value = "/priOnline2/update/auth") | 
|---|
|  |  |  | @ManagerAuth | 
|---|
|  |  |  | @ManagerAuth(memo = "更新核价管理") | 
|---|
|  |  |  | public R update(@RequestBody Map<String,Object> map){ | 
|---|
|  |  |  | PriOnline2 priOnline2 = priOnline2Service.selectById(Long.parseLong(map.get("id").toString())); | 
|---|
|  |  |  | if (priOnline2.getStatus() == 1) { | 
|---|
|  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | //更新状态 | 
|---|
|  |  |  | @RequestMapping(value = "/priOnline2/updateForm/auth") | 
|---|
|  |  |  | @ManagerAuth | 
|---|
|  |  |  | @ManagerAuth(memo = "更新核价管理状态") | 
|---|
|  |  |  | public R updateForm(Long id,Integer status,String title,String templateName){ | 
|---|
|  |  |  | PriOnline2 priOnline2 = priOnline2Service.selectById(id); | 
|---|
|  |  |  | priOnline2.setStatus(status); | 
|---|
|  |  |  | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @RequestMapping(value = "/priOnline2/uploadCheck/auth") | 
|---|
|  |  |  | @ManagerAuth | 
|---|
|  |  |  | @ManagerAuth(memo = "上传询价文件") | 
|---|
|  |  |  | public R uploadCheck(@RequestParam("id") Integer id, | 
|---|
|  |  |  | @RequestParam("checkData") String checkData, | 
|---|
|  |  |  | @RequestParam("file") MultipartFile[] files){ | 
|---|
|  |  |  | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @RequestMapping(value = "/priOnline2/delete/auth") | 
|---|
|  |  |  | @ManagerAuth | 
|---|
|  |  |  | @ManagerAuth(memo = "删除核价管理") | 
|---|
|  |  |  | public R delete(Long[] ids){ | 
|---|
|  |  |  | if (Cools.isEmpty(ids)){ | 
|---|
|  |  |  | return R.error(); | 
|---|
|  |  |  | try{ | 
|---|
|  |  |  | if (Cools.isEmpty(ids) || ids.length==0){ | 
|---|
|  |  |  | return R.error(); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | for (Long id : ids){ | 
|---|
|  |  |  | int  priQuote= priQuoteService.selectCount(new EntityWrapper<PriQuote>().eq("pri_online_id", id)); | 
|---|
|  |  |  | if (priQuote!=0){ | 
|---|
|  |  |  | return R.error("存在关联的报价单,禁止删除!!!"); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | //                int priSales = priSalesService.selectCount(new EntityWrapper<PriSales>().eq("pri_online2_id", id)); | 
|---|
|  |  |  | //                if (priSales!=0){ | 
|---|
|  |  |  | //                    return R.error("存在关联的产品费用明细,禁止删除!!!"); | 
|---|
|  |  |  | //                } | 
|---|
|  |  |  | } | 
|---|
|  |  |  | for (Long id : ids) { | 
|---|
|  |  |  | PriOnline2 priOnline2 = priOnline2Service.selectById(id); | 
|---|
|  |  |  | Plan plan = planService.selectById(priOnline2.getItemId()); | 
|---|
|  |  |  | plan.setStatus(1); | 
|---|
|  |  |  | planService.updateById(plan); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | priOnline2Service.deleteBatchIds(Arrays.asList(ids)); | 
|---|
|  |  |  | return R.ok(); | 
|---|
|  |  |  | }catch (Exception e){ | 
|---|
|  |  |  | return R.error(e.getMessage()); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | priOnline2Service.deleteBatchIds(Arrays.asList(ids)); | 
|---|
|  |  |  | return R.ok(); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @RequestMapping(value = "/priOnline2/export/auth") | 
|---|
|  |  |  | 
|---|
|  |  |  | public R query(String condition) { | 
|---|
|  |  |  | EntityWrapper<PriOnline2> wrapper = new EntityWrapper<>(); | 
|---|
|  |  |  | wrapper.like("order_num", condition); | 
|---|
|  |  |  | wrapper.in("member_id", getUserRoleBelongsToUserId("allopen")); | 
|---|
|  |  |  | wrapper.in("user_id", getUserRoleBelongsToUserId("allopen")); | 
|---|
|  |  |  | Page<PriOnline2> page = priOnline2Service.selectPage(new Page<>(0, 10), wrapper); | 
|---|
|  |  |  | List<Map<String, Object>> result = new ArrayList<>(); | 
|---|
|  |  |  | for (PriOnline2 priOnline2 : page.getRecords()){ | 
|---|
|  |  |  | Map<String, Object> map = new HashMap<>(); | 
|---|
|  |  |  | map.put("id", priOnline2.getId()); | 
|---|
|  |  |  | map.put("value", priOnline2.getOrderNum() + "/" + priOnline2.getPlanId$() + "/" + priOnline2.getMemberId$()); | 
|---|
|  |  |  | //            map.put("value", priOnline2.getOrderNum() + "/" + priOnline2.getPlanId$() + "/" + priOnline2.getMemberId$()); | 
|---|
|  |  |  | map.put("value", priOnline2.getOrderNum() + "/" + priOnline2.getTemplateName()); | 
|---|
|  |  |  | result.add(map); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | return R.ok(result); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @RequestMapping(value = "/priOnline2Query2/auth") | 
|---|
|  |  |  | @ManagerAuth | 
|---|
|  |  |  | public R query2(String condition) { | 
|---|
|  |  |  | EntityWrapper<PriOnline2> wrapper = new EntityWrapper<>(); | 
|---|
|  |  |  | wrapper.like("order_num", condition); | 
|---|
|  |  |  | wrapper.in("user_id", getUserRoleBelongsToUserId("allopen")); | 
|---|
|  |  |  | Page<PriOnline2> page = priOnline2Service.selectPage(new Page<>(0, 10), wrapper); | 
|---|
|  |  |  | List<Map<String, Object>> result = new ArrayList<>(); | 
|---|
|  |  |  | for (PriOnline2 priOnline2 : page.getRecords()){ | 
|---|
|  |  |  | Map<String, Object> map = new HashMap<>(); | 
|---|
|  |  |  | map.put("id", priOnline2.getId()); | 
|---|
|  |  |  | //            map.put("value", priOnline2.getOrderNum() + "/" + priOnline2.getPlanId$() + "/" + priOnline2.getMemberId$()); | 
|---|
|  |  |  | //            map.put("value", priOnline2.getOrderNum() + "/" + priOnline2.getTemplateName()); | 
|---|
|  |  |  | map.put("value", priOnline2.getOrderNum() + "/" + priOnline2.getPlanId$() + "/" + priOnline2.getUser$() + "/" + priOnline2.getTemplateName()); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | result.add(map); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | return R.ok(result); | 
|---|
|  |  |  | 
|---|
|  |  |  | return R.ok().add(vos); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @PostMapping(value = "/priOnline2/approvalEnd/auth") | 
|---|
|  |  |  | @ManagerAuth(memo = "拒绝申请单") | 
|---|
|  |  |  | public R approvalEnd(@RequestParam Long priOnlineId, | 
|---|
|  |  |  | @RequestParam(required = false) Long plannerId) { | 
|---|
|  |  |  | PriOnline2 priOnline2 = priOnline2Service.selectById(priOnlineId); | 
|---|
|  |  |  | Date now = new Date(); | 
|---|
|  |  |  | Long memberId = priOnline2.getMemberId(); | 
|---|
|  |  |  | User member = userService.selectById(memberId); | 
|---|
|  |  |  | if (!member.getId().equals(getUserId())){ | 
|---|
|  |  |  | return R.error("抱歉,您没有审核的权限"); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | List<SettleDto> planDtos = JSON.parseArray(priOnline2.getSettleMsg(), SettleDto.class); | 
|---|
|  |  |  | List<SettleDto> planDtoList = new ArrayList<>(); | 
|---|
|  |  |  | boolean sign = true; | 
|---|
|  |  |  | for (SettleDto dto : planDtos) { | 
|---|
|  |  |  | if (dto.getStep().equals(1)){ | 
|---|
|  |  |  | priOnline2.setMemberId(dto.getUserId()); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | if (sign && dto.getUserId().equals(memberId) && priOnline2.getSettle()+1==dto.getStep()){ | 
|---|
|  |  |  | if (Cools.isEmpty(dto.getMsg())){ | 
|---|
|  |  |  | dto.setMsg(DateUtils.convert(now)+" "+member.getNickname()+"回退审批"); | 
|---|
|  |  |  | }else { | 
|---|
|  |  |  | dto.setMsg(dto.getMsg()+PZH+DateUtils.convert(now)+" "+member.getNickname()+"回退审批"); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | sign = false; | 
|---|
|  |  |  | } | 
|---|
|  |  |  | if (sign){ | 
|---|
|  |  |  | dto.setMsg(dto.getMsg()+PZH+DateUtils.convert(now)+" "+member.getNickname()+"回退审批"); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | planDtoList.add(dto); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | priOnline2.setStatus(0); | 
|---|
|  |  |  | priOnline2.setSettle(0); | 
|---|
|  |  |  | priOnline2.setUpdateUserId(getUserId()); | 
|---|
|  |  |  | priOnline2.setUpdateTime(now); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | priOnline2.setSettleMsg(JSON.toJSONString(planDtoList)); | 
|---|
|  |  |  | priOnline2Service.updateById(priOnline2); | 
|---|
|  |  |  | return R.ok("回退成功"); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @PostMapping(value = "/priOnline2/approval/auth") | 
|---|
|  |  |  | @ManagerAuth | 
|---|
|  |  |  | public R approvalBusinessTrip(@RequestParam Long priOnlineId, | 
|---|
|  |  |  | @RequestParam(required = false) Long plannerId){ | 
|---|
|  |  |  | PriOnline2 priOnline2 = priOnline2Service.selectById(priOnlineId); | 
|---|
|  |  |  | assert priOnline2 != null; | 
|---|
|  |  |  | Date now = new Date(); | 
|---|
|  |  |  | switch (priOnline2.getSettle()) { | 
|---|
|  |  |  | case 0: | 
|---|
|  |  |  | // 本部门经理审核  节点负责人 | 
|---|
|  |  |  | User user = userService.selectById(priOnline2.getMemberId()); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | Plan plan1 = planService.selectById(priOnline2.getItemId()); | 
|---|
|  |  |  | //                PlanType planType1 = planTypeService.selectById(plan1.getPlanType()); | 
|---|
|  |  |  | // | 
|---|
|  |  |  | //                ProcessPermissions processPermissions1 = processPermissionsService.selectOne(new EntityWrapper<ProcessPermissions>().eq("process_memo", 5).eq("process", "2-"+planType1.getType()));//2:核价流程 | 
|---|
|  |  |  | //                User manager1 = userService.selectById(processPermissions1.getUserId());       // 获取报价流程节点2确认人 | 
|---|
|  |  |  |  | 
|---|
|  |  |  | if (Cools.isEmpty(getUser())) { | 
|---|
|  |  |  | return R.error("抱歉,您没有提交的权限"); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | if (!getUserId().equals(user.getId())) { | 
|---|
|  |  |  | return R.error("抱歉,您没有提交的权限"); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | // 修改 settle 步骤数据 | 
|---|
|  |  |  | List<SettleDto> list1 = JSON.parseArray(priOnline2.getSettleMsg(), SettleDto.class); | 
|---|
|  |  |  | for (SettleDto dto : list1) { | 
|---|
|  |  |  | switch (dto.getStep()) { | 
|---|
|  |  |  | case 0: | 
|---|
|  |  |  | dto.setCurr(Boolean.FALSE); | 
|---|
|  |  |  | break; | 
|---|
|  |  |  | case 1: | 
|---|
|  |  |  | dto.setCurr(Boolean.TRUE); | 
|---|
|  |  |  | if (Cools.isEmpty(dto.getMsg())){ | 
|---|
|  |  |  | dto.setMsg(user.getNickname() + "提交完成"); | 
|---|
|  |  |  | }else { | 
|---|
|  |  |  | dto.setMsg(dto.getMsg()+PZH+DateUtils.convert(new Date())+" " + user.getNickname() + "提交完成"); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | dto.setTime(DateUtils.convert(now)); | 
|---|
|  |  |  | break; | 
|---|
|  |  |  | default: | 
|---|
|  |  |  | break; | 
|---|
|  |  |  | } | 
|---|
|  |  |  | } | 
|---|
|  |  |  | priOnline2.setSettleMsg(JSON.toJSONString(list1)); | 
|---|
|  |  |  | // 修改规划单状态 | 
|---|
|  |  |  | priOnline2.setSettle(1); | 
|---|
|  |  |  | priOnline2.setUpdateUserId(getUserId()); | 
|---|
|  |  |  | priOnline2.setUpdateTime(now); | 
|---|
|  |  |  | priOnline2.setMemberId(plan1.getUserId()); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | if (!priOnline2Service.updateById(priOnline2)) { | 
|---|
|  |  |  | throw new CoolException("提交失败,请联系管理员"); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | break; | 
|---|
|  |  |  | //            case 1: | 
|---|
|  |  |  | //                // 本部门经理审核  节点负责人 | 
|---|
|  |  |  | //                Plan plan = planService.selectById(priOnline2.getItemId()); | 
|---|
|  |  |  | //                PlanType planType = planTypeService.selectById(plan.getPlanType()); | 
|---|
|  |  |  | // | 
|---|
|  |  |  | //                ProcessPermissions processPermissions = processPermissionsService.selectOne(new EntityWrapper<ProcessPermissions>().eq("process_memo", 5).eq("process", "2-"+planType.getType()));//2:报价流程 | 
|---|
|  |  |  | //                User manager = userService.selectById(processPermissions.getUserId());       // 获取报价流程节点2确认人 | 
|---|
|  |  |  | // | 
|---|
|  |  |  | ////                User manager = new User(); | 
|---|
|  |  |  | ////                try{ | 
|---|
|  |  |  | ////                    manager = userService.getDeptManager(getHostId(), getUser().getDeptId());        // 获取部门领导 | 
|---|
|  |  |  | ////                }catch (Exception e){ | 
|---|
|  |  |  | ////                    manager = user; | 
|---|
|  |  |  | ////                } | 
|---|
|  |  |  | //                if (manager.getId().equals(getUserId())) { | 
|---|
|  |  |  | // | 
|---|
|  |  |  | //                    // 修改 settle 步骤数据 | 
|---|
|  |  |  | //                    List<SettleDto> list = JSON.parseArray(priOnline2.getSettleMsg(), SettleDto.class); | 
|---|
|  |  |  | //                    for (SettleDto dto : list) { | 
|---|
|  |  |  | //                        switch (dto.getStep()) { | 
|---|
|  |  |  | //                            case 1: | 
|---|
|  |  |  | //                                dto.setCurr(Boolean.FALSE); | 
|---|
|  |  |  | //                                break; | 
|---|
|  |  |  | //                            case 2: | 
|---|
|  |  |  | //                                dto.setCurr(Boolean.TRUE); | 
|---|
|  |  |  | //                                if (Cools.isEmpty(dto.getMsg())){ | 
|---|
|  |  |  | //                                    dto.setMsg(manager.getNickname() + "审批通过"); | 
|---|
|  |  |  | //                                }else { | 
|---|
|  |  |  | //                                    dto.setMsg(dto.getMsg()+PZH+DateUtils.convert(new Date())+" " + manager.getNickname() + "审批通过"); | 
|---|
|  |  |  | //                                } | 
|---|
|  |  |  | //                                dto.setTime(DateUtils.convert(now)); | 
|---|
|  |  |  | //                                break; | 
|---|
|  |  |  | //                            default: | 
|---|
|  |  |  | //                                break; | 
|---|
|  |  |  | //                        } | 
|---|
|  |  |  | //                    } | 
|---|
|  |  |  | //                    priOnline2.setSettleMsg(JSON.toJSONString(list)); | 
|---|
|  |  |  | // | 
|---|
|  |  |  | //                    // 修改规划单状态 | 
|---|
|  |  |  | //                    priOnline2.setSettle(2);  // 申请通过 | 
|---|
|  |  |  | //                    priOnline2.setUpdateTime(now); | 
|---|
|  |  |  | //                    priOnline2.setUpdateUserId(getUserId()); | 
|---|
|  |  |  | //                    priOnline2.setMemberId(plan.getUserId()); | 
|---|
|  |  |  | //                    if (!priOnline2Service.updateById(priOnline2)) { | 
|---|
|  |  |  | //                        throw new CoolException("审核失败,请联系管理员"); | 
|---|
|  |  |  | //                    } | 
|---|
|  |  |  | //                } else { | 
|---|
|  |  |  | //                    return R.error("抱歉,您没有审核的权限!!!"); | 
|---|
|  |  |  | //                } | 
|---|
|  |  |  | //                break; | 
|---|
|  |  |  | case 1: | 
|---|
|  |  |  | // 业务员 | 
|---|
|  |  |  | User salesman0 = userService.selectById(priOnline2.getUserId()); | 
|---|
|  |  |  | if (!getUserId().equals(salesman0.getId())) { | 
|---|
|  |  |  | return R.error("抱歉,您无需确认!!!"); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | // 修改 settle 步骤数据 | 
|---|
|  |  |  | List<SettleDto> list2 = JSON.parseArray(priOnline2.getSettleMsg(), SettleDto.class); | 
|---|
|  |  |  | for (SettleDto dto : list2) { | 
|---|
|  |  |  | switch (dto.getStep()) { | 
|---|
|  |  |  | case 1: | 
|---|
|  |  |  | dto.setCurr(Boolean.TRUE); | 
|---|
|  |  |  | break; | 
|---|
|  |  |  | case 2: | 
|---|
|  |  |  | dto.setCurr(Boolean.TRUE); | 
|---|
|  |  |  | if (Cools.isEmpty(dto.getMsg())){ | 
|---|
|  |  |  | dto.setMsg("业务员" + salesman0.getNickname() + "审批通过"); | 
|---|
|  |  |  | }else { | 
|---|
|  |  |  | dto.setMsg(dto.getMsg()+PZH+DateUtils.convert(new Date())+" "+"业务员" + salesman0.getNickname() + "审批通过"); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | dto.setTime(DateUtils.convert(new Date())); | 
|---|
|  |  |  | break; | 
|---|
|  |  |  | default: | 
|---|
|  |  |  | break; | 
|---|
|  |  |  | } | 
|---|
|  |  |  | } | 
|---|
|  |  |  | priOnline2.setSettleMsg(JSON.toJSONString(list2)); | 
|---|
|  |  |  | // 修改规划单状态 | 
|---|
|  |  |  | priOnline2.setSettle(2);  // 审批通过 | 
|---|
|  |  |  | priOnline2.setStatus(1); | 
|---|
|  |  |  | priOnline2.setUpdateTime(new Date()); | 
|---|
|  |  |  | priOnline2.setUpdateUserId(getUserId()); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | if (!priOnline2Service.updateById(priOnline2)) { | 
|---|
|  |  |  | throw new CoolException("确认失败,请联系管理员"); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | try{ | 
|---|
|  |  |  | priQuoteAdd(priOnline2.getId(),plannerId); | 
|---|
|  |  |  | }catch (Exception e){ | 
|---|
|  |  |  | return R.error("自动生成报价单失败"); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | break; | 
|---|
|  |  |  | default: | 
|---|
|  |  |  | return R.error(); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | return R.ok("审批成功"); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public void priQuoteAdd(Long priOnlineId,Long priType){ | 
|---|
|  |  |  | Pri pri = null; | 
|---|
|  |  |  | if (priType==1L){ | 
|---|
|  |  |  | pri = priService.selectById(114); | 
|---|
|  |  |  | }else { | 
|---|
|  |  |  | pri = priService.selectById(115); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | PriOnline2 priOnline2 = priOnline2Service.selectById(priOnlineId); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | PriQuote priQuote = new PriQuote(); | 
|---|
|  |  |  | priQuote.setCreateTime(new Date()); | 
|---|
|  |  |  | priQuote.setTitle(pri.getTitle()); | 
|---|
|  |  |  | priQuote.setTemplateName(priOnline2.getTemplateName()); | 
|---|
|  |  |  | priQuote.setSheetData(pri.getSheetData()); | 
|---|
|  |  |  | priQuote.setPriOnlineId(priOnlineId); | 
|---|
|  |  |  | priQuote.setItemId(priOnline2.getItemId()); | 
|---|
|  |  |  | priQuote.setOrderNum(priOnline2.getOrderNum()); | 
|---|
|  |  |  | SimpleDateFormat format = new SimpleDateFormat("yyyyMMddHHmmss"); | 
|---|
|  |  |  | priQuote.setInOrderNum(format.format(new Date())); | 
|---|
|  |  |  | //业务员 | 
|---|
|  |  |  | Plan plan = planService.selectById(priQuote.getItemId()); | 
|---|
|  |  |  | User userUp = userService.selectById(plan.getUserId()); | 
|---|
|  |  |  | //业务员 | 
|---|
|  |  |  | priQuote.setUserId(userUp.getId()); | 
|---|
|  |  |  | //更新人员 | 
|---|
|  |  |  | priQuote.setUpdateUserId(getUserId()); | 
|---|
|  |  |  | //所属部门 | 
|---|
|  |  |  | priQuote.setDeptId(userUp.getDeptId()); | 
|---|
|  |  |  | //更新时间 | 
|---|
|  |  |  | priQuote.setUpdateTime(new Date()); | 
|---|
|  |  |  | //模板 | 
|---|
|  |  |  | Integer i = priType == 1L ? 1 : 2; | 
|---|
|  |  |  | priQuote.setTemplate(i.toString()); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | //设置项目流程 | 
|---|
|  |  |  | plan.setStep(3); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | //        priQuote.setForm(JSON.toJSONString(map));     // 自定义表单内容 | 
|---|
|  |  |  | priQuote.setSettle(1);  // 1.开始 | 
|---|
|  |  |  | User manager = new User(); | 
|---|
|  |  |  | try{ | 
|---|
|  |  |  | manager = userService.getDeptManager(getHostId(), getUser().getDeptId());        // 获取部门领导 | 
|---|
|  |  |  | }catch (Exception e){ | 
|---|
|  |  |  | manager = getUser(); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | priQuote.setMemberId(manager.getId()); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | ProcessPermissions processPermissions = processPermissionsService.selectOne(new EntityWrapper<ProcessPermissions>().eq("process_memo", 2).eq("process", "3-1"));//2:报价流程 | 
|---|
|  |  |  | User president = userService.selectById(processPermissions.getUserId());       // 获取报价流程节点3-1确认人 | 
|---|
|  |  |  | priQuote.setSettleMsg(JSON.toJSONString(SettleDto.initPriQuote(plan, manager,president,getUser()))); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | planService.updateById(plan); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | priQuoteService.insert(priQuote); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @PostMapping(value = "/priOnline2/priQuoteAdd/list/auth") | 
|---|
|  |  |  | @ManagerAuth | 
|---|
|  |  |  | public R priOnline2priQuoteAdd(@RequestParam Long planId){ | 
|---|
|  |  |  | List<KeyValueVo> vos = new ArrayList<>(); | 
|---|
|  |  |  | vos.add(new KeyValueVo("报价模板1", 1L)); | 
|---|
|  |  |  | vos.add(new KeyValueVo("报价模板2", 2L)); | 
|---|
|  |  |  | return R.ok().add(vos); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | } | 
|---|