fix 意向加盟阶段完成对门店阶段的处理

This commit is contained in:
shuo.wang
2025-01-15 17:40:22 +08:00
parent cf7a5757f9
commit ca46954d70

View File

@@ -407,7 +407,11 @@ public class ShopStageInfoDAO {
Example example = new Example(ShopStageInfoDO.class);
example.createCriteria().andEqualTo("lineId", lineId).andEqualTo("shopSubStage", ShopSubStageEnum.SHOP_STAGE_1.getShopSubStage())
.andEqualTo("shopSubStageStatus", ShopSubStageStatusEnum.SHOP_SUB_STAGE_STATUS_00.getShopSubStageStatus());
return shopStageInfoMapper.selectByExample(example);
List<ShopStageInfoDO> shopStageInfos = shopStageInfoMapper.selectByExample(example);
if (CollectionUtils.isEmpty(shopStageInfos)){
return new ArrayList<>();
}
return shopStageInfos;
}
}