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:
parent
09b52f441b
commit
3046b7d203
@ -2872,7 +2872,7 @@ Namespace ZUGFeRD.Version2_1_1
|
|||||||
"0")>
|
"0")>
|
||||||
Partial Public Class TradePartyType
|
Partial Public Class TradePartyType
|
||||||
|
|
||||||
Private idField() As IDType
|
Private idField As IDType
|
||||||
|
|
||||||
Private globalIDField() As IDType
|
Private globalIDField() As IDType
|
||||||
|
|
||||||
@ -2891,13 +2891,14 @@ Namespace ZUGFeRD.Version2_1_1
|
|||||||
Private specifiedTaxRegistrationField() As TaxRegistrationType
|
Private specifiedTaxRegistrationField() As TaxRegistrationType
|
||||||
|
|
||||||
'''<remarks/>
|
'''<remarks/>
|
||||||
|
''' 26.06.2024 MP - Wegen Unterschied zu Schema 2.0 den Type von IDType() auf IDType geändert
|
||||||
<System.Xml.Serialization.XmlElementAttribute("ID")>
|
<System.Xml.Serialization.XmlElementAttribute("ID")>
|
||||||
Public Property ID() As IDType()
|
Public Property ID() As IDType
|
||||||
Get
|
Get
|
||||||
Return Me.idField
|
Return Me.idField
|
||||||
End Get
|
End Get
|
||||||
Set
|
Set
|
||||||
Me.idField = value
|
Me.idField = Value
|
||||||
End Set
|
End Set
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
|
|||||||
@ -1378,7 +1378,7 @@ Namespace ZUGFeRD.Version2_2_FacturX
|
|||||||
"0")>
|
"0")>
|
||||||
Partial Public Class TradePartyType
|
Partial Public Class TradePartyType
|
||||||
|
|
||||||
Private idField() As IDType
|
Private idField As IDType
|
||||||
|
|
||||||
Private globalIDField() As IDType
|
Private globalIDField() As IDType
|
||||||
|
|
||||||
@ -1399,13 +1399,14 @@ Namespace ZUGFeRD.Version2_2_FacturX
|
|||||||
Private specifiedTaxRegistrationField() As TaxRegistrationType
|
Private specifiedTaxRegistrationField() As TaxRegistrationType
|
||||||
|
|
||||||
'''<remarks/>
|
'''<remarks/>
|
||||||
|
''' 26.06.2024 MP - Wegen Unterschied zu Schema 2.0 den Type von IDType() auf IDType geändert
|
||||||
<System.Xml.Serialization.XmlElementAttribute("ID")>
|
<System.Xml.Serialization.XmlElementAttribute("ID")>
|
||||||
Public Property ID() As IDType()
|
Public Property ID() As IDType
|
||||||
Get
|
Get
|
||||||
Return Me.idField
|
Return Me.idField
|
||||||
End Get
|
End Get
|
||||||
Set
|
Set
|
||||||
Me.idField = value
|
Me.idField = Value
|
||||||
End Set
|
End Set
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user