| | |
| | | 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; |
| | |
| | | public class PhoneController extends BaseController { |
| | | @Resource |
| | | private PhoneService phoneService; |
| | | |
| | | @Resource |
| | | private TokenService tokenService; |
| | | |
| | | @Resource |
| | | private SysUserClient sysUserClient; |
| | | |
| | | |
| | | |
| | | |
| | | /** |
| | | * 查询指定门店手机号 |
| | |
| | | .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(); |
| | | } |
| | | |
| | | } |
| | | |