Commit 35ef105 sstefanov
committed
1 parent 51a7116 commit 35ef105 Copy full SHA for 35ef105
File tree 1 file changed +4
-1
lines changed
1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -126,6 +126,7 @@ class TextSubjectCode(StrEnum):
126
126
LEGAL_INFORMATION = "ABL"
127
127
TAX_INFORMATION = "TXD"
128
128
CUSTOMS_INFORMATION = "CUS"
129
+ TITLE = "AFM"
129
130
130
131
131
132
TEXT_SUBJECT_CODE_NAMES = {
@@ -135,6 +136,7 @@ class TextSubjectCode(StrEnum):
135
136
TextSubjectCode .LEGAL_INFORMATION : N_ ("Legal Information" ),
136
137
TextSubjectCode .TAX_INFORMATION : N_ ("Tax Information" ),
137
138
TextSubjectCode .CUSTOMS_INFORMATION : N_ ("Customs Information" ),
139
+ TextSubjectCode .TITLE : N_ ("Title" ),
138
140
}
139
141
140
142
@@ -143,7 +145,7 @@ class PaymentMeansCode(StrEnum):
143
145
144
146
https://service.unece.org/trade/untdid/d98a/uncl/uncl4461.htm
145
147
"""
146
-
148
+ NOTDEFINED = "1"
147
149
SPECIES = "10"
148
150
CHECK = "20"
149
151
TRANSFER = "30"
@@ -158,6 +160,7 @@ class PaymentMeansCode(StrEnum):
158
160
159
161
160
162
PAYMENT_MEANS_NAMES = {
163
+ PaymentMeansCode .NOTDEFINED : N_ ("Instrument not defined" ),
161
164
PaymentMeansCode .SPECIES : N_ ("Species" ),
162
165
PaymentMeansCode .CHECK : N_ ("Check" ),
163
166
PaymentMeansCode .TRANSFER : N_ ("Transfer" ),
You can’t perform that action at this time.
0 commit comments