This commit is contained in:
苏竹红
2024-05-11 11:42:55 +08:00
parent 83cc6d74ea
commit 622074e983
2 changed files with 2 additions and 2 deletions

View File

@@ -65,7 +65,7 @@
xfsg_shop_stage_info
where
shop_id = #{shopId} and deleted = 0 and is_terminated = 1
and shop_sub_stage in (60,40,120,130,140,150)
and shop_sub_stage in (60,40,120,140,150)
</select>
<update id="updateShopStageInfo">

View File

@@ -209,7 +209,7 @@ public class PreparationServiceImpl implements PreparationService {
public void whetherToOpenForAcceptance(Long shopId) {
Integer allCompletionCount = shopStageInfoDAO.getAllCompletionCount(shopId);
//如果等于6 表示前面阶段都已经完成 初始化开业验收数据
if (allCompletionCount.equals(CommonConstants.SIX)) {
if (allCompletionCount.equals(CommonConstants.FIVE)) {
OpenAcceptanceInfoDO openAcceptanceInfoDO = new OpenAcceptanceInfoDO();
openAcceptanceInfoDO.setShopId(shopId);
openAcceptanceInfoDO.setAcceptanceStatus(CommonConstants.ZERO);