From d885635728aab707fc56ec23df194d981b9b26bc Mon Sep 17 00:00:00 2001 From: suzhuhong Date: Thu, 23 Apr 2026 14:35:57 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E8=A3=85=E4=BF=AE=E9=AA=8C=E6=94=B6?= =?UTF-8?q?=E8=B0=83=E6=95=B4=20=E5=8F=AF=E4=BB=A5=E5=85=88=E8=A3=85?= =?UTF-8?q?=E4=BF=AE=E9=AA=8C=E6=94=B6=20=E5=86=8D=E5=8A=A0=E7=9B=9F?= =?UTF-8?q?=E5=95=86=E9=AA=8C=E6=94=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../store/service/impl/DecorationDesignInfoServiceImpl.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/coolstore-partner-service/src/main/java/com/cool/store/service/impl/DecorationDesignInfoServiceImpl.java b/coolstore-partner-service/src/main/java/com/cool/store/service/impl/DecorationDesignInfoServiceImpl.java index 82c65d26e..6b7e5d4ad 100644 --- a/coolstore-partner-service/src/main/java/com/cool/store/service/impl/DecorationDesignInfoServiceImpl.java +++ b/coolstore-partner-service/src/main/java/com/cool/store/service/impl/DecorationDesignInfoServiceImpl.java @@ -245,6 +245,10 @@ public class DecorationDesignInfoServiceImpl implements DecorationDesignInfoServ ShopStageInfoDO shopSubStageInfo = shopStageInfoDAO.getShopSubStageInfo(shopInfoDO.getId(), ShopSubStageEnum.SHOP_STAGE_11); if (shopSubStageInfo.getShopSubStageStatus().equals(ShopSubStageStatusEnum.SHOP_SUB_STAGE_STATUS_111.getShopSubStageStatus())) { shopStageInfoDAO.updateShopStageInfo(shopInfoDO.getId(), ShopSubStageStatusEnum.SHOP_SUB_STAGE_STATUS_112); + } + ShopStageInfoDO shopSubStageInfo12 = shopStageInfoDAO.getShopSubStageInfo(shopInfoDO.getId(), ShopSubStageEnum.SHOP_STAGE_12); + //未开始 可以 到待验收 已经验收了 不需要到待验收 + if (shopSubStageInfo12.getShopSubStageStatus().equals(SHOP_SUB_STAGE_STATUS_00.getShopSubStageStatus())) { shopStageInfoDAO.updateShopStageInfo(shopInfoDO.getId(), ShopSubStageStatusEnum.SHOP_SUB_STAGE_STATUS_121); } return true;