Skip to content
Snippets Groups Projects
Commit a1f1cc1d authored by Lars Johansson's avatar Lars Johansson
Browse files

Update report

parent 67a56a9c
No related branches found
No related tags found
No related merge requests found
Pipeline #139106 passed
...@@ -414,6 +414,8 @@ public class ReportController { ...@@ -414,6 +414,8 @@ public class ReportController {
for (String discipline : NamingConventionUtil.getDisciplinesPID()) { for (String discipline : NamingConventionUtil.getDisciplinesPID()) {
metricsPIDDiscipline.append(addSpaceUntilSize(discipline, spaceUntilSizeStructure)).append(SPACE); metricsPIDDiscipline.append(addSpaceUntilSize(discipline, spaceUntilSizeStructure)).append(SPACE);
} }
StringBuilder metricsPIDNumeric = new StringBuilder();
metricsPIDNumeric.append(addSpaceUntilSize("", 68)).append("SC-IOC (*)");
// report header // report header
StringBuilder sb = new StringBuilder(); StringBuilder sb = new StringBuilder();
...@@ -470,9 +472,11 @@ public class ReportController { ...@@ -470,9 +472,11 @@ public class ReportController {
sb.append("Device Type " + metricsDevicestructureDeviceType).append(NEWLINE); sb.append("Device Type " + metricsDevicestructureDeviceType).append(NEWLINE);
sb.append(DIVIDER_96).append(NEWLINE); sb.append(DIVIDER_96).append(NEWLINE);
sb.append("5) Device structure - P&ID Disciplines").append(NEWLINE); sb.append("5) Device structure - P&ID Disciplines").append(NEWLINE);
sb.append(" P&ID Numeric (*)").append(NEWLINE);
sb.append(DIVIDER_96).append(NEWLINE); sb.append(DIVIDER_96).append(NEWLINE);
// disciplines p&id, scientific // disciplines p&id, scientific
sb.append(metricsPIDDiscipline.toString()).append(NEWLINE); sb.append(metricsPIDDiscipline.toString()).append(NEWLINE);
sb.append(metricsPIDNumeric.toString()).append(NEWLINE);
sb.append(DIVIDER_128).append(NEWLINE); sb.append(DIVIDER_128).append(NEWLINE);
return sb.toString(); return sb.toString();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment