From 18e68871f0423910f748a727ceab297a8e4765d1 Mon Sep 17 00:00:00 2001 From: luodangjia <luodangjia> Date: 星期二, 10 十二月 2024 14:27:50 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/master' --- ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/PhoneController.java | 69 ++++++++++++++++++++++++++++++++-- 1 files changed, 65 insertions(+), 4 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..5a5b73e 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,6 +32,15 @@ public class PhoneController extends BaseController { @Resource private PhoneService phoneService; + + @Resource + private TokenService tokenService; + + @Resource + private SysUserClient sysUserClient; + + + /** * 查询指定门店手机号 @@ -43,5 +52,57 @@ .eq(Phone::getType, PhoneType.SHOP.getCode()) .eq(Phone::getShopId, shopId))); } + + + + @GetMapping("/getSysPhone") + @ApiOperation(value = "获取客服电话", tags = {"管理后台-客服电话", "门店后台-客服电话"}) + public R<Phone> getSysPhone(){ + Long userid = tokenService.getLoginUser().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().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