no message

This commit is contained in:
Ioannis Kalyvas 2018-10-26 10:11:03 +03:00
parent 889a2ae262
commit ab8367cd56
2 changed files with 3 additions and 2 deletions

View File

@ -27,6 +27,7 @@ import eu.eudat.logic.services.helpers.FileStorageService;
import java.io.IOException;
import java.text.ParseException;
import java.util.Comparator;
import java.util.List;
import java.util.Map;
import java.util.UUID;
@ -91,7 +92,7 @@ public class ProjectManager {
projects.add(project);
}
projects.sort(Comparator.comparing(x-> x.getLabel()));
return projects;
}

View File

@ -141,7 +141,7 @@ public class WordBuilder {
number.setVal(BigInteger.valueOf(indent));
}
createFields(compositeField.getFields(), mainDocumentPart, 3, createListing, visibilityRuleService);
if (compositeField.getHasCommentField() && !createListing) {
if (compositeField.getHasCommentField() && compositeField.getCommentFieldValue() != null && !compositeField.getCommentFieldValue().isEmpty() && !createListing) {
XWPFParagraph paragraph = addParagraphContent("Comment: " + compositeField.getCommentFieldValue(), mainDocumentPart, ParagraphStyle.COMMENT, numId);
CTDecimalNumber number = paragraph.getCTP().getPPr().getNumPr().addNewIlvl();
number.setVal(BigInteger.valueOf(indent));