UBL updates : adding item id and note

This commit is contained in:
Bharti
2024-12-04 09:09:13 +01:00
parent 7c9f17218a
commit 550f520189

View File

@@ -127,6 +127,12 @@ public class Item implements IZUGFeRDExportableItem {
.flatMap(bordNodes -> bordNodes.getAsString("LineID"))
.ifPresent(this::addReferencedLineID);
itemMap.getAsString("ID")
.ifPresent(this::setId);
itemMap.getAsString("Note")
.ifPresent(this::addNote);