From 981aacc8d5de2638a0f5b3eb2585e64cfaf2807d Mon Sep 17 00:00:00 2001 From: Pu Zhibing <393733352@qq.com> Date: 星期六, 12 七月 2025 18:01:19 +0800 Subject: [PATCH] 修改bug --- ruoyi-modules/ruoyi-shop/src/main/java/com/ruoyi/shop/controller/console/ShopController.java | 66 ++++++++++++++++++++++++++------- 1 files changed, 52 insertions(+), 14 deletions(-) diff --git a/ruoyi-modules/ruoyi-shop/src/main/java/com/ruoyi/shop/controller/console/ShopController.java b/ruoyi-modules/ruoyi-shop/src/main/java/com/ruoyi/shop/controller/console/ShopController.java index db9e9a5..c922714 100644 --- a/ruoyi-modules/ruoyi-shop/src/main/java/com/ruoyi/shop/controller/console/ShopController.java +++ b/ruoyi-modules/ruoyi-shop/src/main/java/com/ruoyi/shop/controller/console/ShopController.java @@ -1,7 +1,8 @@ package com.ruoyi.shop.controller.console; +import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; -import com.baomidou.mybatisplus.mapper.EntityWrapper; +import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.ruoyi.common.core.constant.CacheConstants; import com.ruoyi.common.core.domain.R; import com.ruoyi.common.core.exception.ServiceException; @@ -15,24 +16,20 @@ import com.ruoyi.shop.service.task.ShopTaskService; import com.ruoyi.system.api.constant.AppErrorConstant; import com.ruoyi.system.api.domain.dto.*; +import com.ruoyi.system.api.domain.poji.config.OneClinkSyncing; import com.ruoyi.system.api.domain.poji.shop.Shop; -import com.ruoyi.system.api.domain.vo.ShopProportionVo; import com.ruoyi.system.api.domain.poji.sys.SysUser; import com.ruoyi.system.api.domain.vo.*; import com.ruoyi.system.api.model.QwH5LoginVo; import com.ruoyi.system.api.model.QwUserDetailDto; import com.ruoyi.system.api.service.RemoteUserService; import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.web.bind.annotation.PostMapping; -import org.springframework.web.bind.annotation.RequestBody; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RestController; +import org.springframework.web.bind.annotation.*; import javax.annotation.Resource; import java.util.List; import java.util.Optional; import java.util.stream.Collectors; -import java.util.stream.Stream; /** * @author jqs34 @@ -174,17 +171,20 @@ @PostMapping("/getShopByUserId") public R<ShopRelUserVo> getShopByUserId(@RequestBody Long userId) { - ShopRelUser shopRelUser = shopRelUserService.getByUserId(userId); + List<ShopRelUser> shopRelUser = shopRelUserService.getByUserId(userId); Optional.ofNullable(shopRelUser).orElseThrow(() -> new ServiceException("未查询到用户关联商户")); ShopRelUserVo shopRelUserVo = new ShopRelUserVo(); - shopRelUserVo.setShopId(shopRelUser.getShopId()); - shopRelUserVo.setUserName(shopRelUser.getUserName()); + ShopRelUser shopRelUser1 = shopRelUser.stream().filter(s -> s.getIsDefault() == 1).collect(Collectors.toList()).get(0); + shopRelUserVo.setShopId(shopRelUser1.getShopId()); + shopRelUserVo.setUserName(shopRelUser1.getUserName()); + Shop shop = shopService.getById(shopRelUser1.getShopId()); + shopRelUserVo.setShopName(shop.getShopName()); + shopRelUserVo.setShopNum(shopRelUser.size()); return R.ok(shopRelUserVo); } - + @PostMapping("/getShopByBelongUserId") - public R<ShopRelUserVo> getShopByBelongUserId(@RequestBody Long userId) - { + public R<ShopRelUserVo> getShopByBelongUserId(@RequestBody Long userId) { List<Shop> shopList = shopService.getShopByBelongUserId(userId); Optional.ofNullable(shopList.get(0)).orElseThrow(() -> new ServiceException("未查询到商户信息")); ShopRelUserVo shopRelUserVo = new ShopRelUserVo(); @@ -451,8 +451,46 @@ * @param shopId * @return */ - @PostMapping("/shop/getFranchiseeIdsBYDealerId") + @PostMapping("/getFranchiseeIdsBYDealerId") List<Shop> getFranchiseeIdsBYDealerId(@RequestBody Long shopId){ return shopService.getFranchiseeIdsBYDealerId(shopId); } + + /** + * 根据shopIds分页查看 + * @param dto + * @return + */ + @PostMapping("/getMgtShopPageVoByShopIds") + Page<MgtOneClinkSyncingShopPageVo> getMgtShopPageVoByShopIds(@RequestBody MGtOneClinkSyncingShopPageDTO dto){ + return shopService.getMgtShopPageVoByShopIds(dto); + } + + /** + * 一键同步商户信息 + */ + @PostMapping("/updateShopByOneClinkSyncing") + R updateShopByOneClinkSyncing(@RequestBody OneClinkSyncing oneClinkSyncing){ + return shopService.updateShopByOneClinkSyncing(oneClinkSyncing); + } + + /** + * 根据shopName模糊查询门店集合 + */ + @PostMapping("/getShopListByShopName") + List<Shop> getShopListByShopName(@RequestBody String content){ + return shopService.getBaseMapper().selectList(new LambdaQueryWrapper<Shop>().like(Shop::getShopName, content)); + } + + + /** + * 获取有跟进任务的用户id + * @param shopId + * @return + */ + @PostMapping("/getMemberIngTotal") + public R<List<Integer>> getMemberIngTotal(@RequestParam("shopId") Long shopId){ + List<Integer> list = memberTaskService.getMemberIngTotal(shopId); + return R.ok(list); + } } -- Gitblit v1.7.1