RED-5473: try to get list of types
This commit is contained in:
parent
925480ae41
commit
7f972556f4
@ -8,6 +8,7 @@ import java.util.HashMap;
|
||||
import java.util.LinkedList;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
import java.util.stream.Collectors;
|
||||
|
||||
import org.apache.poi.ss.usermodel.Sheet;
|
||||
import org.apache.poi.xssf.streaming.SXSSFWorkbook;
|
||||
@ -327,6 +328,10 @@ public class ReportGenerationService {
|
||||
typeList.addAll(dictionaryClient.getAllTypesForDossier(dossierId, false));
|
||||
typeList.addAll(dictionaryClient.getAllTypesForDossierTemplate(dossierClient.getDossierById(dossierId, true, false).getDossierTemplateId(), false));
|
||||
|
||||
// TODO: remove 2 lines
|
||||
var a = typeList.stream().map(Type::getType).collect(Collectors.toList());
|
||||
log.info("typeList: {}", a);
|
||||
|
||||
Map<String, String> mapOfEntityDisplayName = new HashMap<>();
|
||||
|
||||
for (var type : typeList) {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user