fix
Helius
2022-07-12 85c0fd73a5286de23ef5e579f4dfadfa63217d8b
src/main/java/com/xcong/farmer/cms/modules/system/service/Impl/ColumnServiceImpl.java
@@ -195,45 +195,48 @@
        }
        String columnCode = adminUpdateColumnDto.getColumnCode();
        columnEntity = ColumnConversion.INSTANCE.updateDtoToEntity(adminUpdateColumnDto);
        ColumnEntity updateEntity = ColumnConversion.INSTANCE.updateDtoToEntity(adminUpdateColumnDto);
        ColumnEntity hasExist = this.baseMapper.selectByCodeAndCompanyId(columnCode, companyId);
        if(ObjectUtil.isNotEmpty(hasExist)){
            return Result.fail("栏目编码不能重复");
        if (!columnEntity.getColumnCode().equals(columnCode)) {
            ColumnEntity hasExist = this.baseMapper.selectByCodeAndCompanyId(columnCode, companyId);
            if (ObjectUtil.isNotEmpty(hasExist)) {
                return Result.fail("栏目编码不能重复");
            }
        }
        Long parentId = adminUpdateColumnDto.getParentId();
        if(ObjectUtil.isEmpty(parentId)){
            updateEntity.setParentId(ColumnEntity.PARENTID_DEFAULT);
            updateEntity.setPath("/" + updateEntity.getColumnCode());
        }else{
            updateEntity.setParentId(parentId);
            ColumnEntity parent = this.baseMapper.selectById(parentId);
            updateEntity.setPath(parent.getPath() + "/" + updateEntity.getColumnCode());
        }
        // 若编码进行了修改且该栏目为父栏目,则需要同步修改子栏目的path。
        if (!columnEntity.getColumnCode().equals(columnCode) && "-1".equals(columnEntity.getColumnCode())) {
            columnEntity.setBeforeColumnCode(columnCode);
        if (!columnEntity.getColumnCode().equals(columnCode)) {
            if ("-1".equals(columnEntity.getBeforeColumnCode())) {
                updateEntity.setBeforeColumnCode(columnEntity.getColumnCode());
            }
            if (adminUpdateColumnDto.getParentId() == 0L) {
            if (updateEntity.getParentId() == 0L) {
                List<ColumnEntity> childColumn = this.baseMapper.selectColumnByParentId(columnEntity.getId(), companyId, 2);
                if (CollUtil.isNotEmpty(childColumn)) {
                    for (ColumnEntity child : childColumn) {
                        child.setPath(columnEntity.getPath() + "/" + child.getColumnCode());
                        child.setPath(updateEntity.getPath() + "/" + child.getColumnCode());
                        this.baseMapper.updateById(child);
                    }
                }
            }
        }
        columnEntity.setColumnCode(columnCode);
        Long parentId = adminUpdateColumnDto.getParentId();
        // 栏目修改时,需判断父级ID及栏目编码的修改。若栏目父级ID修改了,则需记录原父级ID,在发布时,需连同原父级栏目同时编译
        if (!columnEntity.getParentId().equals(parentId) && columnEntity.getParentId() == -1) {
            columnEntity.setBeforeParentId(columnEntity.getParentId());
        if (!columnEntity.getParentId().equals(updateEntity.getParentId()) && columnEntity.getBeforeParentId() == -1) {
            updateEntity.setBeforeParentId(columnEntity.getParentId());
        }
        if(ObjectUtil.isEmpty(parentId)){
            columnEntity.setParentId(ColumnEntity.PARENTID_DEFAULT);
            columnEntity.setPath("/" + columnEntity.getColumnCode());
        }else{
            columnEntity.setParentId(parentId);
            ColumnEntity parent = this.baseMapper.selectById(parentId);
            columnEntity.setPath(parent.getPath() + "/" + columnEntity.getColumnCode());
        }
        this.baseMapper.updateById(columnEntity);
        this.baseMapper.updateById(updateEntity);
        return Result.ok("更新成功");
    }