fix:SHOP_SUB_STAGE_STATUS_91

This commit is contained in:
suzhuhong
2026-04-23 14:10:15 +08:00
parent 4cafc87961
commit 0fbbc860f6

View File

@@ -786,7 +786,8 @@ public class DecorationServiceImpl implements DecorationService {
decoration.setPartnerAcceptanceSignatures(JSONObject.toJSONString(threeAcceptanceDTO));
decorationDesignInfoDAO.updateByPrimaryKeySelective(decoration);
//更新装修设计状态
List<ShopSubStageStatusEnum> list = Arrays.asList(SHOP_SUB_STAGE_STATUS_91);
List<ShopSubStageStatusEnum> list = new ArrayList<>();
list.add(SHOP_SUB_STAGE_STATUS_91);
//装修阶段可以提前开始 如果已经进场的 阶段已经流程 不需要初始化为待提交
ShopStageInfoDO shopStageInfo = shopStageInfoDAO.getByShopIdAndSubStage(request.getShopId(), ShopSubStageEnum.SHOP_STAGE_11.getShopSubStage());