Merge branch 'cc_20250106_v2.4' into 'master'

fix 门店状态已完成

See merge request hangzhou/java/custom_zxjp!43
This commit is contained in:
苏竹红
2025-02-13 12:23:52 +00:00
2 changed files with 4 additions and 4 deletions

View File

@@ -402,9 +402,9 @@
select select
shop_id as shopId, shop_id as shopId,
max(plan_complete_time) as planCompleteTime, max(plan_complete_time) as planCompleteTime,
count(1) as totalColumn, count(1)-1 as totalColumn,
sum(if(is_terminated = 1 , 1, 0)) as completionColumn sum(if(is_terminated = 1 and shop_sub_stage!=85, 1, 0)) as completionColumn
from xfsg_shop_stage_info where from xfsg_shop_stage_info where shop_stage = 2 and
shop_id = #{shopId} shop_id = #{shopId}

View File

@@ -969,7 +969,7 @@ public class PointServiceImpl implements PointService {
// } // }
} }
shopStageInfoDAO.updateShopStageAndAuditInfo(shopId, subStageStatus, auditId); shopStageInfoDAO.updateShopStageAndAuditInfo(shopId, subStageStatus, auditId);
preparationService.updateShopStatus(request.getShopId());
return CommonConstants.ONE; return CommonConstants.ONE;
} }