From be0301e67768fb183df7e29f411a7e54dbf15c40 Mon Sep 17 00:00:00 2001 From: jiangping <jp@doumee.com> Date: 星期三, 08 五月 2024 10:37:58 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/1.0.1' into 1.0.1 --- server/service/src/main/java/com/doumee/service/business/impl/SolutionsServiceImpl.java | 13 +++++++++---- 1 files changed, 9 insertions(+), 4 deletions(-) diff --git a/server/service/src/main/java/com/doumee/service/business/impl/SolutionsServiceImpl.java b/server/service/src/main/java/com/doumee/service/business/impl/SolutionsServiceImpl.java index 99e04df..84e20a6 100644 --- a/server/service/src/main/java/com/doumee/service/business/impl/SolutionsServiceImpl.java +++ b/server/service/src/main/java/com/doumee/service/business/impl/SolutionsServiceImpl.java @@ -71,7 +71,11 @@ )>Constants.ZERO){ throw new BusinessException(ResponseStatus.NOT_ALLOWED.getCode(),"淇濋櫓鏂规鍚嶇О宸插瓨鍦�"); } - + solutions.setCanAdd(Constants.formatIntegerNum(solutions.getCanAdd())); + solutions.setCanReduce(Constants.formatIntegerNum(solutions.getCanReduce())); + solutions.setCanChangeUnit(Constants.formatIntegerNum(solutions.getCanChangeUnit())); + solutions.setAddValidDays(Constants.formatIntegerNum(solutions.getAddValidDays())); + solutions.setDelValidDays(Constants.formatIntegerNum(solutions.getDelValidDays())); solutions.setIsdeleted(Constants.ZERO); solutions.setCreator(user.getId()); solutions.setCreateDate(new Date()); @@ -370,12 +374,13 @@ if(solutions.getDataType() == null){ solutions.setDataType(Constants.TWO); } + QueryWrapper<Solutions> wrapper = new QueryWrapper<>(solutions); if(Constants.equalsObject(user.getType(),Constants.TWO)){ //濡傛灉鏄垹闄� - solutions.setShopId(user.getCompanyId()); +// wrapper.lambda().exists("select c.id from company_solution c left join solutions d on c.solution_id=d.id where c.isdeleted=0 and d.base_id=solutions.base_id and c.shop_id="+user.getCompanyId());//璁剧疆鏃犳晥璁块棶 + wrapper.apply("((solutions.type=0 and exists(select cs.id from company_solution cs left join solutions s on cs.solution_id=s.id where cs.isdeleted=0 and s.base_id=solutions.base_id and cs.shop_id="+user.getCompanyId()+")) or (" + + "solutions.type=1 and solutions.shop_id="+user.getCompanyId()+"))") ; } - QueryWrapper<Solutions> wrapper = new QueryWrapper<>(solutions); - return solutionsMapper.selectList(wrapper); } -- Gitblit v1.9.3