From 416e245165e1357a2ec74365bc96cbebbe98aafb Mon Sep 17 00:00:00 2001
From: xuhy <3313886187@qq.com>
Date: 星期二, 02 九月 2025 18:28:24 +0800
Subject: [PATCH] crm分公司,业务员

---
 ruoyi-admin/src/main/java/com/ruoyi/web/controller/api/TCrmBranchController.java |  112 +++++++++++++++++++++++++++++++++++++++++++++++++++----
 1 files changed, 103 insertions(+), 9 deletions(-)

diff --git a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/api/TCrmBranchController.java b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/api/TCrmBranchController.java
index 6788fee..746dfdd 100644
--- a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/api/TCrmBranchController.java
+++ b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/api/TCrmBranchController.java
@@ -5,20 +5,23 @@
 import com.ruoyi.common.annotation.Log;
 import com.ruoyi.common.basic.PageInfo;
 import com.ruoyi.common.core.domain.R;
+import com.ruoyi.common.core.domain.entity.SysUser;
 import com.ruoyi.common.enums.BusinessType;
 import com.ruoyi.system.dto.TCrmBranchDTO;
-import com.ruoyi.system.model.TCrmBranch;
-import com.ruoyi.system.model.TErpGoods;
+import com.ruoyi.system.model.*;
 import com.ruoyi.system.query.TCrmBranchQuery;
-import com.ruoyi.system.service.TCrmBranchService;
+import com.ruoyi.system.service.*;
 import com.ruoyi.system.vo.TCrmBranchVO;
 import io.swagger.annotations.Api;
 import io.swagger.annotations.ApiOperation;
+import org.springframework.beans.BeanUtils;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.validation.annotation.Validated;
 import org.springframework.web.bind.annotation.*;
 
 import java.util.List;
+import java.util.Objects;
+import java.util.stream.Collectors;
 
 /**
  * <p>
@@ -34,9 +37,17 @@
 public class TCrmBranchController {
 
     private final TCrmBranchService crmBranchService;
+    private final TCrmBranchAreaService crmBranchAreaService;
+    private final TCrmBranchSalaryService crmBranchSalaryService;
+    private final ISysUserService sysUserService;
+    private final TCrmChangePointsService crmChangePointsService;
     @Autowired
-    public TCrmBranchController(TCrmBranchService crmBranchService) {
+    public TCrmBranchController(TCrmBranchService crmBranchService, TCrmBranchAreaService crmBranchAreaService, TCrmBranchSalaryService crmBranchSalaryService, ISysUserService sysUserService, TCrmChangePointsService crmChangePointsService) {
         this.crmBranchService = crmBranchService;
+        this.crmBranchAreaService = crmBranchAreaService;
+        this.crmBranchSalaryService = crmBranchSalaryService;
+        this.sysUserService = sysUserService;
+        this.crmChangePointsService = crmChangePointsService;
     }
 
     /**
@@ -64,7 +75,7 @@
     @ApiOperation(value = "添加crm分公司管理")
     @PostMapping(value = "/add")
     public R<Boolean> add(@Validated @RequestBody TCrmBranchDTO dto) {
-        return crmBranchService.add(dto);
+        return crmBranchService.addBranch(dto);
     }
 
     /**
@@ -73,8 +84,8 @@
     @Log(title = "crm分公司管理信息-修改crm分公司管理", businessType = BusinessType.UPDATE)
     @ApiOperation(value = "修改crm分公司管理")
     @PostMapping(value = "/update")
-    public R<Boolean> update(@Validated @RequestBody TCrmBranch dto) {
-        return R.ok(crmBranchService.updateById(dto));
+    public R<Boolean> update(@Validated @RequestBody TCrmBranchDTO dto) {
+        return crmBranchService.updateBranch(dto);
     }
 
     /**
@@ -82,8 +93,17 @@
      */
     @ApiOperation(value = "查看crm分公司管理详情")
     @GetMapping(value = "/getDetailById")
-    public R<TCrmBranch> getDetailById(@RequestParam String id) {
-        return R.ok(crmBranchService.getById(id));
+    public R<TCrmBranchVO> getDetailById(@RequestParam String id) {
+        TCrmBranch crmBranch = crmBranchService.getById(id);
+        TCrmBranchVO crmBranchVO = new TCrmBranchVO();
+        BeanUtils.copyProperties(crmBranch, crmBranchVO);
+        // 查询区域
+        List<TCrmBranchArea> crmBranchAreas = crmBranchAreaService.list(Wrappers.lambdaQuery(TCrmBranchArea.class).eq(TCrmBranchArea::getBranchId, id));
+        crmBranchVO.setCrmBranchAreas(crmBranchAreas);
+        // 职位薪资
+        List<TCrmBranchSalary> crmBranchSalaries = crmBranchSalaryService.list(Wrappers.lambdaQuery(TCrmBranchSalary.class).eq(TCrmBranchSalary::getBranchId, id));
+        crmBranchVO.setCrmBranchSalaries(crmBranchSalaries);
+        return R.ok(crmBranchVO);
     }
 
     /**
@@ -93,6 +113,13 @@
     @ApiOperation(value = "删除crm分公司管理")
     @DeleteMapping(value = "/deleteById")
     public R<Boolean> deleteById(@RequestParam String id) {
+        // 删除区域
+        crmBranchAreaService.remove(Wrappers.lambdaQuery(TCrmBranchArea.class).eq(TCrmBranchArea::getBranchId, id));
+        // 删除职位薪资
+        crmBranchSalaryService.remove(Wrappers.lambdaQuery(TCrmBranchSalary.class).eq(TCrmBranchSalary::getBranchId, id));
+        // 删除账号
+        TCrmBranch crmBranch = crmBranchService.getById(id);
+        sysUserService.deleteUserById(crmBranch.getUserId());
         return R.ok(crmBranchService.removeById(id));
     }
 
@@ -103,8 +130,75 @@
     @ApiOperation(value = "批量删除crm分公司管理")
     @DeleteMapping(value = "/deleteByIds")
     public R<Boolean> deleteByIds(@RequestBody List<String> ids) {
+        // 删除区域
+        crmBranchAreaService.remove(Wrappers.lambdaQuery(TCrmBranchArea.class).in(TCrmBranchArea::getBranchId, ids));
+        // 删除职位薪资
+        crmBranchSalaryService.remove(Wrappers.lambdaQuery(TCrmBranchSalary.class).in(TCrmBranchSalary::getBranchId, ids));
+        // 删除账号
+        List<TCrmBranch> crmBranchList = crmBranchService.list(Wrappers.lambdaQuery(TCrmBranch.class).in(TCrmBranch::getId, ids));
+        List<Long> userIds = crmBranchList.stream().map(TCrmBranch::getUserId).collect(Collectors.toList());
+        sysUserService.deleteUserByIds(userIds);
         return R.ok(crmBranchService.removeByIds(ids));
     }
+
+    /**
+     * 批量删除crm分公司管理
+     */
+    @Log(title = "crm分公司管理信息-分公司管理解冻冻结", businessType = BusinessType.DELETE)
+    @ApiOperation(value = "分公司管理解冻冻结")
+    @PutMapping(value = "/thawOrFreeze")
+    public R<Boolean> thawOrFreeze(@RequestParam(value = "id")String id,
+                                   @RequestParam(value = "status")Integer status) {
+        TCrmBranch crmBranch = crmBranchService.getById(id);
+        crmBranch.setStatus(status);
+        crmBranchService.updateById(crmBranch);
+        // 查询用户
+        SysUser sysUser = sysUserService.selectUserById(crmBranch.getUserId());
+        switch (status){
+            case 1:
+                // 解冻
+                sysUser.setStatus("0");
+                sysUserService.updateUser(sysUser);
+                break;
+            case 2:
+                // 冻结
+                sysUser.setStatus("1");
+                sysUserService.updateUser(sysUser);
+                break;
+        }
+        return R.ok();
+    }
+
+    /**
+     * 批量删除crm分公司管理
+     */
+    @Log(title = "crm分公司管理信息-分公司管理修改积分", businessType = BusinessType.DELETE)
+    @ApiOperation(value = "分公司管理修改积分")
+    @PutMapping(value = "/changePoints")
+    public R<Boolean> changePoints(@RequestBody TCrmChangePoints changePoints) {
+        // 查询分公司信息
+        TCrmBranch crmBranch = crmBranchService.getById(changePoints.getBranchSalespersonId());
+        if (Objects.isNull(crmBranch)) {
+            return R.fail("未查询到该分公司");
+        }
+        switch (changePoints.getChangeType()){
+            case 1:
+                // 增加积分
+                crmBranch.setUserPoints(crmBranch.getUserPoints() + changePoints.getChangeValue());
+                break;
+            case 2:
+                // 减少积分
+                if (crmBranch.getUserPoints() < changePoints.getChangeValue()) {
+                    return R.fail("操作失败,剩余积分数不足");
+                }
+                crmBranch.setUserPoints(crmBranch.getUserPoints() - changePoints.getChangeValue());
+                break;
+        }
+        crmBranchService.updateById(crmBranch);
+        changePoints.setUserType(1);
+        crmChangePointsService.save(changePoints);
+        return R.ok();
+    }
     
 }
 

--
Gitblit v1.7.1