fix
Helius
2021-09-28 51d5eb2e8befedab840527ec3cb916b8021daf68
src/main/java/cc/mrbird/febs/mall/service/impl/AgentServiceImpl.java
@@ -64,16 +64,16 @@
            DataDictionaryCustom nextLevel = dataDictionaryCustomMapper.selectNextAgentLevelInfo(parent.getLevel());
            if (nextLevel == null) {
                log.info("当前层级无下一级:{}", parent.getLevel());
                return;
                continue;
            }
            AgentInfo agentInfo = JSONObject.parseObject(nextLevel.getValue(), AgentInfo.class);
            if (!orderCntFinish(parent, agentInfo)) {
                return;
                continue;
            }
            if (!agentCntFinish(parent, agentInfo)) {
                return;
                continue;
            }
            parent.setLevel(nextLevel.getCode());