Anpassung der Schema-Klassen 2.1.1 und 2.2, so dass die Liefantennummer und die Kundennummer, wie in Schema 2.0 gelesen werden.

This commit is contained in:
PitzM 2024-06-26 11:26:14 +02:00
parent 09b52f441b
commit 3046b7d203
2 changed files with 8 additions and 6 deletions

View File

@ -2872,7 +2872,7 @@ Namespace ZUGFeRD.Version2_1_1
"0")>
Partial Public Class TradePartyType
Private idField() As IDType
Private idField As IDType
Private globalIDField() As IDType
@ -2891,13 +2891,14 @@ Namespace ZUGFeRD.Version2_1_1
Private specifiedTaxRegistrationField() As TaxRegistrationType
'''<remarks/>
''' 26.06.2024 MP - Wegen Unterschied zu Schema 2.0 den Type von IDType() auf IDType geändert
<System.Xml.Serialization.XmlElementAttribute("ID")>
Public Property ID() As IDType()
Public Property ID() As IDType
Get
Return Me.idField
End Get
Set
Me.idField = value
Me.idField = Value
End Set
End Property

View File

@ -1378,7 +1378,7 @@ Namespace ZUGFeRD.Version2_2_FacturX
"0")>
Partial Public Class TradePartyType
Private idField() As IDType
Private idField As IDType
Private globalIDField() As IDType
@ -1399,13 +1399,14 @@ Namespace ZUGFeRD.Version2_2_FacturX
Private specifiedTaxRegistrationField() As TaxRegistrationType
'''<remarks/>
''' 26.06.2024 MP - Wegen Unterschied zu Schema 2.0 den Type von IDType() auf IDType geändert
<System.Xml.Serialization.XmlElementAttribute("ID")>
Public Property ID() As IDType()
Public Property ID() As IDType
Get
Return Me.idField
End Get
Set
Me.idField = value
Me.idField = Value
End Set
End Property