xiaoyong931011
2021-09-28 2eff39a10917e141d2a61ff9f0763c10858cd0b5
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());