From 660f4451c140a9da1f4bb92721a403b128dbdaf7 Mon Sep 17 00:00:00 2001 From: xuhy <3313886187@qq.com> Date: 星期三, 30 十月 2024 17:15:26 +0800 Subject: [PATCH] 修改 --- ruoyi-admin/src/main/java/com/ruoyi/web/controller/api/TGoodsTypeController.java | 35 +++++++++++++++++++++++++++++++++-- 1 files changed, 33 insertions(+), 2 deletions(-) diff --git a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/api/TGoodsTypeController.java b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/api/TGoodsTypeController.java index ec34274..4c410e1 100644 --- a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/api/TGoodsTypeController.java +++ b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/api/TGoodsTypeController.java @@ -1,9 +1,14 @@ package com.ruoyi.web.controller.api; +import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; +import com.baomidou.mybatisplus.core.toolkit.Wrappers; import com.ruoyi.common.core.domain.AjaxResult; +import com.ruoyi.framework.web.service.TokenService; import com.ruoyi.system.domain.TGoodsType; +import com.ruoyi.system.domain.TShop; import com.ruoyi.system.service.TGoodsTypeService; +import com.ruoyi.system.service.TShopService; import io.swagger.annotations.Api; import io.swagger.annotations.ApiOperation; import org.springframework.beans.factory.annotation.Autowired; @@ -25,10 +30,14 @@ public class TGoodsTypeController { private final TGoodsTypeService goodsTypeService; + private final TokenService tokenService; + private final TShopService shopService; @Autowired - public TGoodsTypeController(TGoodsTypeService goodsTypeService) { + public TGoodsTypeController(TGoodsTypeService goodsTypeService, TokenService tokenService, TShopService shopService) { this.goodsTypeService = goodsTypeService; + this.tokenService = tokenService; + this.shopService = shopService; } /** @@ -37,7 +46,28 @@ @ApiOperation( value = "查询商品分类列表") @PostMapping(value = "/list") public AjaxResult<List<TGoodsType>> list() { - return AjaxResult.success(goodsTypeService.list()); + Long shopId = tokenService.getLoginUser().getObjectId(); + Integer roleType = tokenService.getLoginUser().getRoleType(); + LambdaQueryWrapper<TGoodsType> wrapper = new LambdaQueryWrapper<>(); + if(roleType != 1){ + wrapper.eq(TGoodsType::getShopId, shopId); + } + return AjaxResult.success(goodsTypeService.list(wrapper)); + } + + /** + * 查询商品分类列表 + */ + @ApiOperation( value = "查询商品分类列表-后台使用") + @GetMapping(value = "/getList") + public AjaxResult<List<TGoodsType>> getList(@RequestParam("mealType") Integer mealType) { + // 获取餐饮分类店铺id + TShop one = shopService.getOne(Wrappers.lambdaQuery(TShop.class) + .eq(TShop::getMealType, mealType) + .last("LIMIT 1")); + LambdaQueryWrapper<TGoodsType> wrapper = new LambdaQueryWrapper<>(); + wrapper.eq(TGoodsType::getShopId, one.getId()); + return AjaxResult.success(goodsTypeService.list(wrapper)); } /** @@ -46,6 +76,7 @@ @ApiOperation( value = "添加商品分类") @PostMapping(value = "/add") public AjaxResult<Boolean> add(@RequestBody TGoodsType dto) { + dto.setShopId(tokenService.getLoginUser().getObjectId()); return AjaxResult.success(goodsTypeService.save(dto)); } -- Gitblit v1.7.1