From 60de92280e4cd66a914f41b0681656a62cde346d Mon Sep 17 00:00:00 2001
From: Pu Zhibing <393733352@qq.com>
Date: 星期二, 14 一月 2025 14:50:52 +0800
Subject: [PATCH] 修改bug
---
ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/PhoneController.java | 78 +++++++++++++++++++++++++++++++++++----
1 files changed, 70 insertions(+), 8 deletions(-)
diff --git a/ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/PhoneController.java b/ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/PhoneController.java
index 009571b..7379c22 100644
--- a/ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/PhoneController.java
+++ b/ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/PhoneController.java
@@ -4,16 +4,16 @@
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
import com.ruoyi.common.core.domain.R;
import com.ruoyi.common.core.web.controller.BaseController;
+import com.ruoyi.common.security.service.TokenService;
import com.ruoyi.other.api.domain.Phone;
import com.ruoyi.other.enums.PhoneType;
import com.ruoyi.other.service.PhoneService;
+import com.ruoyi.system.api.domain.SysUser;
+import com.ruoyi.system.api.feignClient.SysUserClient;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import io.swagger.annotations.ApiParam;
-import org.springframework.web.bind.annotation.GetMapping;
-import org.springframework.web.bind.annotation.RequestMapping;
-import org.springframework.web.bind.annotation.RequestParam;
-import org.springframework.web.bind.annotation.RestController;
+import org.springframework.web.bind.annotation.*;
import javax.annotation.Resource;
import java.util.List;
@@ -32,16 +32,78 @@
public class PhoneController extends BaseController {
@Resource
private PhoneService phoneService;
+
+ @Resource
+ private TokenService tokenService;
+
+ @Resource
+ private SysUserClient sysUserClient;
+
+
+
/**
* 查询指定门店手机号
*/
@GetMapping("/selectPhoneByShopId")
- @ApiOperation(value = "查询指定门店手机号", tags = {"小程序-门店详情-查询客服电话"})
- public R<List<Phone>> getPhoneByShopId(@ApiParam("门店id") @RequestParam Integer shopId) {
- return R.ok(phoneService.list(new LambdaQueryWrapper<Phone>()
+ @ApiOperation(value = "查询指定门店手机号", tags = {"小程序-首页-门店详情"})
+ public R<Phone> getPhoneByShopId(@ApiParam("门店id") @RequestParam Integer shopId) {
+ Phone list = phoneService.getOne(new LambdaQueryWrapper<Phone>()
.eq(Phone::getType, PhoneType.SHOP.getCode())
- .eq(Phone::getShopId, shopId)));
+ .eq(Phone::getShopId, shopId));
+ return R.ok(list);
}
+
+
+
+ @GetMapping("/getSysPhone")
+ @ApiOperation(value = "获取客服电话", tags = {"管理后台-客服电话", "门店后台-客服电话"})
+ public R<Phone> getSysPhone(){
+ Long userId = tokenService.getLoginUser().getSysUser().getUserId();
+ SysUser sysUser = sysUserClient.getSysUser(userId).getData();
+ LambdaQueryWrapper<Phone> wrapper = new LambdaQueryWrapper<>();
+ if(sysUser.getRoleType() == 1){
+ wrapper.eq(Phone::getType, 1);
+ }else{
+ wrapper.eq(Phone::getType, 2).eq(Phone::getShopId, sysUser.getObjectId());
+ }
+ Phone one = phoneService.getOne(wrapper);
+ return R.ok(one);
+ }
+
+
+
+ @PostMapping("/savePhone")
+ @ApiOperation(value = "保存客服电话", tags = {"管理后台-客服电话", "门店后台-客服电话"})
+ public R savePhone(@RequestBody Phone phone){
+ Long userId = tokenService.getLoginUser().getSysUser().getUserId();
+ SysUser sysUser = sysUserClient.getSysUser(userId).getData();
+ //平台配置
+ if(sysUser.getRoleType() == 1){
+ Phone one = phoneService.getOne(new LambdaQueryWrapper<Phone>().eq(Phone::getType, 1));
+ if(null != one){
+ one.setPhoneOne(phone.getPhoneOne());
+ one.setPhoneTwo(phone.getPhoneTwo());
+ phoneService.updateById(one);
+ }else{
+ phone.setType(1);
+ phoneService.save(phone);
+ }
+ }else{
+ //门店配置
+ Phone one = phoneService.getOne(new LambdaQueryWrapper<Phone>().eq(Phone::getType, 2).eq(Phone::getShopId, sysUser.getObjectId()));
+ if(null != one){
+ one.setPhoneOne(phone.getPhoneOne());
+ one.setPhoneTwo(phone.getPhoneTwo());
+ phoneService.updateById(one);
+ }else{
+ phone.setType(2);
+ phone.setShopId(sysUser.getObjectId());
+ phoneService.save(phone);
+ }
+ }
+ return R.ok();
+ }
+
}
--
Gitblit v1.7.1