From 1a5f7432c404946f9ec358b5cb6281a823c466c1 Mon Sep 17 00:00:00 2001 From: luodangjia <luodangjia> Date: 星期二, 14 一月 2025 16:55:07 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/master' --- ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/TechnicianController.java | 60 ++++++++++++++++++++++++++++++++++++++++++------------------ 1 files changed, 42 insertions(+), 18 deletions(-) diff --git a/ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/TechnicianController.java b/ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/TechnicianController.java index ef1e872..68e1cff 100644 --- a/ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/TechnicianController.java +++ b/ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/TechnicianController.java @@ -50,7 +50,8 @@ private SysUserClient sysUserClient; @Resource private AppUserShopClient appUserShopClient; - + @Resource + private AppUserClient appUserClient; @@ -79,16 +80,12 @@ return R.ok(page); } - @Resource - private AppUserClient appUserClient; + @PostMapping("/manage/addorupdate") @ApiOperation(value = "添加编辑", tags = {"门店-技师列表"}) public R<Page<Technician>> add(@RequestBody Technician technician) { - Long userid = tokenService.getLoginUser().getUserid(); SysUser sysUser = sysUserClient.getSysUser(userid).getData(); - - if (technician.getId()==null) { technician.setSubscribeStatus(2); List<Technician> list = technicianService.lambdaQuery().eq(Technician::getPhone, technician.getPhone()).eq(Technician::getShopId, sysUser.getObjectId()).list(); @@ -100,23 +97,23 @@ if (appUser ==null){ return R.fail("当前号码暂无注册用户"); } - + appUser.setUserType(2); + appUserClient.editAppUserById(appUser); AppUserShop appUserShop = new AppUserShop(); appUserShop.setShopId(sysUser.getObjectId()); appUserShop.setAppUserId(appUser.getId()); + appUserShop.setRoleType(3); appUserShopClient.saveAppUserShop(appUserShop); }else { - Technician byId = technicianService.getById(technician.getId()); - if (byId.getPhone()!=technician.getPhone()){ - List<Technician> list = technicianService.lambdaQuery().eq(Technician::getPhone, technician.getPhone()).eq(Technician::getShopId, sysUser.getObjectId()).list(); - if (!list.isEmpty()) { - return R.fail("当前号码已经添加"); - } - R<AppUser> appUserByPhone1 = appUserClient.getAppUserByPhone1(technician.getPhone()); - if (appUserByPhone1.getData()==null){ - return R.fail("当前号码暂无注册用户"); - } + List<Technician> list = technicianService.lambdaQuery().eq(Technician::getPhone, technician.getPhone()).eq(Technician::getShopId, sysUser.getObjectId()) + .ne(Technician::getId, technician.getId()).list(); + if(list.size() > 0){ + return R.fail("当前号码已经添加"); + } + R<AppUser> appUserByPhone1 = appUserClient.getAppUserByPhone1(technician.getPhone()); + if (appUserByPhone1.getData()==null){ + return R.fail("当前号码暂无注册用户"); } } technician.setShopId(sysUser.getObjectId()); @@ -127,12 +124,35 @@ technicianService.saveOrUpdate(technician); return R.ok(); } + + + + @GetMapping("/manage/delete") @ApiOperation(value = "删除", tags = {"门店-技师列表"}) public R<Page<Technician>> delete(@RequestParam Integer id) { - technicianService.removeById(id); + Technician technician = technicianService.getById(id); + technician.setDelFlag(1); + technicianService.updateById(technician); + //检查删除app_user_shop数据 + AppUserShop appUserShop = new AppUserShop(); + appUserShop.setAppUserId(technician.getAppUserId()); + appUserShop.setShopId(technician.getShopId()); + appUserShop.setRoleType(3); + appUserShopClient.delAppUserShop(appUserShop); + List<AppUserShop> userShopList = appUserShopClient.getAppUserShop(technician.getAppUserId()).getData(); + if(userShopList.size() == 0){ + AppUser appUser = appUserClient.getAppUserById(technician.getAppUserId()); + appUser.setUserType(1); + appUserClient.editAppUserById(appUser); + } return R.ok(); } + + + + + @GetMapping("/manage/changeStatus") @ApiOperation(value = "上下架", tags = {"门店-技师列表"}) public R<Page<Technician>> changeStatus(@RequestParam Integer id,@RequestParam@ApiParam("状态(1=下架,2=上架)") Integer status) { @@ -141,6 +161,10 @@ technicianService.updateById(byId); return R.ok(); } + + + + @GetMapping("/manage/changesubscri") @ApiOperation(value = "修改预约状态", tags = {"门店-技师列表"}) public R<Page<Technician>> changesubscri(@RequestParam Integer id,@RequestParam@ApiParam("预约状态(1=可预约,2=不可预约)") Integer subscribeStatus) { -- Gitblit v1.7.1