brynq-sdk-alight 1.0.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- brynq_sdk_alight/__init__.py +1019 -0
- brynq_sdk_alight/address.py +72 -0
- brynq_sdk_alight/archive/flat_wrapper.py +139 -0
- brynq_sdk_alight/archive/hrxml_generator.py +280 -0
- brynq_sdk_alight/archive/managers.py +132 -0
- brynq_sdk_alight/archive/managers_generic.py +114 -0
- brynq_sdk_alight/archive/managers_old_complex.py +294 -0
- brynq_sdk_alight/archive/managers_simple.py +229 -0
- brynq_sdk_alight/employee.py +81 -0
- brynq_sdk_alight/job.py +89 -0
- brynq_sdk_alight/leave.py +97 -0
- brynq_sdk_alight/pay_elements.py +97 -0
- brynq_sdk_alight/salary.py +89 -0
- brynq_sdk_alight/schemas/__init__.py +26 -0
- brynq_sdk_alight/schemas/absence.py +83 -0
- brynq_sdk_alight/schemas/address.py +113 -0
- brynq_sdk_alight/schemas/employee.py +641 -0
- brynq_sdk_alight/schemas/generated_envelope_xsd_schema/__init__.py +38683 -0
- brynq_sdk_alight/schemas/generated_envelope_xsd_schema/process_pay_serv_emp.py +622264 -0
- brynq_sdk_alight/schemas/generated_xsd_schemas/__init__.py +10965 -0
- brynq_sdk_alight/schemas/generated_xsd_schemas/csec_person.py +39808 -0
- brynq_sdk_alight/schemas/generated_xsd_schemas/hrxml_indicative_data.py +90318 -0
- brynq_sdk_alight/schemas/generated_xsd_schemas/openapplications_bod.py +33869 -0
- brynq_sdk_alight/schemas/generated_xsd_schemas/openapplications_code_list_currency_code_iso_7_04.py +365 -0
- brynq_sdk_alight/schemas/generated_xsd_schemas/openapplications_code_list_language_code_iso_7_04.py +16 -0
- brynq_sdk_alight/schemas/generated_xsd_schemas/openapplications_code_list_mimemedia_type_code_iana_7_04.py +16 -0
- brynq_sdk_alight/schemas/generated_xsd_schemas/openapplications_code_list_unit_code_unece_7_04.py +14 -0
- brynq_sdk_alight/schemas/generated_xsd_schemas/openapplications_code_lists.py +535 -0
- brynq_sdk_alight/schemas/generated_xsd_schemas/openapplications_qualified_data_types.py +84 -0
- brynq_sdk_alight/schemas/generated_xsd_schemas/openapplications_unqualified_data_types.py +1449 -0
- brynq_sdk_alight/schemas/job.py +129 -0
- brynq_sdk_alight/schemas/leave.py +58 -0
- brynq_sdk_alight/schemas/payments.py +207 -0
- brynq_sdk_alight/schemas/salary.py +67 -0
- brynq_sdk_alight/schemas/termination.py +48 -0
- brynq_sdk_alight/schemas/timequota.py +66 -0
- brynq_sdk_alight/schemas/utils.py +452 -0
- brynq_sdk_alight/termination.py +103 -0
- brynq_sdk_alight/time_elements.py +121 -0
- brynq_sdk_alight/time_quotas.py +114 -0
- brynq_sdk_alight-1.0.0.dist-info/METADATA +20 -0
- brynq_sdk_alight-1.0.0.dist-info/RECORD +44 -0
- brynq_sdk_alight-1.0.0.dist-info/WHEEL +5 -0
- brynq_sdk_alight-1.0.0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,535 @@
|
|
|
1
|
+
from enum import Enum
|
|
2
|
+
|
|
3
|
+
__NAMESPACE__ = "http://www.openapplications.org/oagis/9/codelists"
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
class ActionCodeEnumerationType(Enum):
|
|
7
|
+
"""
|
|
8
|
+
The action values that OAGi defines for OAGIS.
|
|
9
|
+
"""
|
|
10
|
+
|
|
11
|
+
ADD = "Add"
|
|
12
|
+
CHANGE = "Change"
|
|
13
|
+
DELETE = "Delete"
|
|
14
|
+
REPLACE = "Replace"
|
|
15
|
+
ACCEPTED = "Accepted"
|
|
16
|
+
MODIFIED = "Modified"
|
|
17
|
+
REJECTED = "Rejected"
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
class ChargeBearerCodeEnumerationType(Enum):
|
|
21
|
+
"""
|
|
22
|
+
:cvar OUR: All transaction charges are to be borne by the debtor.
|
|
23
|
+
:cvar BEN: All transaction charges are to be borne by the creditor.
|
|
24
|
+
:cvar SHA: Transaction charges on the Sender's side are to be borne
|
|
25
|
+
by the ordering customer. Transaction charges on the Receiver's
|
|
26
|
+
side are to be borne by the beneficiary customer.
|
|
27
|
+
"""
|
|
28
|
+
|
|
29
|
+
OUR = "OUR"
|
|
30
|
+
BEN = "BEN"
|
|
31
|
+
SHA = "SHA"
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
class ChequeDeliveryMethodCodeEnumerationType(Enum):
|
|
35
|
+
"""
|
|
36
|
+
:cvar MLDB: Mail to Debitor
|
|
37
|
+
:cvar MLCD: Mail to Creditor
|
|
38
|
+
:cvar MLFA: Mail to Final agent
|
|
39
|
+
:cvar CRDB: Courier to debtor
|
|
40
|
+
:cvar CRCD: Courier to creditor
|
|
41
|
+
:cvar CRFA: Courier to final agent
|
|
42
|
+
:cvar PUDB: Pickup by debtor
|
|
43
|
+
:cvar PUCD: Pickup by creditor
|
|
44
|
+
:cvar PUFA: Pickup by final agent
|
|
45
|
+
:cvar RGDB: Registered mail to debtor
|
|
46
|
+
:cvar RGCD: Registered mail to creditor
|
|
47
|
+
:cvar RGFA: Registered mail to final agent
|
|
48
|
+
"""
|
|
49
|
+
|
|
50
|
+
MLDB = "MLDB"
|
|
51
|
+
MLCD = "MLCD"
|
|
52
|
+
MLFA = "MLFA"
|
|
53
|
+
CRDB = "CRDB"
|
|
54
|
+
CRCD = "CRCD"
|
|
55
|
+
CRFA = "CRFA"
|
|
56
|
+
PUDB = "PUDB"
|
|
57
|
+
PUCD = "PUCD"
|
|
58
|
+
PUFA = "PUFA"
|
|
59
|
+
RGDB = "RGDB"
|
|
60
|
+
RGCD = "RGCD"
|
|
61
|
+
RGFA = "RGFA"
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
class ChequeInstructionCodeEnumerationType(Enum):
|
|
65
|
+
CCHQ = "CCHQ"
|
|
66
|
+
CCCH = "CCCH"
|
|
67
|
+
BCHQ = "BCHQ"
|
|
68
|
+
DFFT = "DFFT"
|
|
69
|
+
ELDR = "ELDR"
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
class ContactLocationCodeEnumerationType(Enum):
|
|
73
|
+
HOME = "Home"
|
|
74
|
+
WORK = "Work"
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
class ControlAssertionEnumerationType(Enum):
|
|
78
|
+
COMPLETENESS = "Completeness"
|
|
79
|
+
EXISTENCE_OR_OCCURANCE = "Existence or Occurance"
|
|
80
|
+
PRESENTATION_AND_DISCLOSURE = "Presentation and Disclosure"
|
|
81
|
+
RIGHTS_AND_OBLIGATIONS = "Rights and Obligations"
|
|
82
|
+
VALUATION_OR_MEASUREMENT = "Valuation or Measurement"
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
class ControlComponentEnumerationType(Enum):
|
|
86
|
+
RISK_ASSESSMENT = "Risk Assessment"
|
|
87
|
+
MONITORING = "Monitoring"
|
|
88
|
+
CONTROL_ENVIRONMENT = "Control Environment"
|
|
89
|
+
CONTROL_ACTIVITIES = "Control Activities"
|
|
90
|
+
INFORMATION_AND_COMMUNICATION = "Information and Communication"
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
class CreditTransferCodeEnumerationType(Enum):
|
|
94
|
+
"""
|
|
95
|
+
:cvar CASH: Cash management transfer.
|
|
96
|
+
:cvar CORT: Payment made in settlement of a trade
|
|
97
|
+
:cvar DIVI: Dividend.
|
|
98
|
+
:cvar GOVT: Government payment.
|
|
99
|
+
:cvar HEDG: Hedging
|
|
100
|
+
:cvar INTC: Intra-company payment
|
|
101
|
+
:cvar INTE: Interest
|
|
102
|
+
:cvar LOAN: Loan. Transfer of loan to borrower.
|
|
103
|
+
:cvar PENS: Pension payment
|
|
104
|
+
:cvar SALA: Salary payment
|
|
105
|
+
:cvar SECU: Securities.
|
|
106
|
+
:cvar SSBE: Social security benefit. Payment made by government to
|
|
107
|
+
support individuals.
|
|
108
|
+
:cvar SUPP: Supplier payment
|
|
109
|
+
:cvar TAXS: Tax payment
|
|
110
|
+
:cvar TRAD: Trade.
|
|
111
|
+
:cvar TREA: Treasury payment
|
|
112
|
+
:cvar VATX: Value added Tax payment
|
|
113
|
+
"""
|
|
114
|
+
|
|
115
|
+
CASH = "CASH"
|
|
116
|
+
CORT = "CORT"
|
|
117
|
+
DIVI = "DIVI"
|
|
118
|
+
GOVT = "GOVT"
|
|
119
|
+
HEDG = "HEDG"
|
|
120
|
+
INTC = "INTC"
|
|
121
|
+
INTE = "INTE"
|
|
122
|
+
LOAN = "LOAN"
|
|
123
|
+
PENS = "PENS"
|
|
124
|
+
SALA = "SALA"
|
|
125
|
+
SECU = "SECU"
|
|
126
|
+
SSBE = "SSBE"
|
|
127
|
+
SUPP = "SUPP"
|
|
128
|
+
TAXS = "TAXS"
|
|
129
|
+
TRAD = "TRAD"
|
|
130
|
+
TREA = "TREA"
|
|
131
|
+
VATX = "VATX"
|
|
132
|
+
|
|
133
|
+
|
|
134
|
+
class DayOfWeekCodeEnumerationType(Enum):
|
|
135
|
+
SUNDAY = "Sunday"
|
|
136
|
+
MONDAY = "Monday"
|
|
137
|
+
TUESDAY = "Tuesday"
|
|
138
|
+
WEDNESDAY = "Wednesday"
|
|
139
|
+
THURSDAY = "Thursday"
|
|
140
|
+
FRIDAY = "Friday"
|
|
141
|
+
SATURDAY = "Saturday"
|
|
142
|
+
|
|
143
|
+
|
|
144
|
+
class DebitCreditCodeEnumerationType(Enum):
|
|
145
|
+
DEBIT = "Debit"
|
|
146
|
+
CREDIT = "Credit"
|
|
147
|
+
|
|
148
|
+
|
|
149
|
+
class EmailFormatCodeEnumerationType(Enum):
|
|
150
|
+
HTML = "HTML"
|
|
151
|
+
RICH_TEXT = "Rich Text"
|
|
152
|
+
PLAIN_TEXT = "Plain Text"
|
|
153
|
+
|
|
154
|
+
|
|
155
|
+
class EngineeringActivityCodeEnumerationType(Enum):
|
|
156
|
+
"""
|
|
157
|
+
:cvar AMENDMENT: An activity to add information to product data
|
|
158
|
+
:cvar ANALYSIS: An activity to determine the behavior of an element
|
|
159
|
+
under certain physical circumstances
|
|
160
|
+
:cvar CANCELLATION: An activity to delete an element from the bill
|
|
161
|
+
of material or to cancel he whole bill of material
|
|
162
|
+
:cvar DELIVERY_CHANGE: An actity to change the delivery schedule of
|
|
163
|
+
an element
|
|
164
|
+
:cvar DESIGN_CHANGE: An activity to change the design of an item or
|
|
165
|
+
an assembly; this might include changes to the geometry or to
|
|
166
|
+
the properties of the object
|
|
167
|
+
:cvar DESIGN: An activity concerning the development of a design of
|
|
168
|
+
an item
|
|
169
|
+
:cvar MOCK_UP_CREATION: An activity to create an experimental model
|
|
170
|
+
or replica of an item
|
|
171
|
+
:cvar PROTOYPE_BUILDING: An activity to manufacture a preliminary
|
|
172
|
+
version of an item
|
|
173
|
+
:cvar RECTIFICATION: An activity to correct the data, documentation
|
|
174
|
+
or structure associated wih an item
|
|
175
|
+
:cvar RESTRUCTURING: An activity to create an new structure or
|
|
176
|
+
position within a bill of material without changin the data
|
|
177
|
+
associated with the items in the bill of material
|
|
178
|
+
:cvar SPARE_PART_CREATION: An activity to design a spare part or to
|
|
179
|
+
classify an item as a spare part
|
|
180
|
+
:cvar STOP_NOTICE: An activity to stop the manufacturing process of
|
|
181
|
+
an item
|
|
182
|
+
:cvar TESTING: An activity to test an item
|
|
183
|
+
"""
|
|
184
|
+
|
|
185
|
+
AMENDMENT = "amendment"
|
|
186
|
+
ANALYSIS = "analysis"
|
|
187
|
+
CANCELLATION = "cancellation"
|
|
188
|
+
DELIVERY_CHANGE = "deliveryChange"
|
|
189
|
+
DESIGN_CHANGE = "designChange"
|
|
190
|
+
DESIGN = "design"
|
|
191
|
+
MOCK_UP_CREATION = "mockUpCreation"
|
|
192
|
+
PROTOYPE_BUILDING = "protoypeBuilding"
|
|
193
|
+
RECTIFICATION = "rectification"
|
|
194
|
+
RESTRUCTURING = "restructuring"
|
|
195
|
+
SPARE_PART_CREATION = "sparePartCreation"
|
|
196
|
+
STOP_NOTICE = "stopNotice"
|
|
197
|
+
TESTING = "testing"
|
|
198
|
+
|
|
199
|
+
|
|
200
|
+
class EngineeringWorkOrderCodeEnumerationType(Enum):
|
|
201
|
+
"""
|
|
202
|
+
Identifies the type of Engineering Work Order.
|
|
203
|
+
|
|
204
|
+
:cvar DESIGN_DEVIATION_PERMIT: An authorization for a deviation from
|
|
205
|
+
the approved design data
|
|
206
|
+
:cvar DESIGN_RELEASE: An auhorization for the design of a product or
|
|
207
|
+
of an item or o create a bill of material
|
|
208
|
+
:cvar MANAGEMENT_RESOLUTION: An authorization by a committee, such
|
|
209
|
+
as the board of directos, to design or change an item
|
|
210
|
+
:cvar MANUFACTURING_RELEASE: An authorization for the manufacturing
|
|
211
|
+
process of a product or of an item
|
|
212
|
+
:cvar PRODUCTION_DEVIATION_PERMIT: An authorization for a deviation
|
|
213
|
+
from the approved manufacturing process
|
|
214
|
+
"""
|
|
215
|
+
|
|
216
|
+
DESIGN_DEVIATION_PERMIT = "designDeviationPermit"
|
|
217
|
+
DESIGN_RELEASE = "designRelease"
|
|
218
|
+
MANAGEMENT_RESOLUTION = "managementResolution"
|
|
219
|
+
MANUFACTURING_RELEASE = "manufacturingRelease"
|
|
220
|
+
PRODUCTION_DEVIATION_PERMIT = "productionDeviationPermit"
|
|
221
|
+
|
|
222
|
+
|
|
223
|
+
class EngineeringWorkRequestCodeEnumerationType(Enum):
|
|
224
|
+
"""
|
|
225
|
+
Identifies the type of Engineering Work Request.
|
|
226
|
+
|
|
227
|
+
:cvar CHANGE_OF_STANDARD: A request to translate a change to a
|
|
228
|
+
standard into action
|
|
229
|
+
:cvar COST_REDUCTION: A request aimed at reducing the engineering
|
|
230
|
+
and manufacturing costs of an item
|
|
231
|
+
:cvar CUSTOMER_REJECTION: A request resulting from a rejection by a
|
|
232
|
+
customer
|
|
233
|
+
:cvar CUSTOMER_REQUEST: A request for an activity that is necessary
|
|
234
|
+
to solve the request of a customer
|
|
235
|
+
:cvar DURABILITY_IMPROVEMENT: A request aimed at extending the life
|
|
236
|
+
time of an item
|
|
237
|
+
:cvar GOVERNMENT_REGULATION: A request resulting from legal
|
|
238
|
+
requirements
|
|
239
|
+
:cvar PROCUREMENT_ALIGNMENT:
|
|
240
|
+
:cvar PRODUCTION_ALIGNMENT:
|
|
241
|
+
:cvar PRODUCTION_RELIEF:
|
|
242
|
+
:cvar PRODUCTION_REQUIREMENT:
|
|
243
|
+
:cvar QUALITY_IMPROVEMENT:
|
|
244
|
+
:cvar SECURIY_REASON:
|
|
245
|
+
:cvar STANDARDIZATION:
|
|
246
|
+
:cvar SUPPLIER_REQUEST:
|
|
247
|
+
:cvar TECHNICAL_IMPROVEMENT:
|
|
248
|
+
:cvar TOOL_IMPROVEMENT:
|
|
249
|
+
"""
|
|
250
|
+
|
|
251
|
+
CHANGE_OF_STANDARD = "ChangeOfStandard"
|
|
252
|
+
COST_REDUCTION = "CostReduction"
|
|
253
|
+
CUSTOMER_REJECTION = "CustomerRejection"
|
|
254
|
+
CUSTOMER_REQUEST = "CustomerRequest"
|
|
255
|
+
DURABILITY_IMPROVEMENT = "DurabilityImprovement"
|
|
256
|
+
GOVERNMENT_REGULATION = "GovernmentRegulation"
|
|
257
|
+
PROCUREMENT_ALIGNMENT = "ProcurementAlignment"
|
|
258
|
+
PRODUCTION_ALIGNMENT = "ProductionAlignment"
|
|
259
|
+
PRODUCTION_RELIEF = "ProductionRelief"
|
|
260
|
+
PRODUCTION_REQUIREMENT = "ProductionRequirement"
|
|
261
|
+
QUALITY_IMPROVEMENT = "QualityImprovement"
|
|
262
|
+
SECURIY_REASON = "SecuriyReason"
|
|
263
|
+
STANDARDIZATION = "Standardization"
|
|
264
|
+
SUPPLIER_REQUEST = "SupplierRequest"
|
|
265
|
+
TECHNICAL_IMPROVEMENT = "TechnicalImprovement"
|
|
266
|
+
TOOL_IMPROVEMENT = "ToolImprovement"
|
|
267
|
+
|
|
268
|
+
|
|
269
|
+
class FinalAgentInstructionCodeEnumerationType(Enum):
|
|
270
|
+
"""
|
|
271
|
+
:cvar CHQB: Pay creditor only by cheque. The creditor's account
|
|
272
|
+
number must not be specified.
|
|
273
|
+
:cvar HOLD: Hold cash for creditor. Creditor will call; pay upon
|
|
274
|
+
identification.
|
|
275
|
+
:cvar PHOB: Please advise/contact beneficiary/claimant by phone.
|
|
276
|
+
:cvar TELB: Please advise/contact beneficiary/claimant by the most
|
|
277
|
+
efficient means of telecommunication.
|
|
278
|
+
"""
|
|
279
|
+
|
|
280
|
+
CHQB = "CHQB"
|
|
281
|
+
HOLD = "HOLD"
|
|
282
|
+
PHOB = "PHOB"
|
|
283
|
+
TELB = "TELB"
|
|
284
|
+
|
|
285
|
+
|
|
286
|
+
class GenderCodeEnumerationType(Enum):
|
|
287
|
+
MALE = "Male"
|
|
288
|
+
FEMALE = "Female"
|
|
289
|
+
UNKNOWN = "Unknown"
|
|
290
|
+
|
|
291
|
+
|
|
292
|
+
class LicenseTypeCodeEnumerationType(Enum):
|
|
293
|
+
IMPORT = "Import"
|
|
294
|
+
EXPORT = "Export"
|
|
295
|
+
|
|
296
|
+
|
|
297
|
+
class MaritalStatusCodeEnumerationType(Enum):
|
|
298
|
+
DIVORCED = "Divorced"
|
|
299
|
+
MARRIED = "Married"
|
|
300
|
+
NEVER_MARRIED = "NeverMarried"
|
|
301
|
+
SEPARATED = "Separated"
|
|
302
|
+
SIGNIFICANT_OTHER = "SignificantOther"
|
|
303
|
+
WIDOWED = "Widowed"
|
|
304
|
+
UNKNOWN = "Unknown"
|
|
305
|
+
|
|
306
|
+
|
|
307
|
+
class MatchCodeEnumerationType(Enum):
|
|
308
|
+
"""Standard List of Invoice Matching Types.
|
|
309
|
+
|
|
310
|
+
2 stands for two way matching (Invoice, PO). 3 stands for three way
|
|
311
|
+
matching (Invoice, PO, Receipt). 4 stands for four way matching
|
|
312
|
+
(Invoice, PO, Receipt, Invoice)
|
|
313
|
+
"""
|
|
314
|
+
|
|
315
|
+
VALUE_2 = "2"
|
|
316
|
+
VALUE_3 = "3"
|
|
317
|
+
VALUE_4 = "4"
|
|
318
|
+
|
|
319
|
+
|
|
320
|
+
class MatchDocumentEnumerationType(Enum):
|
|
321
|
+
INVOICE = "Invoice"
|
|
322
|
+
PURCHASE_ORDER = "Purchase Order"
|
|
323
|
+
RECEIPT = "Receipt"
|
|
324
|
+
INSPECTION = "Inspection"
|
|
325
|
+
|
|
326
|
+
|
|
327
|
+
class PartyCategoryCodeEnumerationType(Enum):
|
|
328
|
+
"""
|
|
329
|
+
This list of Party Categories.
|
|
330
|
+
"""
|
|
331
|
+
|
|
332
|
+
ORGANIZATION = "Organization"
|
|
333
|
+
INDIVIDUAL = "Individual"
|
|
334
|
+
|
|
335
|
+
|
|
336
|
+
class PaymentBasisCodeEnumerationType(Enum):
|
|
337
|
+
"""
|
|
338
|
+
This list is the agreed to sub set of Payment Term Basis Codes from X12 Element
|
|
339
|
+
333.
|
|
340
|
+
"""
|
|
341
|
+
|
|
342
|
+
INVOICE_DATE = "InvoiceDate"
|
|
343
|
+
SHIPPING_DATE = "ShippingDate"
|
|
344
|
+
DELIVERY_DATE = "DeliveryDate"
|
|
345
|
+
PURCHASE_ORDER_DATE = "PurchaseOrderDate"
|
|
346
|
+
RECEIPT_OF_GOODS_DATE = "ReceiptOfGoodsDate"
|
|
347
|
+
ACCEPTANCE_OF_GOODS_DATE = "AcceptanceOfGoodsDate"
|
|
348
|
+
ACCEPTANCE_OF_ORDER_DATE = "AcceptanceOfOrderDate"
|
|
349
|
+
|
|
350
|
+
|
|
351
|
+
class PaymentMethodCodeEnumerationType(Enum):
|
|
352
|
+
CASH = "Cash"
|
|
353
|
+
CHEQUE = "Cheque"
|
|
354
|
+
CREDIT_CARD = "CreditCard"
|
|
355
|
+
DEBIT_CARD = "DebitCard"
|
|
356
|
+
ELECTRONIC_FUNDS_TRANSFER = "ElectronicFundsTransfer"
|
|
357
|
+
PROCUREMENT_CARD = "ProcurementCard"
|
|
358
|
+
BANK_DRAFT = "BankDraft"
|
|
359
|
+
PURCHASE_ORDER = "PurchaseOrder"
|
|
360
|
+
CREDIT_TRANSFER = "CreditTransfer"
|
|
361
|
+
|
|
362
|
+
|
|
363
|
+
class PaymentPurposeCodeEnumerationType(Enum):
|
|
364
|
+
ADVA = "ADVA"
|
|
365
|
+
AGRT = "AGRT"
|
|
366
|
+
ALMY = "ALMY"
|
|
367
|
+
BECH = "BECH"
|
|
368
|
+
BENE = "BENE"
|
|
369
|
+
BONU = "BONU"
|
|
370
|
+
CASH = "CASH"
|
|
371
|
+
CBFF = "CBFF"
|
|
372
|
+
CHAR = "CHAR"
|
|
373
|
+
CMDT = "CMDT"
|
|
374
|
+
COLL = "COLL"
|
|
375
|
+
COMC = "COMC"
|
|
376
|
+
COMM = "COMM"
|
|
377
|
+
CONS = "CONS"
|
|
378
|
+
COST = "COST"
|
|
379
|
+
CPYR = "CPYR"
|
|
380
|
+
DBTC = "DBTC"
|
|
381
|
+
DIVI = "DIVI"
|
|
382
|
+
FREX = "FREX"
|
|
383
|
+
GDDS = "GDDS"
|
|
384
|
+
GOVT = "GOVT"
|
|
385
|
+
HEDG = "HEDG"
|
|
386
|
+
IHRP = "IHRP"
|
|
387
|
+
INSU = "INSU"
|
|
388
|
+
INTC = "INTC"
|
|
389
|
+
INTE = "INTE"
|
|
390
|
+
LICF = "LICF"
|
|
391
|
+
LOAN = "LOAN"
|
|
392
|
+
LOAR = "LOAR"
|
|
393
|
+
NETT = "NETT"
|
|
394
|
+
PAYR = "PAYR"
|
|
395
|
+
PENS = "PENS"
|
|
396
|
+
REFU = "REFU"
|
|
397
|
+
RENT = "RENT"
|
|
398
|
+
ROYA = "ROYA"
|
|
399
|
+
SALA = "SALA"
|
|
400
|
+
SCVE = "SCVE"
|
|
401
|
+
SECU = "SECU"
|
|
402
|
+
SSBE = "SSBE"
|
|
403
|
+
SUBS = "SUBS"
|
|
404
|
+
TAXS = "TAXS"
|
|
405
|
+
TREA = "TREA"
|
|
406
|
+
VATX = "VATX"
|
|
407
|
+
VENP = "VENP"
|
|
408
|
+
|
|
409
|
+
|
|
410
|
+
class PaymentSchemeCodeEnumerationType(Enum):
|
|
411
|
+
"""
|
|
412
|
+
:cvar ACH: Payment has to be executed through an Automated Clearing
|
|
413
|
+
House
|
|
414
|
+
:cvar RTGS: Payment has to be executed through Real time gross
|
|
415
|
+
settlement system.
|
|
416
|
+
:cvar FEDNET: Payment has to be executed through FedNet
|
|
417
|
+
:cvar CHIPS: Payment has to be executed through CHIPS.
|
|
418
|
+
"""
|
|
419
|
+
|
|
420
|
+
ACH = "ACH"
|
|
421
|
+
RTGS = "RTGS"
|
|
422
|
+
FEDNET = "Fednet"
|
|
423
|
+
CHIPS = "CHIPS"
|
|
424
|
+
|
|
425
|
+
|
|
426
|
+
class PaymentTermCodeEnumerationType(Enum):
|
|
427
|
+
NET20 = "Net20"
|
|
428
|
+
NET30 = "Net30"
|
|
429
|
+
NET45 = "Net45"
|
|
430
|
+
NET60 = "Net60"
|
|
431
|
+
VALUE_10_PERCENT30 = "10Percent30"
|
|
432
|
+
|
|
433
|
+
|
|
434
|
+
class ProcessCategoryEnumerationType(Enum):
|
|
435
|
+
"""Processes may be categorized as Routine, Non-Routine or Estimating.
|
|
436
|
+
|
|
437
|
+
An example of a Routine Process is recording costs of goods sold. An
|
|
438
|
+
example of a Non-Routine Process is recording Inventory Adjustments.
|
|
439
|
+
An example of an Estimating Process is determining Inventory
|
|
440
|
+
Obsolsence. Estimating Processes give wide lattitude to move the
|
|
441
|
+
profit figure and attract a high degree of scrutiny. Non Routine
|
|
442
|
+
Processes tend to have fewer controls in place and are exposed to
|
|
443
|
+
more risks.
|
|
444
|
+
"""
|
|
445
|
+
|
|
446
|
+
ROUTINE = "Routine"
|
|
447
|
+
NON_ROUTINE = "Non-Routine"
|
|
448
|
+
ESTIMATING = "Estimating"
|
|
449
|
+
|
|
450
|
+
|
|
451
|
+
class RecurrencePatternCodeEnumerationType(Enum):
|
|
452
|
+
DAILY = "Daily"
|
|
453
|
+
WEEKLY = "Weekly"
|
|
454
|
+
MONTHLY = "Monthly"
|
|
455
|
+
YEARLY = "Yearly"
|
|
456
|
+
|
|
457
|
+
|
|
458
|
+
class RemitLocationMethodCodeEnumerationType(Enum):
|
|
459
|
+
"""
|
|
460
|
+
:cvar FAX: Remittance advice information needs to be faxed.
|
|
461
|
+
:cvar EDI: Remittance advice information needs to be sent through
|
|
462
|
+
Electronic Data Interchange.
|
|
463
|
+
:cvar URI: Remittance advice information needs to be sent to a
|
|
464
|
+
Uniform Resource Identifier (URI). URI is a compact string of
|
|
465
|
+
characters that uniquely identify an abstract or physical
|
|
466
|
+
resource. URI's are the super-set of identifiers, such as URLs,
|
|
467
|
+
email addresses, ftp sites, etc, and as such, provide the syntax
|
|
468
|
+
for all of the identification schemes.
|
|
469
|
+
:cvar EML:
|
|
470
|
+
:cvar PST:
|
|
471
|
+
"""
|
|
472
|
+
|
|
473
|
+
FAX = "FAX"
|
|
474
|
+
EDI = "EDI"
|
|
475
|
+
URI = "URI"
|
|
476
|
+
EML = "EML"
|
|
477
|
+
PST = "PST"
|
|
478
|
+
|
|
479
|
+
|
|
480
|
+
class ResponseActionCodeEnumerationType(Enum):
|
|
481
|
+
"""
|
|
482
|
+
The action values that OAGi defines for OAGIS.
|
|
483
|
+
"""
|
|
484
|
+
|
|
485
|
+
ACCEPTED = "Accepted"
|
|
486
|
+
MODIFIED = "Modified"
|
|
487
|
+
REJECTED = "Rejected"
|
|
488
|
+
|
|
489
|
+
|
|
490
|
+
class ResponseCodeEnumerationType(Enum):
|
|
491
|
+
"""
|
|
492
|
+
The acknowledge values that OAGi defines for OAGIS.
|
|
493
|
+
"""
|
|
494
|
+
|
|
495
|
+
ALWAYS = "Always"
|
|
496
|
+
ON_ERROR = "OnError"
|
|
497
|
+
NEVER = "Never"
|
|
498
|
+
|
|
499
|
+
|
|
500
|
+
class RiskTypeEnumerationType(Enum):
|
|
501
|
+
COMPLIANCE_WITH_APPLICABLE_LAWS_AND_REGULATIONS = (
|
|
502
|
+
"Compliance with applicable laws and regulations"
|
|
503
|
+
)
|
|
504
|
+
EFFECTIVENESS_AND_EFFICIENCY_OF_OPERATIONS = (
|
|
505
|
+
"Effectiveness and efficiency of operations"
|
|
506
|
+
)
|
|
507
|
+
RELIABILITY_OF_FINANCIAL_STATEMENTS = "Reliability of Financial Statements"
|
|
508
|
+
|
|
509
|
+
|
|
510
|
+
class SalesActivityCodeEnumerationType(Enum):
|
|
511
|
+
LITERATURE_REQUEST = "LiteratureRequest"
|
|
512
|
+
NEW_LEAD = "NewLead"
|
|
513
|
+
DEAD_CONTENT = "DeadContent"
|
|
514
|
+
TRAFFIC_REPORT = "TrafficReport"
|
|
515
|
+
SOLD = "Sold"
|
|
516
|
+
EMAIL = "EMail"
|
|
517
|
+
LETTER = "Letter"
|
|
518
|
+
FAX = "Fax"
|
|
519
|
+
|
|
520
|
+
|
|
521
|
+
class SalesTaskCodeEnumerationType(Enum):
|
|
522
|
+
MEETING = "Meeting"
|
|
523
|
+
CONFERENCE_CALL = "ConferenceCall"
|
|
524
|
+
FOLLOW_UP = "FollowUp"
|
|
525
|
+
EMAIL = "EMail"
|
|
526
|
+
|
|
527
|
+
|
|
528
|
+
class SystemEnvironmentCodeEnumerationType(Enum):
|
|
529
|
+
PRODUCTION = "Production"
|
|
530
|
+
TEST = "Test"
|
|
531
|
+
|
|
532
|
+
|
|
533
|
+
class TransferCodeEnumerationType(Enum):
|
|
534
|
+
COMPLETE = "Complete"
|
|
535
|
+
RETURN = "Return"
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
from enum import Enum
|
|
2
|
+
|
|
3
|
+
__NAMESPACE__ = (
|
|
4
|
+
"http://www.openapplications.org/oagis/9/qualifieddatatypes/1.1"
|
|
5
|
+
)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
class DayDateType(Enum):
|
|
9
|
+
"""<ns1:UniqueID
|
|
10
|
+
xmlns:ns1="urn:un:unece:uncefact:documentation:1.1">QDT000018</ns1:UniqueID>
|
|
11
|
+
<ns1:CategoryCode
|
|
12
|
+
xmlns:ns1="urn:un:unece:uncefact:documentation:1.1">QDT</ns1:CategoryCode>
|
|
13
|
+
<ns1:DictionaryEntryName
|
|
14
|
+
xmlns:ns1="urn:un:unece:uncefact:documentation:1.1">Day_ Date.
|
|
15
|
+
|
|
16
|
+
Type</ns1:DictionaryEntryName>
|
|
17
|
+
<ns1:VersionID xmlns:ns1="urn:un:unece:uncefact:documentation:1.1">1.0</ns1:VersionID>
|
|
18
|
+
<ns1:DefinitionText xmlns:ns1="urn:un:unece:uncefact:documentation:1.1"/>
|
|
19
|
+
<ns1:RepresentationTermName xmlns:ns1="urn:un:unece:uncefact:documentation:1.1">Date</ns1:RepresentationTermName>
|
|
20
|
+
<ns1:QualifierTerm xmlns:ns1="urn:un:unece:uncefact:documentation:1.1">Day</ns1:QualifierTerm>
|
|
21
|
+
<ns1:PrimitiveType xmlns:ns1="urn:un:unece:uncefact:documentation:1.1">string</ns1:PrimitiveType>
|
|
22
|
+
"""
|
|
23
|
+
|
|
24
|
+
VALUE_01 = "01"
|
|
25
|
+
VALUE_02 = "02"
|
|
26
|
+
VALUE_03 = "03"
|
|
27
|
+
VALUE_04 = "04"
|
|
28
|
+
VALUE_05 = "05"
|
|
29
|
+
VALUE_06 = "06"
|
|
30
|
+
VALUE_07 = "07"
|
|
31
|
+
VALUE_08 = "08"
|
|
32
|
+
VALUE_09 = "09"
|
|
33
|
+
VALUE_10 = "10"
|
|
34
|
+
VALUE_11 = "11"
|
|
35
|
+
VALUE_12 = "12"
|
|
36
|
+
VALUE_13 = "13"
|
|
37
|
+
VALUE_14 = "14"
|
|
38
|
+
VALUE_15 = "15"
|
|
39
|
+
VALUE_16 = "16"
|
|
40
|
+
VALUE_17 = "17"
|
|
41
|
+
VALUE_18 = "18"
|
|
42
|
+
VALUE_19 = "19"
|
|
43
|
+
VALUE_20 = "20"
|
|
44
|
+
VALUE_21 = "21"
|
|
45
|
+
VALUE_22 = "22"
|
|
46
|
+
VALUE_23 = "23"
|
|
47
|
+
VALUE_24 = "24"
|
|
48
|
+
VALUE_25 = "25"
|
|
49
|
+
VALUE_26 = "26"
|
|
50
|
+
VALUE_27 = "27"
|
|
51
|
+
VALUE_28 = "28"
|
|
52
|
+
VALUE_29 = "29"
|
|
53
|
+
VALUE_30 = "30"
|
|
54
|
+
VALUE_31 = "31"
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
class MonthDateType(Enum):
|
|
58
|
+
"""<ns1:UniqueID
|
|
59
|
+
xmlns:ns1="urn:un:unece:uncefact:documentation:1.1">QDT000017</ns1:UniqueID>
|
|
60
|
+
<ns1:CategoryCode
|
|
61
|
+
xmlns:ns1="urn:un:unece:uncefact:documentation:1.1">QDT</ns1:CategoryCode>
|
|
62
|
+
<ns1:DictionaryEntryName
|
|
63
|
+
xmlns:ns1="urn:un:unece:uncefact:documentation:1.1">Month_ Date.
|
|
64
|
+
|
|
65
|
+
Type</ns1:DictionaryEntryName>
|
|
66
|
+
<ns1:VersionID xmlns:ns1="urn:un:unece:uncefact:documentation:1.1">1.0</ns1:VersionID>
|
|
67
|
+
<ns1:DefinitionText xmlns:ns1="urn:un:unece:uncefact:documentation:1.1"/>
|
|
68
|
+
<ns1:RepresentationTermName xmlns:ns1="urn:un:unece:uncefact:documentation:1.1">Date</ns1:RepresentationTermName>
|
|
69
|
+
<ns1:QualifierTerm xmlns:ns1="urn:un:unece:uncefact:documentation:1.1">Month</ns1:QualifierTerm>
|
|
70
|
+
<ns1:PrimitiveType xmlns:ns1="urn:un:unece:uncefact:documentation:1.1">string</ns1:PrimitiveType>
|
|
71
|
+
"""
|
|
72
|
+
|
|
73
|
+
VALUE_01 = "01"
|
|
74
|
+
VALUE_02 = "02"
|
|
75
|
+
VALUE_03 = "03"
|
|
76
|
+
VALUE_04 = "04"
|
|
77
|
+
VALUE_05 = "05"
|
|
78
|
+
VALUE_06 = "06"
|
|
79
|
+
VALUE_07 = "07"
|
|
80
|
+
VALUE_08 = "08"
|
|
81
|
+
VALUE_09 = "09"
|
|
82
|
+
VALUE_10 = "10"
|
|
83
|
+
VALUE_11 = "11"
|
|
84
|
+
VALUE_12 = "12"
|