BT-Felder

This commit is contained in:
2025-06-27 12:40:32 +02:00
parent b77e7b0563
commit 9ff1d7d0f0
2 changed files with 21 additions and 2 deletions

View File

@@ -70,7 +70,8 @@ namespace ZUGFeRDRESTService
IsRequired = (bool)oRow["IS_REQUIRED"],
IsGrouped = (bool)oRow["IS_GROUPED"],
Specification = oRow["SPECIFICATION"].ToString(),
ItemType = oRow["ITEM_TYPE"] != null ? Convert.ToInt32(oRow["ITEM_TYPE"]) : 0
ItemType = oRow["ITEM_TYPE"] != null ? Convert.ToInt32(oRow["ITEM_TYPE"]) : 0,
EN16931_ID = oRow["EN16931_ID"] != null ? oRow["EN16931_ID"].ToString() : "-"
});
}
} else