|
|
@@ -353,7 +353,7 @@ public class WorkbenchManage { |
|
|
|
return "催办成功了" + employees.length + "个人"; |
|
|
|
} |
|
|
|
|
|
|
|
public ProjectTotalViewVO projectTotalView(Long unitId) { |
|
|
|
public ProjectTotalViewVO projectTotalView(Long unitId, Integer projectYear) { |
|
|
|
ProjectTotalViewVO retDetail = new ProjectTotalViewVO(); |
|
|
|
if (unitId == null) { |
|
|
|
unitId = LoginUserUtil.loginUserDetail().getMhUnitId(); |
|
|
@@ -381,7 +381,7 @@ public class WorkbenchManage { |
|
|
|
.map(w -> StrUtil.split(w.getReplaceType(), ",")) |
|
|
|
.flatMap(Collection::stream) |
|
|
|
.collect(Collectors.groupingBy(w -> { |
|
|
|
if (NumberUtil.isNumber(w)) { |
|
|
|
if (!NumberUtil.isNumber(w)) { |
|
|
|
return "其他"; |
|
|
|
} else { |
|
|
|
return GovSystemReplaceTypeEnum.get(Integer.parseInt(w)) |
|
|
|