| | |
| | | executor.execute(() -> { |
| | | cmsCoreService.columnProcess(map, columnEntity.getListTemplate()); |
| | | if (columnEntity.getParentId() != 0L) { |
| | | map.put("id", columnEntity.getParentId()); |
| | | ColumnEntity parentColumn = columnMapper.selectById(columnEntity.getParentId()); |
| | | map.put("id", parentColumn.getId()); |
| | | cmsCoreService.columnProcess(map, parentColumn.getListTemplate()); |
| | | } |
| | | |
| | | releaseIndex(companyId); |
| | |
| | | |
| | | if (article.getType() == 1) { |
| | | map.put("id", article.getId()); |
| | | cmsCoreService.articleProcess(map, columnEntity.getArticleTemplate(), columnEntity.getPath()); |
| | | cmsCoreService.articleProcess(map, column.getArticleTemplate(), column.getPath()); |
| | | } |
| | | } |
| | | } |