From 9ca97fd558700e7054c5f54192a9db7a1e6b8230 Mon Sep 17 00:00:00 2001
From: xuhy <3313886187@qq.com>
Date: 星期三, 11 九月 2024 16:31:47 +0800
Subject: [PATCH] 完善导出等接口

---
 ruoyi-admin/src/main/java/com/ruoyi/web/controller/api/TGoodsTypeController.java |   16 ++++++++++++++--
 1 files changed, 14 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..8457add 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,7 +1,10 @@
 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.service.TGoodsTypeService;
 import io.swagger.annotations.Api;
@@ -25,10 +28,12 @@
 public class TGoodsTypeController {
 
     private final TGoodsTypeService goodsTypeService;
+    private final TokenService tokenService;
 
     @Autowired
-    public TGoodsTypeController(TGoodsTypeService goodsTypeService) {
+    public TGoodsTypeController(TGoodsTypeService goodsTypeService, TokenService tokenService) {
         this.goodsTypeService = goodsTypeService;
+        this.tokenService = tokenService;
     }
 
     /**
@@ -37,7 +42,13 @@
     @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));
     }
 
     /**
@@ -46,6 +57,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