流程数据

This commit is contained in:
苏竹红
2024-04-23 10:38:01 +08:00
parent 73e6bad7d5
commit 0db3a02819

View File

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