From b22df417e0bc423c788b013feaad686531d69eed Mon Sep 17 00:00:00 2001 From: puzhibing <393733352@qq.com> Date: 星期三, 08 一月 2025 09:51:37 +0800 Subject: [PATCH] 修改bug --- ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/TechnicianController.java | 87 ++++++++++++++++++++++++++++++++++++++++++- 1 files changed, 84 insertions(+), 3 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 17f892f..931bc30 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 @@ -2,6 +2,9 @@ import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; +import com.baomidou.mybatisplus.extension.plugins.pagination.Page; +import com.ruoyi.account.api.feignClient.AppUserClient; +import com.ruoyi.account.api.model.AppUser; import com.ruoyi.common.core.domain.R; import com.ruoyi.common.core.web.controller.BaseController; import com.ruoyi.common.core.web.page.TableDataInfo; @@ -18,6 +21,7 @@ import org.springframework.web.bind.annotation.*; import javax.annotation.Resource; +import java.util.List; /** * <p> @@ -29,7 +33,7 @@ */ @RestController @RequestMapping("/technician") -@Api(tags = "技师") +@Api("技师") public class TechnicianController extends BaseController { @Resource private TechnicianService technicianService; @@ -102,11 +106,88 @@ @ApiOperation(value = "技师列表", tags = {"技师列表-小程序"}) public R<TableDataInfo<TechnicianVO>> technicianListByShopId(@ApiParam("门店id") @RequestParam Long shopId,@ApiParam("技师姓名") String name) { startPage(); - return R.ok(getDataTable(technicianService.getTechnicianListByShopId(shopId,name))); + List<TechnicianVO> technicianListByShopId = technicianService.getTechnicianListByShopId(shopId, name); + TableDataInfo<TechnicianVO> dataTable = getDataTable(technicianListByShopId); + return R.ok(dataTable); } + @GetMapping("/manage/list") + @ApiOperation(value = "技师列表", tags = {"门店-技师列表"}) + public R<Page<Technician>> managelist(@RequestParam Integer pageNum,@RequestParam Integer pageSize,@ApiParam("技师姓名") String name,@ApiParam("技师电话") String phone) { + Integer objectId = tokenService.getLoginUser().getSysUser().getObjectId(); + Page<Technician> page = technicianService.lambdaQuery().like(name != null, Technician::getName, name) + .like(phone != null, Technician::getPhone, phone) + .eq(Technician::getShopId, objectId) + .page(Page.of(pageNum, pageSize)); + return R.ok(page); + } + + @Resource + private AppUserClient appUserClient; + @PostMapping("/manage/addorupdate") + @ApiOperation(value = "添加编辑", tags = {"门店-技师列表"}) + public R<Page<Technician>> add(@RequestBody Technician technician) { + Integer objectId = tokenService.getLoginUser().getSysUser().getObjectId(); + if (technician.getId()==null) { + technician.setSubscribeStatus(2); + List<Technician> list = technicianService.lambdaQuery().eq(Technician::getPhone, technician.getPhone()).list(); + if (!list.isEmpty()) { + return R.fail("当前号码已经添加"); + } + R<AppUser> appUserByPhone1 = appUserClient.getAppUserByPhone1(technician.getPhone()); + if (appUserByPhone1.getData()==null){ + return R.fail("当前号码暂无注册用户"); + } + }else { + Technician byId = technicianService.getById(technician.getId()); + if (byId.getPhone()!=technician.getPhone()){ + List<Technician> list = technicianService.lambdaQuery().eq(Technician::getPhone, technician.getPhone()).list(); + if (!list.isEmpty()) { + return R.fail("当前号码已经添加"); + } + R<AppUser> appUserByPhone1 = appUserClient.getAppUserByPhone1(technician.getPhone()); + if (appUserByPhone1.getData()==null){ + return R.fail("当前号码暂无注册用户"); + } + } + } + technician.setShopId(objectId); + R<AppUser> appUserByPhone1 = appUserClient.getAppUserByPhone1(technician.getPhone()); + if (appUserByPhone1.getData()!=null){ + technician.setAppUserId(appUserByPhone1.getData().getId()); + } + technicianService.saveOrUpdate(technician); + return R.ok(); + } + @GetMapping("/manage/delete") + @ApiOperation(value = "删除", tags = {"门店-技师列表"}) + public R<Page<Technician>> delete(@RequestParam Integer id) { + technicianService.removeById(id); + return R.ok(); + } + @GetMapping("/manage/changeStatus") + @ApiOperation(value = "上下架", tags = {"门店-技师列表"}) + public R<Page<Technician>> changeStatus(@RequestParam Integer id,@RequestParam@ApiParam("状态(1=下架,2=上架)") Integer status) { + Technician byId = technicianService.getById(id); + byId.setStatus(status); + 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) { + Technician byId = technicianService.getById(id); + byId.setSubscribeStatus(subscribeStatus); + technicianService.updateById(byId); + return R.ok(); + } + + + + + @GetMapping("/getById") - @ApiOperation(value = "技师详情", tags = {"技师详情-小程序"}) + @ApiOperation(value = "技师详情", tags = {"技师详情-小程序","门店-技师列表"}) public R<Technician> getById(@RequestParam("id") Integer id){ Technician byId = technicianService.getById(id); return R.ok(byId); -- Gitblit v1.7.1