ITEM_TYPE einlesen
This commit is contained in:
@@ -5,6 +5,8 @@ using Microsoft.Extensions.Configuration;
|
||||
using System.Collections.Generic;
|
||||
using System.Data;
|
||||
using DigitalData.Modules.Logging;
|
||||
using DigitalData.Modules.Interfaces.Peppol.BISBilling30CreditNote;
|
||||
using System;
|
||||
|
||||
namespace ZUGFeRDRESTService
|
||||
{
|
||||
@@ -68,7 +70,8 @@ namespace ZUGFeRDRESTService
|
||||
GroupScope = oRow["GROUP_SCOPE"].ToString(),
|
||||
IsRequired = (bool)oRow["IS_REQUIRED"],
|
||||
IsGrouped = (bool)oRow["IS_GROUPED"],
|
||||
Specification = oRow["SPECIFICATION"].ToString()
|
||||
Specification = oRow["SPECIFICATION"].ToString(),
|
||||
ItemType = oRow["ITEM_TYPE"] != null ? Convert.ToInt32(oRow["ITEM_TYPE"]) : 0
|
||||
});
|
||||
}
|
||||
} else
|
||||
|
||||
Reference in New Issue
Block a user