流程手册排序字段修改

This commit is contained in:
zhal 2022-11-07 19:41:58 +08:00
parent 64e0b8fc81
commit b7b1b6cae5
2 changed files with 2 additions and 2 deletions

View File

@ -494,7 +494,7 @@ public class Report1Gener {
List<DesignerShapeRelationModel> relationList = DesignerShapeRelationCache.getListByAttrId(repositoryModel.getId(), "", "support_files");
relationList.sort(Comparator.comparing(DesignerShapeRelationModel::getRelationShapeText));
relationList.sort(Comparator.comparing(DesignerShapeRelationModel::getShapeText));
int index = 0;
for (DesignerShapeRelationModel relation : relationList) {
@ -516,7 +516,7 @@ public class Report1Gener {
JSONArray relevant_flies = new JSONArray(); //组织职责Table
List<DesignerShapeRelationModel> relationList2 = DesignerShapeRelationCache.getListByAttrId(repositoryModel.getId(), "", "R_relevant_flies");
relationList2.sort(Comparator.comparing(DesignerShapeRelationModel::getRelationShapeText));
relationList2.sort(Comparator.comparing(DesignerShapeRelationModel::getShapeText));
int count = 0;
for (DesignerShapeRelationModel relation : relationList2) {