From 26ebf71529e5ee4f70c4ad3ed52ea5e59c1b46e5 Mon Sep 17 00:00:00 2001
From: LSH
Date: 星期一, 09 十月 2023 14:02:30 +0800
Subject: [PATCH] #核价相关

---
 src/main/java/com/zy/crm/manager/controller/PriOnline2Controller.java |  232 ++++++++++++++++++++++++++++++++++++++++++++++++++++++---
 1 files changed, 218 insertions(+), 14 deletions(-)

diff --git a/src/main/java/com/zy/crm/manager/controller/PriOnline2Controller.java b/src/main/java/com/zy/crm/manager/controller/PriOnline2Controller.java
index 6e84943..bffd268 100644
--- a/src/main/java/com/zy/crm/manager/controller/PriOnline2Controller.java
+++ b/src/main/java/com/zy/crm/manager/controller/PriOnline2Controller.java
@@ -1,5 +1,6 @@
 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;
@@ -10,9 +11,13 @@
 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.*;
 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;
@@ -40,12 +45,23 @@
     private PriSalesService priSalesService;
 
     @Autowired
+    private PriQuoteService priQuoteService;
+
+    @Autowired
     private CstmrService cstmrService;
+
+    @Autowired
+    private UserService userService;
 
     @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() == 4 ? 0 : priOnline2.getSettle() + 1);
+        return R.ok().add(resultObj);
     }
 
     @RequestMapping(value = "/priOnline2/viewCheck/{id}/auth")
@@ -67,22 +83,26 @@
                   @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()){
@@ -104,6 +124,9 @@
         }
         if (!signUserId && !signDeptId){
             wrapper.eq("user_id", getUserId());
+        }
+        if (signHostId){
+            wrapper.or().eq("host_id",1);
         }
     }
 
@@ -128,17 +151,37 @@
         priOnline2.setUpdateUserId(getUserId());
         //鐘舵�侊紝鏈畬鎴�
         priOnline2.setStatus(0);
+
         //涓氬姟鍛�
 //        Item item = itemService.selectById(priOnline.getItemId());
         Plan plan = planService.selectById(priOnline2.getItemId());
+        if (plan.getStatus()!=1){
+            return R.error("姝よ鍒掑崟鐘舵�佹敼鍙橈紝璇峰埛鏂伴〉闈㈤噸鏂伴�夋嫨锛�");
+        }
         priOnline2.setMemberId(plan.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();
+        }
+        User userUp = userService.selectById(plan.getUserId());                               // 鑾峰彇涓氬姟鍛�
+        List<String> initNames = new ArrayList<>();
+        initNames.add("鎺ュ彇鏍镐环浠诲姟");
+        initNames.add("瀹屾垚鏍镐环");
+        initNames.add("缁忕悊瀹℃牳");
+        initNames.add("涓氬姟鍛樼‘璁�");
+        priOnline2.setSettleMsg(JSON.toJSONString(SettleDto.initSalesPricing(manager,getUser(),userUp,initNames,3)));
 
         //璁剧疆椤圭洰娴佺▼
         plan.setStep(2);
+        plan.setStatus(2);
         planService.updateById(plan);
 
         priOnline2Service.insert(priOnline2);
@@ -279,17 +322,32 @@
     @RequestMapping(value = "/priOnline2/delete/auth")
     @ManagerAuth(memo = "鍒犻櫎鏍镐环绠$悊")
     public R delete(Long[] ids){
-        if (Cools.isEmpty(ids)){
-            return R.error();
-        }
-        for (Long id : ids){
-            int priSales = priSalesService.selectCount(new EntityWrapper<PriSales>().eq("pri_online2_id", id));
-            if (priSales!=0){
-                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")
@@ -308,7 +366,7 @@
     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()){
@@ -316,6 +374,26 @@
             map.put("id", priOnline2.getId());
 //            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.getMemberId$() + "/" + priOnline2.getTemplateName());
+
             result.add(map);
         }
         return R.ok(result);
@@ -340,4 +418,130 @@
         return R.ok().add(vos);
     }
 
+    @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 user2 = userService.selectById(priOnline2.getUserId());
+                User manager1 = new User();
+                try{
+                    manager1 = userService.getDeptManager(getHostId(), user2.getDeptId());        // 鑾峰彇閮ㄩ棬棰嗗
+                }catch (Exception e){
+                    manager1 = user2;
+                }
+
+                if (Cools.isEmpty(getUser())) {
+                    return R.error("鎶辨瓑锛屾偍娌℃湁鎻愪氦鐨勬潈闄�");
+                }
+                if (!getUserId().equals(getUser().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);
+                            dto.setMsg(getUser().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(manager1.getId());
+
+                if (!priOnline2Service.updateById(priOnline2)) {
+                    throw new CoolException("鎻愪氦澶辫触锛岃鑱旂郴绠$悊鍛�");
+                }
+                break;
+            case 1:
+                // 鏈儴闂ㄧ粡鐞嗗鏍�
+                User user = userService.selectById(priOnline2.getUserId());
+                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);
+                                dto.setMsg("閮ㄩ棬缁忕悊" + manager.getNickname() + "瀹℃壒閫氳繃");
+                                dto.setTime(DateUtils.convert(now));
+                                break;
+                            default:
+                                break;
+                        }
+                    }
+                    priOnline2.setSettleMsg(JSON.toJSONString(list));
+
+                    // 淇敼瑙勫垝鍗曠姸鎬�
+                    priOnline2.setSettle(2);  // 鐢宠閫氳繃
+                    priOnline2.setUpdateTime(now);
+                    if (!priOnline2Service.updateById(priOnline2)) {
+                        throw new CoolException("瀹℃牳澶辫触锛岃鑱旂郴绠$悊鍛�");
+                    }
+                } else {
+                    return R.error("鎶辨瓑锛屾偍娌℃湁瀹℃牳鐨勬潈闄愶紒锛侊紒");
+                }
+                break;
+            case 2:
+                // 涓氬姟鍛�
+                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 2:
+                            dto.setCurr(Boolean.TRUE);
+                            break;
+                        case 3:
+                            dto.setCurr(Boolean.TRUE);
+                            dto.setMsg("涓氬姟鍛�" + salesman0.getNickname() + "浠ョ‘璁�");
+                            dto.setTime(DateUtils.convert(new Date()));
+                            break;
+                        default:
+                            break;
+                    }
+                }
+                priOnline2.setSettleMsg(JSON.toJSONString(list2));
+                // 淇敼瑙勫垝鍗曠姸鎬�
+                priOnline2.setSettle(3);  // 瀹℃壒閫氳繃
+                priOnline2.setUpdateTime(new Date());
+
+                if (!priOnline2Service.updateById(priOnline2)) {
+                    throw new CoolException("纭澶辫触锛岃鑱旂郴绠$悊鍛�");
+                }
+                break;
+            default:
+                return R.error();
+        }
+        return R.ok("瀹℃壒鎴愬姛");
+    }
+
 }

--
Gitblit v1.9.1