ITEM_TYPE einlesen
This commit is contained in:
parent
a517f89c30
commit
746c557efa
@ -140,7 +140,8 @@ Public Class Form1
|
||||
.RejectedEmailDirectory = "E:\DocumentProcessing\Output\Rejected_eml",
|
||||
.AttachmentsSubDirectory = "Attachments",
|
||||
.RejectionTemplateId = 1,
|
||||
.MinFileAgeInMinutes = 1
|
||||
.MinFileAgeInMinutes = 1,
|
||||
.AllowPeppolBISBill3x = True
|
||||
}
|
||||
args = LoadPropertyMapFor(args)
|
||||
|
||||
|
||||
@ -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
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user