待缴纳

This commit is contained in:
苏竹红
2024-04-23 10:58:08 +08:00
parent 0db3a02819
commit ed964f4e5f
2 changed files with 2 additions and 1 deletions

View File

@@ -90,6 +90,7 @@ public enum ShopSubStageStatusEnum {
//首批订货清单 //首批订货清单
SHOP_SUB_STAGE_STATUS_150(ShopSubStageEnum.SHOP_STAGE_15, 1500, "待上传", Boolean.FALSE), SHOP_SUB_STAGE_STATUS_150(ShopSubStageEnum.SHOP_STAGE_15, 1500, "待上传", Boolean.FALSE),
SHOP_SUB_STAGE_STATUS_152(ShopSubStageEnum.SHOP_STAGE_15, 1505, "待缴纳", Boolean.FALSE),
SHOP_SUB_STAGE_STATUS_151(ShopSubStageEnum.SHOP_STAGE_15, 1510, "已完成", Boolean.TRUE), SHOP_SUB_STAGE_STATUS_151(ShopSubStageEnum.SHOP_STAGE_15, 1510, "已完成", Boolean.TRUE),

View File

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