b1sl-python 0.1.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.
Files changed (579) hide show
  1. b1sl/__init__.py +5 -0
  2. b1sl/b1sl/__init__.py +56 -0
  3. b1sl/b1sl/_types.py +28 -0
  4. b1sl/b1sl/adapter.py +40 -0
  5. b1sl/b1sl/adapter_protocol.py +28 -0
  6. b1sl/b1sl/async_client.py +268 -0
  7. b1sl/b1sl/async_rest_adapter.py +347 -0
  8. b1sl/b1sl/base_adapter.py +394 -0
  9. b1sl/b1sl/client.py +112 -0
  10. b1sl/b1sl/config.py +138 -0
  11. b1sl/b1sl/config_manager.py +77 -0
  12. b1sl/b1sl/contrib/__init__.py +14 -0
  13. b1sl/b1sl/contrib/django/__init__.py +13 -0
  14. b1sl/b1sl/contrib/django/middleware/__init__.py +27 -0
  15. b1sl/b1sl/contrib/django/middleware/base.py +89 -0
  16. b1sl/b1sl/contrib/django/middleware/odata_decode_middleware.py +20 -0
  17. b1sl/b1sl/contrib/django/middleware/odata_transform_url_middleware.py +20 -0
  18. b1sl/b1sl/entities/__init__.py +2209 -0
  19. b1sl/b1sl/environment.py +36 -0
  20. b1sl/b1sl/exceptions/exceptions.py +142 -0
  21. b1sl/b1sl/fields/__init__.py +2020 -0
  22. b1sl/b1sl/fields/_generated/__init__.py +0 -0
  23. b1sl/b1sl/fields/_generated/complex_types.py +6926 -0
  24. b1sl/b1sl/fields/_generated/entities/__init__.py +0 -0
  25. b1sl/b1sl/fields/_generated/entities/businesspartners.py +544 -0
  26. b1sl/b1sl/fields/_generated/entities/finance.py +451 -0
  27. b1sl/b1sl/fields/_generated/entities/general.py +4587 -0
  28. b1sl/b1sl/fields/_generated/entities/inventory.py +761 -0
  29. b1sl/b1sl/fields/_generated/entities/production.py +256 -0
  30. b1sl/b1sl/fields/_generated/entities/purchasing.py +53 -0
  31. b1sl/b1sl/fields/_generated/entities/sales.py +244 -0
  32. b1sl/b1sl/logging_utils.py +119 -0
  33. b1sl/b1sl/models/__init__.py +13 -0
  34. b1sl/b1sl/models/_generated/__init__.py +0 -0
  35. b1sl/b1sl/models/_generated/_types.py +5 -0
  36. b1sl/b1sl/models/_generated/complex_types.py +6929 -0
  37. b1sl/b1sl/models/_generated/entities/__init__.py +581 -0
  38. b1sl/b1sl/models/_generated/entities/businesspartners.py +565 -0
  39. b1sl/b1sl/models/_generated/entities/finance.py +472 -0
  40. b1sl/b1sl/models/_generated/entities/general.py +4831 -0
  41. b1sl/b1sl/models/_generated/entities/inventory.py +786 -0
  42. b1sl/b1sl/models/_generated/entities/production.py +272 -0
  43. b1sl/b1sl/models/_generated/entities/purchasing.py +64 -0
  44. b1sl/b1sl/models/_generated/entities/sales.py +263 -0
  45. b1sl/b1sl/models/_generated/enums.py +3501 -0
  46. b1sl/b1sl/models/_generated/resources/__init__.py +0 -0
  47. b1sl/b1sl/models/_overrides/inventory.py +24 -0
  48. b1sl/b1sl/models/base.py +209 -0
  49. b1sl/b1sl/models/odata_query_model.py +50 -0
  50. b1sl/b1sl/models/paginated_result.py +85 -0
  51. b1sl/b1sl/models/result.py +17 -0
  52. b1sl/b1sl/resources/__init__.py +11 -0
  53. b1sl/b1sl/resources/_generated/__init__.py +0 -0
  54. b1sl/b1sl/resources/_generated/account_category.py +15 -0
  55. b1sl/b1sl/resources/_generated/account_category_service.py +21 -0
  56. b1sl/b1sl/resources/_generated/account_segmentation_categories.py +15 -0
  57. b1sl/b1sl/resources/_generated/account_segmentations.py +15 -0
  58. b1sl/b1sl/resources/_generated/accounts_service.py +33 -0
  59. b1sl/b1sl/resources/_generated/accrual_types.py +15 -0
  60. b1sl/b1sl/resources/_generated/accrual_types_service.py +21 -0
  61. b1sl/b1sl/resources/_generated/activities.py +15 -0
  62. b1sl/b1sl/resources/_generated/activities_service.py +109 -0
  63. b1sl/b1sl/resources/_generated/activity_locations.py +15 -0
  64. b1sl/b1sl/resources/_generated/activity_recipient_lists.py +15 -0
  65. b1sl/b1sl/resources/_generated/activity_recipient_lists_service.py +21 -0
  66. b1sl/b1sl/resources/_generated/activity_statuses.py +15 -0
  67. b1sl/b1sl/resources/_generated/activity_types.py +15 -0
  68. b1sl/b1sl/resources/_generated/additional_expenses.py +15 -0
  69. b1sl/b1sl/resources/_generated/address_service.py +38 -0
  70. b1sl/b1sl/resources/_generated/alert_managements.py +16 -0
  71. b1sl/b1sl/resources/_generated/alternate_cat_num.py +15 -0
  72. b1sl/b1sl/resources/_generated/alternative_items_service.py +113 -0
  73. b1sl/b1sl/resources/_generated/approval_requests.py +15 -0
  74. b1sl/b1sl/resources/_generated/approval_requests_service.py +33 -0
  75. b1sl/b1sl/resources/_generated/approval_stages.py +15 -0
  76. b1sl/b1sl/resources/_generated/approval_stages_service.py +21 -0
  77. b1sl/b1sl/resources/_generated/approval_templates.py +15 -0
  78. b1sl/b1sl/resources/_generated/approval_templates_service.py +21 -0
  79. b1sl/b1sl/resources/_generated/asset_capitalization.py +15 -0
  80. b1sl/b1sl/resources/_generated/asset_capitalization_credit_memo.py +15 -0
  81. b1sl/b1sl/resources/_generated/asset_capitalization_credit_memo_service.py +37 -0
  82. b1sl/b1sl/resources/_generated/asset_capitalization_service.py +37 -0
  83. b1sl/b1sl/resources/_generated/asset_classes.py +15 -0
  84. b1sl/b1sl/resources/_generated/asset_classes_service.py +21 -0
  85. b1sl/b1sl/resources/_generated/asset_depreciation_groups.py +15 -0
  86. b1sl/b1sl/resources/_generated/asset_depreciation_groups_service.py +21 -0
  87. b1sl/b1sl/resources/_generated/asset_groups.py +15 -0
  88. b1sl/b1sl/resources/_generated/asset_groups_service.py +21 -0
  89. b1sl/b1sl/resources/_generated/asset_manual_depreciation.py +15 -0
  90. b1sl/b1sl/resources/_generated/asset_manual_depreciation_service.py +37 -0
  91. b1sl/b1sl/resources/_generated/asset_retirement.py +15 -0
  92. b1sl/b1sl/resources/_generated/asset_retirement_service.py +37 -0
  93. b1sl/b1sl/resources/_generated/asset_transfer.py +15 -0
  94. b1sl/b1sl/resources/_generated/asset_transfer_service.py +37 -0
  95. b1sl/b1sl/resources/_generated/attachments2.py +15 -0
  96. b1sl/b1sl/resources/_generated/attribute_groups.py +15 -0
  97. b1sl/b1sl/resources/_generated/attribute_groups_service.py +21 -0
  98. b1sl/b1sl/resources/_generated/bank_charges_allocation_codes.py +15 -0
  99. b1sl/b1sl/resources/_generated/bank_charges_allocation_codes_service.py +21 -0
  100. b1sl/b1sl/resources/_generated/bank_pages.py +15 -0
  101. b1sl/b1sl/resources/_generated/bank_statements.py +15 -0
  102. b1sl/b1sl/resources/_generated/bank_statements_service.py +32 -0
  103. b1sl/b1sl/resources/_generated/banks.py +15 -0
  104. b1sl/b1sl/resources/_generated/bar_codes.py +15 -0
  105. b1sl/b1sl/resources/_generated/bar_codes_service.py +21 -0
  106. b1sl/b1sl/resources/_generated/batch_number_details.py +15 -0
  107. b1sl/b1sl/resources/_generated/bill_of_exchange_transactions.py +15 -0
  108. b1sl/b1sl/resources/_generated/bin_location_attributes.py +15 -0
  109. b1sl/b1sl/resources/_generated/bin_location_attributes_service.py +21 -0
  110. b1sl/b1sl/resources/_generated/bin_location_fields.py +15 -0
  111. b1sl/b1sl/resources/_generated/bin_location_fields_service.py +21 -0
  112. b1sl/b1sl/resources/_generated/bin_locations.py +15 -0
  113. b1sl/b1sl/resources/_generated/bin_locations_service.py +21 -0
  114. b1sl/b1sl/resources/_generated/blanket_agreements.py +15 -0
  115. b1sl/b1sl/resources/_generated/blanket_agreements_service.py +21 -0
  116. b1sl/b1sl/resources/_generated/boe_document_types.py +15 -0
  117. b1sl/b1sl/resources/_generated/boe_document_types_service.py +21 -0
  118. b1sl/b1sl/resources/_generated/boe_instructions.py +15 -0
  119. b1sl/b1sl/resources/_generated/boe_instructions_service.py +21 -0
  120. b1sl/b1sl/resources/_generated/boe_lines_service.py +30 -0
  121. b1sl/b1sl/resources/_generated/boe_portfolios.py +15 -0
  122. b1sl/b1sl/resources/_generated/boe_portfolios_service.py +21 -0
  123. b1sl/b1sl/resources/_generated/bp_fiscal_registry_id.py +15 -0
  124. b1sl/b1sl/resources/_generated/bp_opening_balance_service.py +41 -0
  125. b1sl/b1sl/resources/_generated/bp_priorities.py +15 -0
  126. b1sl/b1sl/resources/_generated/branches.py +15 -0
  127. b1sl/b1sl/resources/_generated/branches_service.py +21 -0
  128. b1sl/b1sl/resources/_generated/brazil_beverage_indexers.py +15 -0
  129. b1sl/b1sl/resources/_generated/brazil_beverage_indexers_service.py +21 -0
  130. b1sl/b1sl/resources/_generated/brazil_fuel_indexers.py +15 -0
  131. b1sl/b1sl/resources/_generated/brazil_fuel_indexers_service.py +21 -0
  132. b1sl/b1sl/resources/_generated/brazil_multi_indexers.py +15 -0
  133. b1sl/b1sl/resources/_generated/brazil_numeric_indexers.py +15 -0
  134. b1sl/b1sl/resources/_generated/brazil_string_indexers.py +15 -0
  135. b1sl/b1sl/resources/_generated/budget_distributions.py +15 -0
  136. b1sl/b1sl/resources/_generated/budget_scenarios.py +15 -0
  137. b1sl/b1sl/resources/_generated/budgets.py +15 -0
  138. b1sl/b1sl/resources/_generated/business_partner_groups.py +15 -0
  139. b1sl/b1sl/resources/_generated/business_partner_properties.py +15 -0
  140. b1sl/b1sl/resources/_generated/business_partner_properties_service.py +21 -0
  141. b1sl/b1sl/resources/_generated/business_partners.py +15 -0
  142. b1sl/b1sl/resources/_generated/business_partners_service.py +47 -0
  143. b1sl/b1sl/resources/_generated/business_places.py +15 -0
  144. b1sl/b1sl/resources/_generated/campaign_response_type.py +15 -0
  145. b1sl/b1sl/resources/_generated/campaign_response_type_service.py +21 -0
  146. b1sl/b1sl/resources/_generated/campaigns.py +15 -0
  147. b1sl/b1sl/resources/_generated/campaigns_service.py +21 -0
  148. b1sl/b1sl/resources/_generated/cash_discounts.py +15 -0
  149. b1sl/b1sl/resources/_generated/cash_discounts_service.py +21 -0
  150. b1sl/b1sl/resources/_generated/cash_flow_line_items.py +15 -0
  151. b1sl/b1sl/resources/_generated/cash_flow_line_items_service.py +21 -0
  152. b1sl/b1sl/resources/_generated/certificate_series.py +15 -0
  153. b1sl/b1sl/resources/_generated/certificate_series_service.py +21 -0
  154. b1sl/b1sl/resources/_generated/change_logs_service.py +51 -0
  155. b1sl/b1sl/resources/_generated/chart_of_accounts.py +15 -0
  156. b1sl/b1sl/resources/_generated/check_lines_service.py +38 -0
  157. b1sl/b1sl/resources/_generated/checksfor_payment.py +15 -0
  158. b1sl/b1sl/resources/_generated/choose_from_list.py +15 -0
  159. b1sl/b1sl/resources/_generated/client_mixin.py +3920 -0
  160. b1sl/b1sl/resources/_generated/closing_date_procedure.py +15 -0
  161. b1sl/b1sl/resources/_generated/cockpits.py +15 -0
  162. b1sl/b1sl/resources/_generated/cockpits_service.py +46 -0
  163. b1sl/b1sl/resources/_generated/commission_groups.py +15 -0
  164. b1sl/b1sl/resources/_generated/company_service.py +410 -0
  165. b1sl/b1sl/resources/_generated/contacts.py +15 -0
  166. b1sl/b1sl/resources/_generated/contract_templates.py +15 -0
  167. b1sl/b1sl/resources/_generated/correction_invoice.py +15 -0
  168. b1sl/b1sl/resources/_generated/correction_invoice_reversal.py +15 -0
  169. b1sl/b1sl/resources/_generated/correction_invoice_reversal_service.py +65 -0
  170. b1sl/b1sl/resources/_generated/correction_invoice_service.py +78 -0
  171. b1sl/b1sl/resources/_generated/correction_purchase_invoice.py +15 -0
  172. b1sl/b1sl/resources/_generated/correction_purchase_invoice_reversal.py +15 -0
  173. b1sl/b1sl/resources/_generated/correction_purchase_invoice_reversal_service.py +65 -0
  174. b1sl/b1sl/resources/_generated/correction_purchase_invoice_service.py +78 -0
  175. b1sl/b1sl/resources/_generated/cost_center_types.py +15 -0
  176. b1sl/b1sl/resources/_generated/cost_center_types_service.py +21 -0
  177. b1sl/b1sl/resources/_generated/cost_element_service.py +21 -0
  178. b1sl/b1sl/resources/_generated/cost_elements.py +15 -0
  179. b1sl/b1sl/resources/_generated/counties.py +15 -0
  180. b1sl/b1sl/resources/_generated/counties_service.py +21 -0
  181. b1sl/b1sl/resources/_generated/countries.py +15 -0
  182. b1sl/b1sl/resources/_generated/countries_service.py +21 -0
  183. b1sl/b1sl/resources/_generated/credit_card_payments.py +15 -0
  184. b1sl/b1sl/resources/_generated/credit_cards.py +15 -0
  185. b1sl/b1sl/resources/_generated/credit_lines_service.py +38 -0
  186. b1sl/b1sl/resources/_generated/credit_notes.py +15 -0
  187. b1sl/b1sl/resources/_generated/credit_notes_service.py +100 -0
  188. b1sl/b1sl/resources/_generated/credit_payment_methods.py +15 -0
  189. b1sl/b1sl/resources/_generated/currencies.py +15 -0
  190. b1sl/b1sl/resources/_generated/customer_equipment_cards.py +15 -0
  191. b1sl/b1sl/resources/_generated/customs_declaration.py +15 -0
  192. b1sl/b1sl/resources/_generated/customs_groups.py +15 -0
  193. b1sl/b1sl/resources/_generated/cycle_count_determinations.py +15 -0
  194. b1sl/b1sl/resources/_generated/cycle_count_determinations_service.py +21 -0
  195. b1sl/b1sl/resources/_generated/dashboard_packages_service.py +28 -0
  196. b1sl/b1sl/resources/_generated/deductible_tax_service.py +21 -0
  197. b1sl/b1sl/resources/_generated/deductible_taxes.py +15 -0
  198. b1sl/b1sl/resources/_generated/deduction_tax_groups.py +15 -0
  199. b1sl/b1sl/resources/_generated/deduction_tax_hierarchies.py +15 -0
  200. b1sl/b1sl/resources/_generated/deduction_tax_sub_groups.py +15 -0
  201. b1sl/b1sl/resources/_generated/deduction_tax_sub_groups_service.py +21 -0
  202. b1sl/b1sl/resources/_generated/delivery_notes.py +15 -0
  203. b1sl/b1sl/resources/_generated/delivery_notes_service.py +85 -0
  204. b1sl/b1sl/resources/_generated/departments.py +15 -0
  205. b1sl/b1sl/resources/_generated/departments_service.py +21 -0
  206. b1sl/b1sl/resources/_generated/deposits.py +15 -0
  207. b1sl/b1sl/resources/_generated/deposits_service.py +53 -0
  208. b1sl/b1sl/resources/_generated/depreciation_areas.py +15 -0
  209. b1sl/b1sl/resources/_generated/depreciation_areas_service.py +21 -0
  210. b1sl/b1sl/resources/_generated/depreciation_type_pools.py +15 -0
  211. b1sl/b1sl/resources/_generated/depreciation_type_pools_service.py +21 -0
  212. b1sl/b1sl/resources/_generated/depreciation_types.py +15 -0
  213. b1sl/b1sl/resources/_generated/depreciation_types_service.py +21 -0
  214. b1sl/b1sl/resources/_generated/determination_criterias.py +15 -0
  215. b1sl/b1sl/resources/_generated/determination_criterias_service.py +21 -0
  216. b1sl/b1sl/resources/_generated/dimensions.py +15 -0
  217. b1sl/b1sl/resources/_generated/dimensions_service.py +21 -0
  218. b1sl/b1sl/resources/_generated/distribution_rules.py +15 -0
  219. b1sl/b1sl/resources/_generated/distribution_rules_service.py +21 -0
  220. b1sl/b1sl/resources/_generated/dnf_code_setup.py +15 -0
  221. b1sl/b1sl/resources/_generated/dnf_code_setup_service.py +21 -0
  222. b1sl/b1sl/resources/_generated/down_payments.py +15 -0
  223. b1sl/b1sl/resources/_generated/down_payments_service.py +68 -0
  224. b1sl/b1sl/resources/_generated/drafts.py +15 -0
  225. b1sl/b1sl/resources/_generated/drafts_service.py +86 -0
  226. b1sl/b1sl/resources/_generated/dunning_letters.py +15 -0
  227. b1sl/b1sl/resources/_generated/dunning_terms.py +15 -0
  228. b1sl/b1sl/resources/_generated/dunning_terms_service.py +21 -0
  229. b1sl/b1sl/resources/_generated/dynamic_system_strings.py +15 -0
  230. b1sl/b1sl/resources/_generated/electronic_communication_action_service.py +122 -0
  231. b1sl/b1sl/resources/_generated/electronic_communication_actions_service.py +119 -0
  232. b1sl/b1sl/resources/_generated/electronic_file_formats.py +15 -0
  233. b1sl/b1sl/resources/_generated/electronic_file_formats_service.py +21 -0
  234. b1sl/b1sl/resources/_generated/email_groups.py +15 -0
  235. b1sl/b1sl/resources/_generated/email_groups_service.py +21 -0
  236. b1sl/b1sl/resources/_generated/employee_id_type.py +15 -0
  237. b1sl/b1sl/resources/_generated/employee_id_type_service.py +21 -0
  238. b1sl/b1sl/resources/_generated/employee_position.py +15 -0
  239. b1sl/b1sl/resources/_generated/employee_position_service.py +21 -0
  240. b1sl/b1sl/resources/_generated/employee_roles_setup.py +15 -0
  241. b1sl/b1sl/resources/_generated/employee_roles_setup_service.py +21 -0
  242. b1sl/b1sl/resources/_generated/employee_status.py +15 -0
  243. b1sl/b1sl/resources/_generated/employee_status_service.py +21 -0
  244. b1sl/b1sl/resources/_generated/employee_transfers.py +15 -0
  245. b1sl/b1sl/resources/_generated/employee_transfers_service.py +21 -0
  246. b1sl/b1sl/resources/_generated/employees_info.py +15 -0
  247. b1sl/b1sl/resources/_generated/employment_category_service.py +21 -0
  248. b1sl/b1sl/resources/_generated/employment_categorys.py +15 -0
  249. b1sl/b1sl/resources/_generated/enhanced_discount_groups.py +15 -0
  250. b1sl/b1sl/resources/_generated/enhanced_discount_groups_service.py +21 -0
  251. b1sl/b1sl/resources/_generated/exceptional_event_service.py +21 -0
  252. b1sl/b1sl/resources/_generated/exceptional_events.py +15 -0
  253. b1sl/b1sl/resources/_generated/extended_translations.py +15 -0
  254. b1sl/b1sl/resources/_generated/extended_translations_service.py +21 -0
  255. b1sl/b1sl/resources/_generated/external_calls_service.py +54 -0
  256. b1sl/b1sl/resources/_generated/external_reconciliations_service.py +104 -0
  257. b1sl/b1sl/resources/_generated/fa_account_determinations.py +15 -0
  258. b1sl/b1sl/resources/_generated/fa_account_determinations_service.py +21 -0
  259. b1sl/b1sl/resources/_generated/factoring_indicators.py +15 -0
  260. b1sl/b1sl/resources/_generated/financial_years.py +15 -0
  261. b1sl/b1sl/resources/_generated/financial_years_service.py +21 -0
  262. b1sl/b1sl/resources/_generated/fiscal_printer.py +15 -0
  263. b1sl/b1sl/resources/_generated/fiscal_printer_service.py +21 -0
  264. b1sl/b1sl/resources/_generated/fixed_asset_items_service.py +55 -0
  265. b1sl/b1sl/resources/_generated/form_preferences.py +15 -0
  266. b1sl/b1sl/resources/_generated/formatted_searches.py +15 -0
  267. b1sl/b1sl/resources/_generated/forms1099.py +15 -0
  268. b1sl/b1sl/resources/_generated/gl_account_advanced_rules.py +15 -0
  269. b1sl/b1sl/resources/_generated/gl_account_advanced_rules_service.py +21 -0
  270. b1sl/b1sl/resources/_generated/goods_return_request.py +15 -0
  271. b1sl/b1sl/resources/_generated/goods_return_request_service.py +69 -0
  272. b1sl/b1sl/resources/_generated/gov_pay_codes.py +15 -0
  273. b1sl/b1sl/resources/_generated/gov_pay_codes_service.py +21 -0
  274. b1sl/b1sl/resources/_generated/gt_is_service.py +28 -0
  275. b1sl/b1sl/resources/_generated/holidays.py +15 -0
  276. b1sl/b1sl/resources/_generated/house_bank_accounts.py +15 -0
  277. b1sl/b1sl/resources/_generated/incoming_payments.py +15 -0
  278. b1sl/b1sl/resources/_generated/india_hsn.py +15 -0
  279. b1sl/b1sl/resources/_generated/india_hsn_service.py +21 -0
  280. b1sl/b1sl/resources/_generated/industries.py +15 -0
  281. b1sl/b1sl/resources/_generated/integration_packages_configure.py +15 -0
  282. b1sl/b1sl/resources/_generated/integration_packages_configure_service.py +21 -0
  283. b1sl/b1sl/resources/_generated/internal_reconciliations.py +15 -0
  284. b1sl/b1sl/resources/_generated/internal_reconciliations_service.py +51 -0
  285. b1sl/b1sl/resources/_generated/intrastat_configuration.py +15 -0
  286. b1sl/b1sl/resources/_generated/intrastat_configuration_service.py +21 -0
  287. b1sl/b1sl/resources/_generated/inventory_countings.py +15 -0
  288. b1sl/b1sl/resources/_generated/inventory_countings_service.py +21 -0
  289. b1sl/b1sl/resources/_generated/inventory_cycles.py +15 -0
  290. b1sl/b1sl/resources/_generated/inventory_gen_entries.py +15 -0
  291. b1sl/b1sl/resources/_generated/inventory_gen_entry_service.py +67 -0
  292. b1sl/b1sl/resources/_generated/inventory_gen_exit_service.py +66 -0
  293. b1sl/b1sl/resources/_generated/inventory_gen_exits.py +15 -0
  294. b1sl/b1sl/resources/_generated/inventory_opening_balances.py +15 -0
  295. b1sl/b1sl/resources/_generated/inventory_opening_balances_service.py +21 -0
  296. b1sl/b1sl/resources/_generated/inventory_postings.py +15 -0
  297. b1sl/b1sl/resources/_generated/inventory_postings_service.py +34 -0
  298. b1sl/b1sl/resources/_generated/inventory_transfer_requests.py +15 -0
  299. b1sl/b1sl/resources/_generated/inventory_transfer_requests_service.py +43 -0
  300. b1sl/b1sl/resources/_generated/invoices.py +15 -0
  301. b1sl/b1sl/resources/_generated/invoices_service.py +100 -0
  302. b1sl/b1sl/resources/_generated/item_groups.py +15 -0
  303. b1sl/b1sl/resources/_generated/item_properties.py +15 -0
  304. b1sl/b1sl/resources/_generated/items.py +15 -0
  305. b1sl/b1sl/resources/_generated/journal_entries.py +15 -0
  306. b1sl/b1sl/resources/_generated/journal_entry_document_type_service.py +21 -0
  307. b1sl/b1sl/resources/_generated/journal_entry_document_types.py +15 -0
  308. b1sl/b1sl/resources/_generated/journal_vouchers_service.py +45 -0
  309. b1sl/b1sl/resources/_generated/knowledge_base_solutions.py +15 -0
  310. b1sl/b1sl/resources/_generated/kp_is.py +15 -0
  311. b1sl/b1sl/resources/_generated/kp_is_service.py +21 -0
  312. b1sl/b1sl/resources/_generated/landed_costs.py +15 -0
  313. b1sl/b1sl/resources/_generated/landed_costs_codes.py +15 -0
  314. b1sl/b1sl/resources/_generated/landed_costs_service.py +21 -0
  315. b1sl/b1sl/resources/_generated/legal_data.py +15 -0
  316. b1sl/b1sl/resources/_generated/length_measures.py +15 -0
  317. b1sl/b1sl/resources/_generated/license_service.py +21 -0
  318. b1sl/b1sl/resources/_generated/local_era.py +15 -0
  319. b1sl/b1sl/resources/_generated/manufacturers.py +15 -0
  320. b1sl/b1sl/resources/_generated/material_groups.py +15 -0
  321. b1sl/b1sl/resources/_generated/material_groups_service.py +21 -0
  322. b1sl/b1sl/resources/_generated/material_revaluation.py +15 -0
  323. b1sl/b1sl/resources/_generated/material_revaluation_fifo_service.py +33 -0
  324. b1sl/b1sl/resources/_generated/material_revaluation_snb_service.py +33 -0
  325. b1sl/b1sl/resources/_generated/messages.py +15 -0
  326. b1sl/b1sl/resources/_generated/messages_service.py +35 -0
  327. b1sl/b1sl/resources/_generated/mobile_add_on_setting.py +15 -0
  328. b1sl/b1sl/resources/_generated/mobile_add_on_setting_service.py +21 -0
  329. b1sl/b1sl/resources/_generated/mobile_app_service.py +240 -0
  330. b1sl/b1sl/resources/_generated/multi_language_translations.py +15 -0
  331. b1sl/b1sl/resources/_generated/nature_of_assessees.py +15 -0
  332. b1sl/b1sl/resources/_generated/nature_of_assessees_service.py +21 -0
  333. b1sl/b1sl/resources/_generated/ncm_codes_setup.py +15 -0
  334. b1sl/b1sl/resources/_generated/ncm_codes_setup_service.py +21 -0
  335. b1sl/b1sl/resources/_generated/nf_models.py +15 -0
  336. b1sl/b1sl/resources/_generated/nf_models_service.py +21 -0
  337. b1sl/b1sl/resources/_generated/nf_tax_categories.py +15 -0
  338. b1sl/b1sl/resources/_generated/nf_tax_categories_service.py +21 -0
  339. b1sl/b1sl/resources/_generated/nota_fiscal_cfop.py +15 -0
  340. b1sl/b1sl/resources/_generated/nota_fiscal_cst.py +15 -0
  341. b1sl/b1sl/resources/_generated/nota_fiscal_usage.py +15 -0
  342. b1sl/b1sl/resources/_generated/occurrence_codes.py +15 -0
  343. b1sl/b1sl/resources/_generated/occurrence_codes_service.py +21 -0
  344. b1sl/b1sl/resources/_generated/orders.py +15 -0
  345. b1sl/b1sl/resources/_generated/orders_service.py +94 -0
  346. b1sl/b1sl/resources/_generated/packages_types.py +15 -0
  347. b1sl/b1sl/resources/_generated/partners_setups.py +15 -0
  348. b1sl/b1sl/resources/_generated/partners_setups_service.py +21 -0
  349. b1sl/b1sl/resources/_generated/payment_blocks.py +15 -0
  350. b1sl/b1sl/resources/_generated/payment_blocks_service.py +21 -0
  351. b1sl/b1sl/resources/_generated/payment_calculation_service.py +37 -0
  352. b1sl/b1sl/resources/_generated/payment_drafts.py +15 -0
  353. b1sl/b1sl/resources/_generated/payment_reason_code_service.py +21 -0
  354. b1sl/b1sl/resources/_generated/payment_reason_codes.py +15 -0
  355. b1sl/b1sl/resources/_generated/payment_run_export.py +15 -0
  356. b1sl/b1sl/resources/_generated/payment_terms_types.py +15 -0
  357. b1sl/b1sl/resources/_generated/payment_terms_types_service.py +28 -0
  358. b1sl/b1sl/resources/_generated/pick_lists.py +15 -0
  359. b1sl/b1sl/resources/_generated/pick_lists_service.py +78 -0
  360. b1sl/b1sl/resources/_generated/pos_daily_summary.py +15 -0
  361. b1sl/b1sl/resources/_generated/predefined_texts.py +15 -0
  362. b1sl/b1sl/resources/_generated/predefined_texts_service.py +21 -0
  363. b1sl/b1sl/resources/_generated/price_lists.py +15 -0
  364. b1sl/b1sl/resources/_generated/product_trees.py +15 -0
  365. b1sl/b1sl/resources/_generated/production_orders.py +15 -0
  366. b1sl/b1sl/resources/_generated/profit_centers.py +15 -0
  367. b1sl/b1sl/resources/_generated/profit_centers_service.py +21 -0
  368. b1sl/b1sl/resources/_generated/project_management_configuration_service.py +333 -0
  369. b1sl/b1sl/resources/_generated/project_management_service.py +104 -0
  370. b1sl/b1sl/resources/_generated/project_management_time_sheet.py +15 -0
  371. b1sl/b1sl/resources/_generated/project_managements.py +15 -0
  372. b1sl/b1sl/resources/_generated/projects.py +15 -0
  373. b1sl/b1sl/resources/_generated/projects_service.py +21 -0
  374. b1sl/b1sl/resources/_generated/purchase_credit_notes.py +15 -0
  375. b1sl/b1sl/resources/_generated/purchase_credit_notes_service.py +85 -0
  376. b1sl/b1sl/resources/_generated/purchase_delivery_notes.py +15 -0
  377. b1sl/b1sl/resources/_generated/purchase_delivery_notes_service.py +85 -0
  378. b1sl/b1sl/resources/_generated/purchase_down_payments.py +15 -0
  379. b1sl/b1sl/resources/_generated/purchase_down_payments_service.py +70 -0
  380. b1sl/b1sl/resources/_generated/purchase_invoices.py +15 -0
  381. b1sl/b1sl/resources/_generated/purchase_invoices_service.py +85 -0
  382. b1sl/b1sl/resources/_generated/purchase_orders.py +15 -0
  383. b1sl/b1sl/resources/_generated/purchase_orders_service.py +69 -0
  384. b1sl/b1sl/resources/_generated/purchase_quotations.py +15 -0
  385. b1sl/b1sl/resources/_generated/purchase_quotations_service.py +70 -0
  386. b1sl/b1sl/resources/_generated/purchase_request_service.py +68 -0
  387. b1sl/b1sl/resources/_generated/purchase_requests.py +15 -0
  388. b1sl/b1sl/resources/_generated/purchase_returns.py +15 -0
  389. b1sl/b1sl/resources/_generated/purchase_returns_service.py +85 -0
  390. b1sl/b1sl/resources/_generated/purchase_tax_invoices.py +15 -0
  391. b1sl/b1sl/resources/_generated/qr_code_service.py +33 -0
  392. b1sl/b1sl/resources/_generated/query_auth_groups.py +15 -0
  393. b1sl/b1sl/resources/_generated/query_categories.py +15 -0
  394. b1sl/b1sl/resources/_generated/query_service.py +29 -0
  395. b1sl/b1sl/resources/_generated/queue.py +15 -0
  396. b1sl/b1sl/resources/_generated/quotations.py +15 -0
  397. b1sl/b1sl/resources/_generated/quotations_service.py +69 -0
  398. b1sl/b1sl/resources/_generated/recurring_transaction_service.py +67 -0
  399. b1sl/b1sl/resources/_generated/relationships.py +15 -0
  400. b1sl/b1sl/resources/_generated/report_filter.py +15 -0
  401. b1sl/b1sl/resources/_generated/report_filter_service.py +30 -0
  402. b1sl/b1sl/resources/_generated/report_layouts_service.py +237 -0
  403. b1sl/b1sl/resources/_generated/report_types.py +15 -0
  404. b1sl/b1sl/resources/_generated/report_types_service.py +21 -0
  405. b1sl/b1sl/resources/_generated/resource_capacities.py +15 -0
  406. b1sl/b1sl/resources/_generated/resource_capacities_service.py +34 -0
  407. b1sl/b1sl/resources/_generated/resource_groups.py +15 -0
  408. b1sl/b1sl/resources/_generated/resource_groups_service.py +21 -0
  409. b1sl/b1sl/resources/_generated/resource_properties.py +15 -0
  410. b1sl/b1sl/resources/_generated/resource_properties_service.py +21 -0
  411. b1sl/b1sl/resources/_generated/resources.py +15 -0
  412. b1sl/b1sl/resources/_generated/resources_service.py +21 -0
  413. b1sl/b1sl/resources/_generated/retorno_codes.py +15 -0
  414. b1sl/b1sl/resources/_generated/retorno_codes_service.py +21 -0
  415. b1sl/b1sl/resources/_generated/return_request.py +15 -0
  416. b1sl/b1sl/resources/_generated/return_request_service.py +69 -0
  417. b1sl/b1sl/resources/_generated/returns.py +15 -0
  418. b1sl/b1sl/resources/_generated/returns_service.py +85 -0
  419. b1sl/b1sl/resources/_generated/route_stages.py +15 -0
  420. b1sl/b1sl/resources/_generated/route_stages_service.py +21 -0
  421. b1sl/b1sl/resources/_generated/sales_forecast.py +15 -0
  422. b1sl/b1sl/resources/_generated/sales_opportunities.py +15 -0
  423. b1sl/b1sl/resources/_generated/sales_opportunity_competitors_setup.py +15 -0
  424. b1sl/b1sl/resources/_generated/sales_opportunity_competitors_setup_service.py +21 -0
  425. b1sl/b1sl/resources/_generated/sales_opportunity_interests_setup.py +15 -0
  426. b1sl/b1sl/resources/_generated/sales_opportunity_interests_setup_service.py +21 -0
  427. b1sl/b1sl/resources/_generated/sales_opportunity_reasons_setup.py +15 -0
  428. b1sl/b1sl/resources/_generated/sales_opportunity_reasons_setup_service.py +21 -0
  429. b1sl/b1sl/resources/_generated/sales_opportunity_sources_setup.py +15 -0
  430. b1sl/b1sl/resources/_generated/sales_opportunity_sources_setup_service.py +21 -0
  431. b1sl/b1sl/resources/_generated/sales_persons.py +15 -0
  432. b1sl/b1sl/resources/_generated/sales_stages.py +15 -0
  433. b1sl/b1sl/resources/_generated/sales_tax_authorities.py +15 -0
  434. b1sl/b1sl/resources/_generated/sales_tax_authorities_types.py +15 -0
  435. b1sl/b1sl/resources/_generated/sales_tax_codes.py +15 -0
  436. b1sl/b1sl/resources/_generated/sales_tax_invoices.py +15 -0
  437. b1sl/b1sl/resources/_generated/sbo_bob_service.py +89 -0
  438. b1sl/b1sl/resources/_generated/sections.py +15 -0
  439. b1sl/b1sl/resources/_generated/sections_service.py +21 -0
  440. b1sl/b1sl/resources/_generated/self_credit_memo_service.py +69 -0
  441. b1sl/b1sl/resources/_generated/self_credit_memos.py +15 -0
  442. b1sl/b1sl/resources/_generated/self_invoice_service.py +69 -0
  443. b1sl/b1sl/resources/_generated/self_invoices.py +15 -0
  444. b1sl/b1sl/resources/_generated/serial_number_details.py +15 -0
  445. b1sl/b1sl/resources/_generated/series_service.py +305 -0
  446. b1sl/b1sl/resources/_generated/service_call_origins.py +15 -0
  447. b1sl/b1sl/resources/_generated/service_call_origins_service.py +21 -0
  448. b1sl/b1sl/resources/_generated/service_call_problem_sub_types.py +15 -0
  449. b1sl/b1sl/resources/_generated/service_call_problem_sub_types_service.py +21 -0
  450. b1sl/b1sl/resources/_generated/service_call_problem_types.py +15 -0
  451. b1sl/b1sl/resources/_generated/service_call_problem_types_service.py +21 -0
  452. b1sl/b1sl/resources/_generated/service_call_solution_status.py +15 -0
  453. b1sl/b1sl/resources/_generated/service_call_solution_status_service.py +21 -0
  454. b1sl/b1sl/resources/_generated/service_call_status.py +15 -0
  455. b1sl/b1sl/resources/_generated/service_call_status_service.py +21 -0
  456. b1sl/b1sl/resources/_generated/service_call_types.py +15 -0
  457. b1sl/b1sl/resources/_generated/service_call_types_service.py +21 -0
  458. b1sl/b1sl/resources/_generated/service_calls.py +15 -0
  459. b1sl/b1sl/resources/_generated/service_contracts.py +15 -0
  460. b1sl/b1sl/resources/_generated/service_groups.py +15 -0
  461. b1sl/b1sl/resources/_generated/service_groups_service.py +21 -0
  462. b1sl/b1sl/resources/_generated/service_tax_posting_service.py +36 -0
  463. b1sl/b1sl/resources/_generated/shipping_types.py +15 -0
  464. b1sl/b1sl/resources/_generated/short_link_mappings_service.py +26 -0
  465. b1sl/b1sl/resources/_generated/special_prices.py +15 -0
  466. b1sl/b1sl/resources/_generated/states.py +15 -0
  467. b1sl/b1sl/resources/_generated/states_service.py +21 -0
  468. b1sl/b1sl/resources/_generated/stock_takings.py +15 -0
  469. b1sl/b1sl/resources/_generated/stock_transfer_draft_service.py +34 -0
  470. b1sl/b1sl/resources/_generated/stock_transfer_drafts.py +15 -0
  471. b1sl/b1sl/resources/_generated/stock_transfer_service.py +43 -0
  472. b1sl/b1sl/resources/_generated/stock_transfers.py +15 -0
  473. b1sl/b1sl/resources/_generated/target_groups.py +15 -0
  474. b1sl/b1sl/resources/_generated/target_groups_service.py +21 -0
  475. b1sl/b1sl/resources/_generated/tax_code_determinations.py +15 -0
  476. b1sl/b1sl/resources/_generated/tax_code_determinations_service.py +21 -0
  477. b1sl/b1sl/resources/_generated/tax_code_determinations_tcd.py +15 -0
  478. b1sl/b1sl/resources/_generated/tax_code_determinations_tcd_service.py +21 -0
  479. b1sl/b1sl/resources/_generated/tax_invoice_report.py +15 -0
  480. b1sl/b1sl/resources/_generated/tax_web_sites.py +15 -0
  481. b1sl/b1sl/resources/_generated/tax_web_sites_service.py +27 -0
  482. b1sl/b1sl/resources/_generated/teams.py +15 -0
  483. b1sl/b1sl/resources/_generated/termination_reason.py +15 -0
  484. b1sl/b1sl/resources/_generated/termination_reason_service.py +21 -0
  485. b1sl/b1sl/resources/_generated/territories.py +15 -0
  486. b1sl/b1sl/resources/_generated/tracking_notes.py +15 -0
  487. b1sl/b1sl/resources/_generated/tracking_notes_service.py +21 -0
  488. b1sl/b1sl/resources/_generated/transaction_codes.py +15 -0
  489. b1sl/b1sl/resources/_generated/transaction_codes_service.py +21 -0
  490. b1sl/b1sl/resources/_generated/transportation_document.py +15 -0
  491. b1sl/b1sl/resources/_generated/tsr_exceptional_event_service.py +21 -0
  492. b1sl/b1sl/resources/_generated/tsr_exceptional_events.py +15 -0
  493. b1sl/b1sl/resources/_generated/unit_of_measurement_groups.py +15 -0
  494. b1sl/b1sl/resources/_generated/unit_of_measurement_groups_service.py +21 -0
  495. b1sl/b1sl/resources/_generated/unit_of_measurements.py +15 -0
  496. b1sl/b1sl/resources/_generated/unit_of_measurements_service.py +21 -0
  497. b1sl/b1sl/resources/_generated/user_default_groups.py +15 -0
  498. b1sl/b1sl/resources/_generated/user_fields_md.py +15 -0
  499. b1sl/b1sl/resources/_generated/user_keys_md.py +15 -0
  500. b1sl/b1sl/resources/_generated/user_languages.py +15 -0
  501. b1sl/b1sl/resources/_generated/user_menu_service.py +103 -0
  502. b1sl/b1sl/resources/_generated/user_objects_md.py +15 -0
  503. b1sl/b1sl/resources/_generated/user_permission_tree.py +15 -0
  504. b1sl/b1sl/resources/_generated/user_queries.py +15 -0
  505. b1sl/b1sl/resources/_generated/user_tables_md.py +15 -0
  506. b1sl/b1sl/resources/_generated/users.py +15 -0
  507. b1sl/b1sl/resources/_generated/users_service.py +21 -0
  508. b1sl/b1sl/resources/_generated/value_mapping.py +15 -0
  509. b1sl/b1sl/resources/_generated/value_mapping_communication.py +15 -0
  510. b1sl/b1sl/resources/_generated/value_mapping_service.py +64 -0
  511. b1sl/b1sl/resources/_generated/vat_groups.py +15 -0
  512. b1sl/b1sl/resources/_generated/vendor_payments.py +15 -0
  513. b1sl/b1sl/resources/_generated/w_tax_type_code_service.py +21 -0
  514. b1sl/b1sl/resources/_generated/w_tax_type_codes.py +15 -0
  515. b1sl/b1sl/resources/_generated/warehouse_locations.py +15 -0
  516. b1sl/b1sl/resources/_generated/warehouse_sublevel_codes.py +15 -0
  517. b1sl/b1sl/resources/_generated/warehouse_sublevel_codes_service.py +21 -0
  518. b1sl/b1sl/resources/_generated/warehouses.py +15 -0
  519. b1sl/b1sl/resources/_generated/web_client_bookmark_tile_service.py +21 -0
  520. b1sl/b1sl/resources/_generated/web_client_bookmark_tiles.py +15 -0
  521. b1sl/b1sl/resources/_generated/web_client_dashboard_service.py +21 -0
  522. b1sl/b1sl/resources/_generated/web_client_dashboards.py +15 -0
  523. b1sl/b1sl/resources/_generated/web_client_form_setting_service.py +21 -0
  524. b1sl/b1sl/resources/_generated/web_client_form_settings.py +15 -0
  525. b1sl/b1sl/resources/_generated/web_client_launchpad_service.py +21 -0
  526. b1sl/b1sl/resources/_generated/web_client_launchpads.py +15 -0
  527. b1sl/b1sl/resources/_generated/web_client_listview_filter_service.py +21 -0
  528. b1sl/b1sl/resources/_generated/web_client_listview_filters.py +15 -0
  529. b1sl/b1sl/resources/_generated/web_client_notification_service.py +21 -0
  530. b1sl/b1sl/resources/_generated/web_client_notifications.py +15 -0
  531. b1sl/b1sl/resources/_generated/web_client_preference_service.py +21 -0
  532. b1sl/b1sl/resources/_generated/web_client_preferences.py +15 -0
  533. b1sl/b1sl/resources/_generated/web_client_recent_activities.py +15 -0
  534. b1sl/b1sl/resources/_generated/web_client_recent_activity_service.py +21 -0
  535. b1sl/b1sl/resources/_generated/web_client_variant_group_service.py +21 -0
  536. b1sl/b1sl/resources/_generated/web_client_variant_groups.py +15 -0
  537. b1sl/b1sl/resources/_generated/web_client_variant_service.py +21 -0
  538. b1sl/b1sl/resources/_generated/web_client_variants.py +15 -0
  539. b1sl/b1sl/resources/_generated/weight_measures.py +15 -0
  540. b1sl/b1sl/resources/_generated/withholding_tax_codes.py +15 -0
  541. b1sl/b1sl/resources/_generated/witholding_tax_definition.py +15 -0
  542. b1sl/b1sl/resources/_generated/wizard_payment_methods.py +15 -0
  543. b1sl/b1sl/resources/_generated/workflow_task_service.py +47 -0
  544. b1sl/b1sl/resources/async_base.py +60 -0
  545. b1sl/b1sl/resources/base.py +159 -0
  546. b1sl/b1sl/resources/udo.py +78 -0
  547. b1sl/b1sl/rest_adapter.py +351 -0
  548. b1sl/b1sl/testing.py +24 -0
  549. b1sl/b1sl/tests/__init__.py +0 -0
  550. b1sl/b1sl/tests/test_01_settings.py +60 -0
  551. b1sl/b1sl/tests/test_02_rest_adapter.py +177 -0
  552. b1sl/b1sl/tests/test_03_items_endpoint.py +172 -0
  553. b1sl/b1sl/tests/test_04_serialnumberdetails_endpoint.py +181 -0
  554. b1sl/b1sl/tests/test_observability.py +153 -0
  555. b1sl/b1sl/tests/test_utils.py +24 -0
  556. b1sl/contrib/__init__.py +0 -0
  557. b1sl/contrib/django/__init__.py +15 -0
  558. b1sl/contrib/django/base.py +89 -0
  559. b1sl/contrib/django/odata_decode_middleware.py +14 -0
  560. b1sl/contrib/django/odata_transform_url_middleware.py +15 -0
  561. b1sl/py.typed +0 -0
  562. b1sl/saphdb/__init__.py +19 -0
  563. b1sl/saphdb/adapter.py +24 -0
  564. b1sl/saphdb/client.py +50 -0
  565. b1sl/saphdb/config.py +68 -0
  566. b1sl/saphdb/endpoints/serialnumberdetailodbc.py +100 -0
  567. b1sl/saphdb/exceptions/exceptions.py +19 -0
  568. b1sl/saphdb/main.py +18 -0
  569. b1sl/saphdb/models/result.py +18 -0
  570. b1sl/saphdb/models/serial.py +37 -0
  571. b1sl/saphdb/odbc_adapter.py +220 -0
  572. b1sl/saphdb/tests/__init__.py +0 -0
  573. b1sl/saphdb/tests/test_01_settings.py +37 -0
  574. b1sl/saphdb/tests/test_02_odbc_adapter.py +96 -0
  575. b1sl/saphdb/tests/test_04_serialnumberdetails_endpoint.py +131 -0
  576. b1sl_python-0.1.0.dist-info/METADATA +169 -0
  577. b1sl_python-0.1.0.dist-info/RECORD +579 -0
  578. b1sl_python-0.1.0.dist-info/WHEEL +4 -0
  579. b1sl_python-0.1.0.dist-info/licenses/LICENSE +21 -0
@@ -0,0 +1,3501 @@
1
+ from __future__ import annotations
2
+ from enum import Enum, StrEnum
3
+
4
+ class AccountCategorySourceEnum(StrEnum):
5
+ acsBalanceSheet = 'acsBalanceSheet'
6
+ acsProfitAndLoss = 'acsProfitAndLoss'
7
+ acsTrialBalance = 'acsTrialBalance'
8
+
9
+ class AccountSegmentationTypeEnum(StrEnum):
10
+ ast_Alphanumeric = 'ast_Alphanumeric'
11
+ ast_Numeric = 'ast_Numeric'
12
+
13
+ class AcquisitionPeriodControlEnum(StrEnum):
14
+ apcProRataTemporis = 'apcProRataTemporis'
15
+ apcFirstYearConvention = 'apcFirstYearConvention'
16
+ apcHalfYear = 'apcHalfYear'
17
+ apcFullYear = 'apcFullYear'
18
+
19
+ class AcquisitionProRataTypeEnum(StrEnum):
20
+ aprtExactlyDailyBase = 'aprtExactlyDailyBase'
21
+ aprtFirstDayOfCurrentPeriod = 'aprtFirstDayOfCurrentPeriod'
22
+ aprtFirstDayOfNextPeriod = 'aprtFirstDayOfNextPeriod'
23
+
24
+ class ActivityRecipientObjTypeEnum(StrEnum):
25
+ arotUser = 'arotUser'
26
+ arotEmployee = 'arotEmployee'
27
+ arotRecipientList = 'arotRecipientList'
28
+
29
+ class AlertManagementDocumentEnum(StrEnum):
30
+ atd_NOB = 'atd_NOB'
31
+ atd_Invoices = 'atd_Invoices'
32
+ atd_RevertInvoice = 'atd_RevertInvoice'
33
+ atd_DeliveryNotes = 'atd_DeliveryNotes'
34
+ atd_Returns = 'atd_Returns'
35
+ atd_Orders = 'atd_Orders'
36
+ atd_PurchaseInvoices = 'atd_PurchaseInvoices'
37
+ atd_PurchaseDeliveryNotes = 'atd_PurchaseDeliveryNotes'
38
+ atd_PurchaseOrders = 'atd_PurchaseOrders'
39
+ atd_Quotations = 'atd_Quotations'
40
+ atd_IncomingPayments = 'atd_IncomingPayments'
41
+ atd_JournalEntries = 'atd_JournalEntries'
42
+ atd_OutgoingPayments = 'atd_OutgoingPayments'
43
+ atd_ChecksForPayment = 'atd_ChecksForPayment'
44
+ atd_CorrectionInvoice = 'atd_CorrectionInvoice'
45
+ atd_DownPaymentIncoming = 'atd_DownPaymentIncoming'
46
+ atd_DownPaymentOutgoing = 'atd_DownPaymentOutgoing'
47
+
48
+ class AlertManagementFrequencyType(StrEnum):
49
+ atfi_Minutes = 'atfi_Minutes'
50
+ atfi_Hours = 'atfi_Hours'
51
+ atfi_Days = 'atfi_Days'
52
+ atfi_Weeks = 'atfi_Weeks'
53
+ atfi_Monthly = 'atfi_Monthly'
54
+
55
+ class AlertManagementPriorityEnum(StrEnum):
56
+ atp_Low = 'atp_Low'
57
+ atp_Normal = 'atp_Normal'
58
+ atp_High = 'atp_High'
59
+
60
+ class AlertManagementTypeEnum(StrEnum):
61
+ att_User = 'att_User'
62
+ att_System = 'att_System'
63
+
64
+ class AmountCatTypeEnum(StrEnum):
65
+ act_Open = 'act_Open'
66
+ act_Invoiced = 'act_Invoiced'
67
+
68
+ class ApprovalTemplateConditionTypeEnum(StrEnum):
69
+ atctUndefined = 'atctUndefined'
70
+ atctDeviationFromCreditLine = 'atctDeviationFromCreditLine'
71
+ atctDeviationFromObligo = 'atctDeviationFromObligo'
72
+ atctGrossProfitPercent = 'atctGrossProfitPercent'
73
+ atctDiscountPercent = 'atctDiscountPercent'
74
+ atctDeviationFromBudget = 'atctDeviationFromBudget'
75
+ atctTotalDocument = 'atctTotalDocument'
76
+ atctItemCode = 'atctItemCode'
77
+ atctTotalLine = 'atctTotalLine'
78
+ atctCountedQuantity = 'atctCountedQuantity'
79
+ atctQuantity = 'atctQuantity'
80
+ atctVariance = 'atctVariance'
81
+ atctVariancePercent = 'atctVariancePercent'
82
+
83
+ class ApprovalTemplateOperationTypeEnum(StrEnum):
84
+ opcodeUndefined = 'opcodeUndefined'
85
+ opcodeGreaterThan = 'opcodeGreaterThan'
86
+ opcodeGreaterOrEqual = 'opcodeGreaterOrEqual'
87
+ opcodeLessThan = 'opcodeLessThan'
88
+ opcodeLessOrEqual = 'opcodeLessOrEqual'
89
+ opcodeEqual = 'opcodeEqual'
90
+ opcodeDoesNotEqual = 'opcodeDoesNotEqual'
91
+ opcodeInRange = 'opcodeInRange'
92
+ opcodeNotInRange = 'opcodeNotInRange'
93
+
94
+ class ApprovalTemplatesDocumentTypeEnum(StrEnum):
95
+ atdtQuotation = 'atdtQuotation'
96
+ atdtOrder = 'atdtOrder'
97
+ atdtDelivery = 'atdtDelivery'
98
+ atdtReturns = 'atdtReturns'
99
+ atdtArDownPayment = 'atdtArDownPayment'
100
+ atdtArInvoice = 'atdtArInvoice'
101
+ atdtArCreditMemo = 'atdtArCreditMemo'
102
+ atdtCorrectionInvoice = 'atdtCorrectionInvoice'
103
+ atdtPurchaseOrder = 'atdtPurchaseOrder'
104
+ atdtGoodsReceiptPO = 'atdtGoodsReceiptPO'
105
+ atdtGoodsReturns = 'atdtGoodsReturns'
106
+ atdtApDownPayment = 'atdtApDownPayment'
107
+ atdtApInvoice = 'atdtApInvoice'
108
+ atdtApCreditMemo = 'atdtApCreditMemo'
109
+ atdtGoodsReceipt = 'atdtGoodsReceipt'
110
+ atdtGoodsIssue = 'atdtGoodsIssue'
111
+ atdtInventoryTransfer = 'atdtInventoryTransfer'
112
+ atdtPurchaseQuotation = 'atdtPurchaseQuotation'
113
+ atdtInventoryTransferRequest = 'atdtInventoryTransferRequest'
114
+ atdtOutgoingPayment = 'atdtOutgoingPayment'
115
+ atdtInventoryCounting = 'atdtInventoryCounting'
116
+ atdtInventoryPosting = 'atdtInventoryPosting'
117
+ atdtInventoryOpeningBalance = 'atdtInventoryOpeningBalance'
118
+ atdtReturnRequest = 'atdtReturnRequest'
119
+ atdtGoodsReturnRequest = 'atdtGoodsReturnRequest'
120
+ atdtBlanketAgreement = 'atdtBlanketAgreement'
121
+ atdtSalesBlanketAgreement = 'atdtSalesBlanketAgreement'
122
+ atdtPurchaseBlanketAgreement = 'atdtPurchaseBlanketAgreement'
123
+ atdtPurchaseRequest = 'atdtPurchaseRequest'
124
+ atdtSelfInvoice = 'atdtSelfInvoice'
125
+ atdtSelfCreditMemo = 'atdtSelfCreditMemo'
126
+
127
+ class AreaTypeEnum(StrEnum):
128
+ atPostingtoGL = 'atPostingtoGL'
129
+ atAdditionalArea = 'atAdditionalArea'
130
+ atDerivedArea = 'atDerivedArea'
131
+
132
+ class AssesseeTypeEnum(StrEnum):
133
+ atCompany = 'atCompany'
134
+ atOthers = 'atOthers'
135
+
136
+ class AssetDocumentStatusEnum(StrEnum):
137
+ adsPosted = 'adsPosted'
138
+ adsDraft = 'adsDraft'
139
+ adsCancelled = 'adsCancelled'
140
+
141
+ class AssetDocumentTypeEnum(StrEnum):
142
+ adtOrdinaryDepreciation = 'adtOrdinaryDepreciation'
143
+ adtUnplannedDepreciation = 'adtUnplannedDepreciation'
144
+ adtSpecialDepreciation = 'adtSpecialDepreciation'
145
+ adtAppreciation = 'adtAppreciation'
146
+ adtAssetTransfer = 'adtAssetTransfer'
147
+ adtSales = 'adtSales'
148
+ adtScrapping = 'adtScrapping'
149
+ adtAssetClassTransfer = 'adtAssetClassTransfer'
150
+
151
+ class AssetOriginalTypeEnum(StrEnum):
152
+ aotARInvoice = 'aotARInvoice'
153
+ aotAPCreditMemo = 'aotAPCreditMemo'
154
+ aotAPInvoice = 'aotAPInvoice'
155
+ aotOutgoingPayment = 'aotOutgoingPayment'
156
+ aotAPCorrectionInvoice = 'aotAPCorrectionInvoice'
157
+ aotCapitalization = 'aotCapitalization'
158
+ aotFixedAssetsCreditMemo = 'aotFixedAssetsCreditMemo'
159
+ aotAllTransactions = 'aotAllTransactions'
160
+ aotManualDepreciation = 'aotManualDepreciation'
161
+ aotFixedAssetsTransfer = 'aotFixedAssetsTransfer'
162
+ aotRetirement = 'aotRetirement'
163
+
164
+ class AssetStatusEnum(StrEnum):
165
+ New = 'New'
166
+ Active = 'Active'
167
+ Inactive = 'Inactive'
168
+
169
+ class AssetTransactionTypeEnum(StrEnum):
170
+ att_BeginningOfYear = 'att_BeginningOfYear'
171
+ att_Acquistion = 'att_Acquistion'
172
+ att_Retirement = 'att_Retirement'
173
+ att_Transfer = 'att_Transfer'
174
+ att_WriteUp = 'att_WriteUp'
175
+ att_OrdinaryDepreciation = 'att_OrdinaryDepreciation'
176
+ att_UplannedDepreciation = 'att_UplannedDepreciation'
177
+ att_SpecialDepreciation = 'att_SpecialDepreciation'
178
+ att_EndOfYear = 'att_EndOfYear'
179
+
180
+ class AssetTypeEnum(StrEnum):
181
+ atAssetTypeGeneral = 'atAssetTypeGeneral'
182
+ atAssetTypeLowValueAsset = 'atAssetTypeLowValueAsset'
183
+
184
+ class AttributeGroupFieldTypeEnum(StrEnum):
185
+ agftText = 'agftText'
186
+ agftNumeric = 'agftNumeric'
187
+ agftDate = 'agftDate'
188
+ agftAmount = 'agftAmount'
189
+ agftPrice = 'agftPrice'
190
+ agftQuantity = 'agftQuantity'
191
+
192
+ class AuthenticateUserResultsEnum(StrEnum):
193
+ aturNoUserConnectedToCompany = 'aturNoUserConnectedToCompany'
194
+ aturUsernamePasswordMatched = 'aturUsernamePasswordMatched'
195
+ aturLogOnUserNotAdmin = 'aturLogOnUserNotAdmin'
196
+ aturBadUserOrPassword = 'aturBadUserOrPassword'
197
+ aturUserHasBeenLocked = 'aturUserHasBeenLocked'
198
+ aturPasswordExpired = 'aturPasswordExpired'
199
+ aturDBErrors = 'aturDBErrors'
200
+ aturWrongDomainName = 'aturWrongDomainName'
201
+
202
+ class AutoAllocOnReceiptMethodEnum(StrEnum):
203
+ aaormDefaultBin = 'aaormDefaultBin'
204
+ aaormItemCurrentAndHistoricalBins = 'aaormItemCurrentAndHistoricalBins'
205
+ aaormItemCurrentBins = 'aaormItemCurrentBins'
206
+ aaormLastBinReceivedItem = 'aaormLastBinReceivedItem'
207
+
208
+ class AutomaticPostingEnum(StrEnum):
209
+ apNo = 'apNo'
210
+ apInterestAndFee = 'apInterestAndFee'
211
+ apInterestOnly = 'apInterestOnly'
212
+ apFeeOnly = 'apFeeOnly'
213
+
214
+ class BADivationAlertLevelEnum(StrEnum):
215
+ badal_NoWarning = 'badal_NoWarning'
216
+ badal_Warning = 'badal_Warning'
217
+ badal_Block = 'badal_Block'
218
+
219
+ class BADocumentStatus(StrEnum):
220
+ bads_Open = 'bads_Open'
221
+ bads_Closed = 'bads_Closed'
222
+ bads_Cancelled = 'bads_Cancelled'
223
+
224
+ class BankStatementDocTypeEnum(StrEnum):
225
+ bsdtReceipts = 'bsdtReceipts'
226
+ bsdtPaymentToVendor = 'bsdtPaymentToVendor'
227
+ bsdtInvoices = 'bsdtInvoices'
228
+ bsdtPurchases = 'bsdtPurchases'
229
+ bsdtDownPaymentIncoming = 'bsdtDownPaymentIncoming'
230
+ bsdtDownPaymentOutgoing = 'bsdtDownPaymentOutgoing'
231
+ bsdtRevertInvoices = 'bsdtRevertInvoices'
232
+ bsdtRevertPurchases = 'bsdtRevertPurchases'
233
+ bsdtJournalEntry = 'bsdtJournalEntry'
234
+
235
+ class BankStatementRowSourceEnum(StrEnum):
236
+ bsImported = 'bsImported'
237
+ bsImportedAndAmended = 'bsImportedAndAmended'
238
+ bsManuallyEntered = 'bsManuallyEntered'
239
+
240
+ class BankStatementStatusEnum(StrEnum):
241
+ bssExecuted = 'bssExecuted'
242
+ bssDraft = 'bssDraft'
243
+ bssOld = 'bssOld'
244
+
245
+ class BaseDateSelectEnum(StrEnum):
246
+ bdsFromDueDate = 'bdsFromDueDate'
247
+ bdsFromLastDunningRun = 'bdsFromLastDunningRun'
248
+
249
+ class BatchDetailServiceStatusEnum(StrEnum):
250
+ bdsStatus_Released = 'bdsStatus_Released'
251
+ bdsStatus_NotAccessible = 'bdsStatus_NotAccessible'
252
+ bdsStatus_Locked = 'bdsStatus_Locked'
253
+
254
+ class BinActionTypeEnum(StrEnum):
255
+ batToWarehouse = 'batToWarehouse'
256
+ batFromWarehouse = 'batFromWarehouse'
257
+
258
+ class BinLocationFieldTypeEnum(StrEnum):
259
+ blftWarehouseSublevel = 'blftWarehouseSublevel'
260
+ blftBinLocationAttribute = 'blftBinLocationAttribute'
261
+
262
+ class BinRestrictItemEnum(StrEnum):
263
+ briNone = 'briNone'
264
+ briSpecificItem = 'briSpecificItem'
265
+ briSingleItemOnly = 'briSingleItemOnly'
266
+ briSpecificItemGroup = 'briSpecificItemGroup'
267
+ briSpecificItemGroupOnly = 'briSpecificItemGroupOnly'
268
+
269
+ class BinRestrictTransactionEnum(StrEnum):
270
+ brtNoRestrictions = 'brtNoRestrictions'
271
+ brtAllTrans = 'brtAllTrans'
272
+ brtInboundTrans = 'brtInboundTrans'
273
+ brtOutboundTrans = 'brtOutboundTrans'
274
+ brtAllExceptInventoryTrans = 'brtAllExceptInventoryTrans'
275
+
276
+ class BinRestrictUoMEnum(StrEnum):
277
+ bruNone = 'bruNone'
278
+ bruSpecificUoM = 'bruSpecificUoM'
279
+ bruSingleUoMOnly = 'bruSingleUoMOnly'
280
+ bruSpecificUoMGroup = 'bruSpecificUoMGroup'
281
+ bruSpecificUoMGroupOnly = 'bruSpecificUoMGroupOnly'
282
+
283
+ class BinRestrictionBatchEnum(StrEnum):
284
+ brbNoRestrictions = 'brbNoRestrictions'
285
+ brbSingleBatch = 'brbSingleBatch'
286
+
287
+ class BlanketAgreementBPTypeEnum(StrEnum):
288
+ atCustomer = 'atCustomer'
289
+ atVendor = 'atVendor'
290
+
291
+ class BlanketAgreementDatePeriodsEnum(StrEnum):
292
+ Daily = 'Daily'
293
+ Weekly = 'Weekly'
294
+ Monthly = 'Monthly'
295
+ Quarterly = 'Quarterly'
296
+ Semiannually = 'Semiannually'
297
+ Annually = 'Annually'
298
+ OneTime = 'OneTime'
299
+
300
+ class BlanketAgreementDocTypeEnum(StrEnum):
301
+ ARInvoice = 'ARInvoice'
302
+ ARCreditMemo = 'ARCreditMemo'
303
+ Delivery = 'Delivery'
304
+ Return = 'Return'
305
+ SalesOrder = 'SalesOrder'
306
+ APInvoice = 'APInvoice'
307
+ APCreditMemo = 'APCreditMemo'
308
+ GoodsReceiptPO = 'GoodsReceiptPO'
309
+ GoodsReturn = 'GoodsReturn'
310
+ PurchaseOrder = 'PurchaseOrder'
311
+ SalesQuotation = 'SalesQuotation'
312
+ APCorrectionInvoice = 'APCorrectionInvoice'
313
+ APCorrectionInvoiceReversal = 'APCorrectionInvoiceReversal'
314
+ ARCorrectionInvoice = 'ARCorrectionInvoice'
315
+ ARCorrectionInvoiceReversal = 'ARCorrectionInvoiceReversal'
316
+ ARDownPayment = 'ARDownPayment'
317
+ APDownPayment = 'APDownPayment'
318
+ PurchaseQuotation = 'PurchaseQuotation'
319
+
320
+ class BlanketAgreementMethodEnum(StrEnum):
321
+ amItem = 'amItem'
322
+ amMonetary = 'amMonetary'
323
+
324
+ class BlanketAgreementStatusEnum(StrEnum):
325
+ asApproved = 'asApproved'
326
+ asOnHold = 'asOnHold'
327
+ asDraft = 'asDraft'
328
+ asTerminated = 'asTerminated'
329
+ asCancelled = 'asCancelled'
330
+
331
+ class BlanketAgreementTypeEnum(StrEnum):
332
+ atGeneral = 'atGeneral'
333
+ atSpecific = 'atSpecific'
334
+
335
+ class BoAPARDocumentTypes(StrEnum):
336
+ bodt_Invoice = 'bodt_Invoice'
337
+ bodt_CreditNote = 'bodt_CreditNote'
338
+ bodt_DeliveryNote = 'bodt_DeliveryNote'
339
+ bodt_Return = 'bodt_Return'
340
+ bodt_Order = 'bodt_Order'
341
+ bodt_PurchaseInvoice = 'bodt_PurchaseInvoice'
342
+ bodt_PurchaseCreditNote = 'bodt_PurchaseCreditNote'
343
+ bodt_PurchaseDeliveryNote = 'bodt_PurchaseDeliveryNote'
344
+ bodt_PurchaseReturn = 'bodt_PurchaseReturn'
345
+ bodt_PurchaseOrder = 'bodt_PurchaseOrder'
346
+ bodt_Quotation = 'bodt_Quotation'
347
+ bodt_CorrectionAPInvoice = 'bodt_CorrectionAPInvoice'
348
+ bodt_CorrectionARInvoice = 'bodt_CorrectionARInvoice'
349
+ bodt_Zero = 'bodt_Zero'
350
+ bodt_MinusOne = 'bodt_MinusOne'
351
+ bodt_PurchaseQutation = 'bodt_PurchaseQutation'
352
+
353
+ class BoAccountTypes(StrEnum):
354
+ at_Revenues = 'at_Revenues'
355
+ at_Expenses = 'at_Expenses'
356
+ at_Other = 'at_Other'
357
+
358
+ class BoActivities(StrEnum):
359
+ cn_Conversation = 'cn_Conversation'
360
+ cn_Meeting = 'cn_Meeting'
361
+ cn_Task = 'cn_Task'
362
+ cn_Other = 'cn_Other'
363
+ cn_Note = 'cn_Note'
364
+ cn_Campaign = 'cn_Campaign'
365
+
366
+ class BoAdEpnsDistribMethods(StrEnum):
367
+ aedm_None = 'aedm_None'
368
+ aedm_Quantity = 'aedm_Quantity'
369
+ aedm_Volume = 'aedm_Volume'
370
+ aedm_Weight = 'aedm_Weight'
371
+ aedm_Equally = 'aedm_Equally'
372
+ aedm_RowTotal = 'aedm_RowTotal'
373
+
374
+ class BoAdEpnsTaxTypes(StrEnum):
375
+ aext_NormalTax = 'aext_NormalTax'
376
+ aext_NoTax = 'aext_NoTax'
377
+ aext_UseTax = 'aext_UseTax'
378
+
379
+ class BoAddressType(StrEnum):
380
+ bo_ShipTo = 'bo_ShipTo'
381
+ bo_BillTo = 'bo_BillTo'
382
+
383
+ class BoAeDistMthd(StrEnum):
384
+ aed_Equally = 'aed_Equally'
385
+ aed_LineTotal = 'aed_LineTotal'
386
+ aed_None = 'aed_None'
387
+ aed_Quantity = 'aed_Quantity'
388
+ aed_Volume = 'aed_Volume'
389
+ aed_Weight = 'aed_Weight'
390
+
391
+ class BoAlertTypeforWHStockEnum(StrEnum):
392
+ atfwhs_WarningOnly = 'atfwhs_WarningOnly'
393
+ atfwhs_Block = 'atfwhs_Block'
394
+ atfwhs_NoMessage = 'atfwhs_NoMessage'
395
+
396
+ class BoAllocationByEnum(StrEnum):
397
+ ab_CashValueAfterCustoms = 'ab_CashValueAfterCustoms'
398
+ ab_CashValueBeforeCustoms = 'ab_CashValueBeforeCustoms'
399
+ ab_Equal = 'ab_Equal'
400
+ ab_Quantity = 'ab_Quantity'
401
+ ab_Volume = 'ab_Volume'
402
+ ab_Weight = 'ab_Weight'
403
+
404
+ class BoApprovalRequestDecisionEnum(StrEnum):
405
+ ardPending = 'ardPending'
406
+ ardApproved = 'ardApproved'
407
+ ardNotApproved = 'ardNotApproved'
408
+
409
+ class BoApprovalRequestStatusEnum(StrEnum):
410
+ arsPending = 'arsPending'
411
+ arsApproved = 'arsApproved'
412
+ arsNotApproved = 'arsNotApproved'
413
+ arsGenerated = 'arsGenerated'
414
+ arsGeneratedByAuthorizer = 'arsGeneratedByAuthorizer'
415
+ arsCancelled = 'arsCancelled'
416
+
417
+ class BoBOETypes(StrEnum):
418
+ bobt_Incoming = 'bobt_Incoming'
419
+ bobt_Outgoing = 'bobt_Outgoing'
420
+
421
+ class BoBOTFromStatus(StrEnum):
422
+ btfs_Sent = 'btfs_Sent'
423
+ btfs_Generated = 'btfs_Generated'
424
+ btfs_Deposited = 'btfs_Deposited'
425
+ btfs_Paid = 'btfs_Paid'
426
+
427
+ class BoBOTToStatus(StrEnum):
428
+ btts_Canceled = 'btts_Canceled'
429
+ btts_Generated = 'btts_Generated'
430
+ btts_Deposit = 'btts_Deposit'
431
+ btts_Paid = 'btts_Paid'
432
+ btts_Failed = 'btts_Failed'
433
+ btts_Closed = 'btts_Closed'
434
+
435
+ class BoBarCodeStandardEnum(StrEnum):
436
+ rlbsan13 = 'rlbsan13'
437
+ rlbsCode39 = 'rlbsCode39'
438
+ rlbsCode128 = 'rlbsCode128'
439
+
440
+ class BoBaseDateRateEnum(StrEnum):
441
+ bdr_PostingDate = 'bdr_PostingDate'
442
+ bdr_TaxDate = 'bdr_TaxDate'
443
+
444
+ class BoBaselineDate(StrEnum):
445
+ bld_PostingDate = 'bld_PostingDate'
446
+ bld_SystemDate = 'bld_SystemDate'
447
+ bld_TaxDate = 'bld_TaxDate'
448
+ bld_ClosingDate = 'bld_ClosingDate'
449
+
450
+ class BoBlockBudget(StrEnum):
451
+ bb_OnlyAnnualAlert = 'bb_OnlyAnnualAlert'
452
+ bb_MonthlyAlertOnly = 'bb_MonthlyAlertOnly'
453
+ bb_Block = 'bb_Block'
454
+
455
+ class BoBoeStatus(StrEnum):
456
+ boes_Created = 'boes_Created'
457
+ boes_Sent = 'boes_Sent'
458
+ boes_Deposited = 'boes_Deposited'
459
+ boes_Paid = 'boes_Paid'
460
+ boes_Cancelled = 'boes_Cancelled'
461
+ boes_Closed = 'boes_Closed'
462
+ boes_Failed = 'boes_Failed'
463
+
464
+ class BoBpAccountTypes(StrEnum):
465
+ bpat_General = 'bpat_General'
466
+ bpat_DownPayment = 'bpat_DownPayment'
467
+ bpat_AssetsAccount = 'bpat_AssetsAccount'
468
+ bpat_Receivable = 'bpat_Receivable'
469
+ bpat_Payable = 'bpat_Payable'
470
+ bpat_OnCollection = 'bpat_OnCollection'
471
+ bpat_Presentation = 'bpat_Presentation'
472
+ bpat_AssetsPayable = 'bpat_AssetsPayable'
473
+ bpat_Discounted = 'bpat_Discounted'
474
+ bpat_Unpaid = 'bpat_Unpaid'
475
+ bpat_OpenDebts = 'bpat_OpenDebts'
476
+ bpat_Domestic = 'bpat_Domestic'
477
+ bpat_Foreign = 'bpat_Foreign'
478
+ bpat_CashDiscountInterim = 'bpat_CashDiscountInterim'
479
+ bpat_ExchangeRateInterim = 'bpat_ExchangeRateInterim'
480
+
481
+ class BoBpsDocTypes(StrEnum):
482
+ bpdt_PaymentReference = 'bpdt_PaymentReference'
483
+ bpdt_ISR = 'bpdt_ISR'
484
+ bpdt_DocNum = 'bpdt_DocNum'
485
+
486
+ class BoBudgetAlert(StrEnum):
487
+ ba_AnnualAlert = 'ba_AnnualAlert'
488
+ ba_MonthlyAlert = 'ba_MonthlyAlert'
489
+
490
+ class BoBusinessAreaEnum(StrEnum):
491
+ baSales = 'baSales'
492
+ baPurchase = 'baPurchase'
493
+ baSalesAndPurchase = 'baSalesAndPurchase'
494
+
495
+ class BoBusinessPartnerGroupTypes(StrEnum):
496
+ bbpgt_CustomerGroup = 'bbpgt_CustomerGroup'
497
+ bbpgt_VendorGroup = 'bbpgt_VendorGroup'
498
+
499
+ class BoBusinessPartnerTypes(StrEnum):
500
+ garAll = 'garAll'
501
+ garCompany = 'garCompany'
502
+ garPrivate = 'garPrivate'
503
+ garGovernment = 'garGovernment'
504
+
505
+ class BoCardCompanyTypes(StrEnum):
506
+ cCompany = 'cCompany'
507
+ cPrivate = 'cPrivate'
508
+ cGovernment = 'cGovernment'
509
+ cEmployee = 'cEmployee'
510
+
511
+ class BoCardTypes(StrEnum):
512
+ cCustomer = 'cCustomer'
513
+ cSupplier = 'cSupplier'
514
+ cLid = 'cLid'
515
+
516
+ class BoChangeLogEnum(StrEnum):
517
+ clChartOfAccounts = 'clChartOfAccounts'
518
+ clBusinessPartners = 'clBusinessPartners'
519
+ clItems = 'clItems'
520
+ clVatGroups = 'clVatGroups'
521
+ clUsers = 'clUsers'
522
+ clInvoices = 'clInvoices'
523
+ clCreditNotes = 'clCreditNotes'
524
+ clDeliveryNotes = 'clDeliveryNotes'
525
+ clReturns = 'clReturns'
526
+ clOrders = 'clOrders'
527
+ clPurchaseInvoices = 'clPurchaseInvoices'
528
+ clPurchaseCreditNotes = 'clPurchaseCreditNotes'
529
+ clPurchaseDeliveryNotes = 'clPurchaseDeliveryNotes'
530
+ clPurchaseReturns = 'clPurchaseReturns'
531
+ clPurchaseOrders = 'clPurchaseOrders'
532
+ clQuotations = 'clQuotations'
533
+ clIncomingPayments = 'clIncomingPayments'
534
+ clJournalEntries = 'clJournalEntries'
535
+ clCreditCards = 'clCreditCards'
536
+ clAdminInfo = 'clAdminInfo'
537
+ clVendorPayments = 'clVendorPayments'
538
+ clItemGroups = 'clItemGroups'
539
+ clInventoryGeneralEntry = 'clInventoryGeneralEntry'
540
+ clInventoryGeneralExit = 'clInventoryGeneralExit'
541
+ clWarehouses = 'clWarehouses'
542
+ clProductTrees = 'clProductTrees'
543
+ clStockTransfers = 'clStockTransfers'
544
+ clFinancePeriods = 'clFinancePeriods'
545
+ clAdditionalExpenses = 'clAdditionalExpenses'
546
+ clPickLists = 'clPickLists'
547
+ clMaterialRevaluation = 'clMaterialRevaluation'
548
+ clCorrectionPurchaseInvoice = 'clCorrectionPurchaseInvoice'
549
+ clCorrectionPurchaseInvoiceReversal = 'clCorrectionPurchaseInvoiceReversal'
550
+ clCorrectionInvoice = 'clCorrectionInvoice'
551
+ clCorrectionInvoiceReversal = 'clCorrectionInvoiceReversal'
552
+ clEmployeesInfo = 'clEmployeesInfo'
553
+ clCustomerEquipmentCards = 'clCustomerEquipmentCards'
554
+ clWithholdingTaxCodes = 'clWithholdingTaxCodes'
555
+ clBillOfExchange = 'clBillOfExchange'
556
+ clServiceCalls = 'clServiceCalls'
557
+ clProductionOrders = 'clProductionOrders'
558
+ clDownPayments = 'clDownPayments'
559
+ clPurchaseDownPayments = 'clPurchaseDownPayments'
560
+ clPeriodCategory = 'clPeriodCategory'
561
+ clHouseBankAccounts = 'clHouseBankAccounts'
562
+ clSalesTaxInvoice = 'clSalesTaxInvoice'
563
+ clPurchaseTaxInvoice = 'clPurchaseTaxInvoice'
564
+ clExternalBankOperationCodes = 'clExternalBankOperationCodes'
565
+ clInternalBankOperationCodes = 'clInternalBankOperationCodes'
566
+ clOutgoingExciseInvoice = 'clOutgoingExciseInvoice'
567
+ clIncomingExciseInvoice = 'clIncomingExciseInvoice'
568
+ clInventoryTransferRequests = 'clInventoryTransferRequests'
569
+ clPurchaseQuotation = 'clPurchaseQuotation'
570
+ clActivities = 'clActivities'
571
+ clChecksForPayment = 'clChecksForPayment'
572
+ clServiceContract = 'clServiceContract'
573
+ clUDO = 'clUDO'
574
+
575
+ class BoCheckDepositTypeEnum(StrEnum):
576
+ cdtCashChecks = 'cdtCashChecks'
577
+ cdtPostdatedChecks = 'cdtPostdatedChecks'
578
+
579
+ class BoClosingDateProcedureBaseDateEnum(StrEnum):
580
+ bocpdbld_BaseSystemDate = 'bocpdbld_BaseSystemDate'
581
+ bocpdbld_PostingDate = 'bocpdbld_PostingDate'
582
+
583
+ class BoClosingDateProcedureDueMonthEnum(StrEnum):
584
+ bocpddm_HalfMonth = 'bocpddm_HalfMonth'
585
+ bocpddm_MonthEnd = 'bocpddm_MonthEnd'
586
+ bocpddm_MonthStart = 'bocpddm_MonthStart'
587
+ bocpddm_None = 'bocpddm_None'
588
+
589
+ class BoCockpitTypeEnum(StrEnum):
590
+ cptt_UserCockpit = 'cptt_UserCockpit'
591
+ cptt_TemplateCockpit = 'cptt_TemplateCockpit'
592
+
593
+ class BoConsumptionMethod(StrEnum):
594
+ cm_BackwardForward = 'cm_BackwardForward'
595
+ cm_ForwardBackward = 'cm_ForwardBackward'
596
+
597
+ class BoContractTypes(StrEnum):
598
+ ct_Customer = 'ct_Customer'
599
+ ct_ItemGroup = 'ct_ItemGroup'
600
+ ct_SerialNumber = 'ct_SerialNumber'
601
+
602
+ class BoCorInvItemStatus(StrEnum):
603
+ ciis_Was = 'ciis_Was'
604
+ ciis_ShouldBe = 'ciis_ShouldBe'
605
+
606
+ class BoCpCardAcct(StrEnum):
607
+ cfp_Card = 'cfp_Card'
608
+ cfp_Account = 'cfp_Account'
609
+
610
+ class BoCurrencyCheck(StrEnum):
611
+ cc_Block = 'cc_Block'
612
+ cc_NoMessage = 'cc_NoMessage'
613
+
614
+ class BoCurrencySources(StrEnum):
615
+ bocs_LocalCurrency = 'bocs_LocalCurrency'
616
+ bocs_SystemCurrency = 'bocs_SystemCurrency'
617
+ bocs_BPCurrency = 'bocs_BPCurrency'
618
+
619
+ class BoDataOwnershipManageMethodEnum(StrEnum):
620
+ doManageByDocOnly = 'doManageByDocOnly'
621
+ doManageByBPOnly = 'doManageByBPOnly'
622
+ doManageByBPnDoc = 'doManageByBPnDoc'
623
+ doManageByBranch = 'doManageByBranch'
624
+
625
+ class BoDataSourceEnum(StrEnum):
626
+ rldsFreeText = 'rldsFreeText'
627
+ rldsSystemVariable = 'rldsSystemVariable'
628
+ rldsDatabase = 'rldsDatabase'
629
+ rldsFormula = 'rldsFormula'
630
+
631
+ class BoDateTemplate(StrEnum):
632
+ dt_DDMMYY = 'dt_DDMMYY'
633
+ dt_DDMMCCYY = 'dt_DDMMCCYY'
634
+ dt_MMDDYY = 'dt_MMDDYY'
635
+ dt_MMDDCCYY = 'dt_MMDDCCYY'
636
+ dt_CCYYMMDD = 'dt_CCYYMMDD'
637
+ dt_DDMonthYYYY = 'dt_DDMonthYYYY'
638
+ dt_YYMMDD = 'dt_YYMMDD'
639
+
640
+ class BoDeductionTaxGroupCodeEnum(StrEnum):
641
+ dtgcInterestReceivers = 'dtgcInterestReceivers'
642
+ dtgcEmployeeReceivingCommission = 'dtgcEmployeeReceivingCommission'
643
+ dtgcWritersPrice = 'dtgcWritersPrice'
644
+ dtgcPaidServices = 'dtgcPaidServices'
645
+ dtgcPaymentsToForeignCitizens = 'dtgcPaymentsToForeignCitizens'
646
+ dtgcPaymentsForCitizensInForeignCountries = 'dtgcPaymentsForCitizensInForeignCountries'
647
+ dtgcInvalidPaymentFromCompensationFund = 'dtgcInvalidPaymentFromCompensationFund'
648
+ dtgcRepaymentToEmployerFromCompensationFund = 'dtgcRepaymentToEmployerFromCompensationFund'
649
+ dtgcRentalPayments = 'dtgcRentalPayments'
650
+ dtgcPaymentsFromStudyFund = 'dtgcPaymentsFromStudyFund'
651
+ dtgcDividendPayments = 'dtgcDividendPayments'
652
+
653
+ class BoDefaultBatchStatus(StrEnum):
654
+ dbs_Released = 'dbs_Released'
655
+ dbs_NotAccessible = 'dbs_NotAccessible'
656
+ dbs_Locked = 'dbs_Locked'
657
+
658
+ class BoDepositAccountTypeEnum(StrEnum):
659
+ datBankAccount = 'datBankAccount'
660
+ datBusinessPartner = 'datBusinessPartner'
661
+
662
+ class BoDepositCheckEnum(StrEnum):
663
+ dtNo = 'dtNo'
664
+ dcAsCash = 'dcAsCash'
665
+ dtAsPostdated = 'dtAsPostdated'
666
+
667
+ class BoDepositPostingTypes(StrEnum):
668
+ dpt_Collection = 'dpt_Collection'
669
+ dpt_Discounted = 'dpt_Discounted'
670
+
671
+ class BoDepositTypeEnum(StrEnum):
672
+ dtChecks = 'dtChecks'
673
+ dtCredit = 'dtCredit'
674
+ dtCash = 'dtCash'
675
+ dtBOE = 'dtBOE'
676
+
677
+ class BoDocItemType(StrEnum):
678
+ dit_Item = 'dit_Item'
679
+ dit_Resource = 'dit_Resource'
680
+
681
+ class BoDocLineType(StrEnum):
682
+ dlt_Regular = 'dlt_Regular'
683
+ dlt_Alternative = 'dlt_Alternative'
684
+ dlt_Resource = 'dlt_Resource'
685
+
686
+ class BoDocSpecialLineType(StrEnum):
687
+ dslt_Text = 'dslt_Text'
688
+ dslt_Subtotal = 'dslt_Subtotal'
689
+
690
+ class BoDocSummaryTypes(StrEnum):
691
+ dNoSummary = 'dNoSummary'
692
+ dByItems = 'dByItems'
693
+ dByDocuments = 'dByDocuments'
694
+
695
+ class BoDocWhsAutoIssueMethod(StrEnum):
696
+ whsBinSingleChoiceOnly = 'whsBinSingleChoiceOnly'
697
+ whsBinBinCodeOrder = 'whsBinBinCodeOrder'
698
+ whsBinAltSortCodeOrder = 'whsBinAltSortCodeOrder'
699
+ whsBinQtyDescendingOrder = 'whsBinQtyDescendingOrder'
700
+ whsBinQtyAscendingOrder = 'whsBinQtyAscendingOrder'
701
+ whsBinFIFO = 'whsBinFIFO'
702
+ whsBinLIFO = 'whsBinLIFO'
703
+ whsBinSingleBinPreferred = 'whsBinSingleBinPreferred'
704
+
705
+ class BoDocWhsUpdateTypes(StrEnum):
706
+ dwh_No = 'dwh_No'
707
+ dwh_OrdersFromVendors = 'dwh_OrdersFromVendors'
708
+ dwh_CustomerOrders = 'dwh_CustomerOrders'
709
+ dwh_Consignment = 'dwh_Consignment'
710
+ dwh_Stock = 'dwh_Stock'
711
+
712
+ class BoDocumentLinePickStatus(StrEnum):
713
+ dlps_Picked = 'dlps_Picked'
714
+ dlps_NotPicked = 'dlps_NotPicked'
715
+ dlps_ReleasedForPicking = 'dlps_ReleasedForPicking'
716
+ dlps_PartiallyPicked = 'dlps_PartiallyPicked'
717
+
718
+ class BoDocumentSubType(StrEnum):
719
+ bod_None = 'bod_None'
720
+ bod_InvoiceExempt = 'bod_InvoiceExempt'
721
+ bod_DebitMemo = 'bod_DebitMemo'
722
+ bod_Bill = 'bod_Bill'
723
+ bod_ExemptBill = 'bod_ExemptBill'
724
+ bod_PurchaseDebitMemo = 'bod_PurchaseDebitMemo'
725
+ bod_ExportInvoice = 'bod_ExportInvoice'
726
+ bod_GSTTaxInvoice = 'bod_GSTTaxInvoice'
727
+ bod_GSTDebitMemo = 'bod_GSTDebitMemo'
728
+ bod_RefundVoucher = 'bod_RefundVoucher'
729
+
730
+ class BoDocumentTypes(StrEnum):
731
+ dDocument_Items = 'dDocument_Items'
732
+ dDocument_Service = 'dDocument_Service'
733
+
734
+ class BoDueDateEnum(StrEnum):
735
+ boddDateOfPaymentRun = 'boddDateOfPaymentRun'
736
+ boddDueDateOfInvoice = 'boddDueDateOfInvoice'
737
+ boddPaymentTerms = 'boddPaymentTerms'
738
+
739
+ class BoDurations(StrEnum):
740
+ du_Seconds = 'du_Seconds'
741
+ du_Minuts = 'du_Minuts'
742
+ du_Hours = 'du_Hours'
743
+ du_Days = 'du_Days'
744
+
745
+ class BoEquipmentBPType(StrEnum):
746
+ et_Sales = 'et_Sales'
747
+ et_Purchasing = 'et_Purchasing'
748
+ et_SalesAndPurchasing = 'et_SalesAndPurchasing'
749
+
750
+ class BoExpenseOperationTypeEnum(StrEnum):
751
+ bo_ExpOpType_ProfessionalServices = 'bo_ExpOpType_ProfessionalServices'
752
+ bo_ExpOpType_RentingAssets = 'bo_ExpOpType_RentingAssets'
753
+ bo_ExpOpType_Others = 'bo_ExpOpType_Others'
754
+ bo_ExpOpType_None = 'bo_ExpOpType_None'
755
+
756
+ class BoExtensionErrorActionEnum(StrEnum):
757
+ eeaStop = 'eeaStop'
758
+ eeaIgnore = 'eeaIgnore'
759
+ eeaPrompt = 'eeaPrompt'
760
+
761
+ class BoFatherCardTypes(StrEnum):
762
+ cPayments_sum = 'cPayments_sum'
763
+ cDelivery_sum = 'cDelivery_sum'
764
+
765
+ class BoFieldTypes(StrEnum):
766
+ db_Alpha = 'db_Alpha'
767
+ db_Memo = 'db_Memo'
768
+ db_Numeric = 'db_Numeric'
769
+ db_Date = 'db_Date'
770
+ db_Float = 'db_Float'
771
+
772
+ class BoFldSubTypes(StrEnum):
773
+ st_None = 'st_None'
774
+ st_Address = 'st_Address'
775
+ st_Phone = 'st_Phone'
776
+ st_Time = 'st_Time'
777
+ st_Rate = 'st_Rate'
778
+ st_Sum = 'st_Sum'
779
+ st_Price = 'st_Price'
780
+ st_Quantity = 'st_Quantity'
781
+ st_Percentage = 'st_Percentage'
782
+ st_Measurement = 'st_Measurement'
783
+ st_Link = 'st_Link'
784
+ st_Image = 'st_Image'
785
+ st_Checkbox = 'st_Checkbox'
786
+
787
+ class BoForecastViewType(StrEnum):
788
+ fvtDaily = 'fvtDaily'
789
+ fvtWeekly = 'fvtWeekly'
790
+ fvtMonthly = 'fvtMonthly'
791
+
792
+ class BoFormattedSearchActionEnum(StrEnum):
793
+ bofsaNone = 'bofsaNone'
794
+ bofsaValidValues = 'bofsaValidValues'
795
+ bofsaQuery = 'bofsaQuery'
796
+
797
+ class BoFrequency(StrEnum):
798
+ bof_Daily = 'bof_Daily'
799
+ bof_Weekly = 'bof_Weekly'
800
+ bof_Every4Weeks = 'bof_Every4Weeks'
801
+ bof_Monthly = 'bof_Monthly'
802
+ bof_Quarterly = 'bof_Quarterly'
803
+ bof_HalfYearly = 'bof_HalfYearly'
804
+ bof_Annually = 'bof_Annually'
805
+ bof_OneTime = 'bof_OneTime'
806
+ bof_EveryXDays = 'bof_EveryXDays'
807
+
808
+ class BoFrequencyTypeEnum(StrEnum):
809
+ ftDaily = 'ftDaily'
810
+ ftWeekly = 'ftWeekly'
811
+ ftMonthly = 'ftMonthly'
812
+ ftQuarterly = 'ftQuarterly'
813
+ ftSemiannually = 'ftSemiannually'
814
+ ftAnnually = 'ftAnnually'
815
+ ftOneTime = 'ftOneTime'
816
+ ftTemplate = 'ftTemplate'
817
+ ftNotExecuted = 'ftNotExecuted'
818
+
819
+ class BoGLMethods(StrEnum):
820
+ glm_WH = 'glm_WH'
821
+ glm_ItemClass = 'glm_ItemClass'
822
+ glm_ItemLevel = 'glm_ItemLevel'
823
+
824
+ class BoGSTRegnTypeEnum(StrEnum):
825
+ invalid = 'invalid'
826
+ gstRegularTDSISD = 'gstRegularTDSISD'
827
+ gstCasualTaxablePerson = 'gstCasualTaxablePerson'
828
+ gstCompositionLevy = 'gstCompositionLevy'
829
+ gstGoverDepartPSU = 'gstGoverDepartPSU'
830
+ gstNonResidentTaxablePerson = 'gstNonResidentTaxablePerson'
831
+ gstUNAgencyEmbassy = 'gstUNAgencyEmbassy'
832
+
833
+ class BoGenderTypes(StrEnum):
834
+ gt_Female = 'gt_Female'
835
+ gt_Male = 'gt_Male'
836
+ gt_Undefined = 'gt_Undefined'
837
+ gt_Masked = 'gt_Masked'
838
+ gt_Invalid = 'gt_Invalid'
839
+
840
+ class BoGridTypeEnum(StrEnum):
841
+ gtCombination = 'gtCombination'
842
+ gtContinuousLine = 'gtContinuousLine'
843
+ gtBrokenLine = 'gtBrokenLine'
844
+ gtDots = 'gtDots'
845
+
846
+ class BoHorizontalAlignmentEnum(StrEnum):
847
+ rlhjRight = 'rlhjRight'
848
+ rlhjLeft = 'rlhjLeft'
849
+ rlhjCentralized = 'rlhjCentralized'
850
+ rlhjLanguageDependent = 'rlhjLanguageDependent'
851
+
852
+ class BoInterimDocTypes(StrEnum):
853
+ boidt_None = 'boidt_None'
854
+ boidt_ExchangeRate = 'boidt_ExchangeRate'
855
+ boidt_CashDiscount = 'boidt_CashDiscount'
856
+
857
+ class BoInventorySystem(StrEnum):
858
+ bis_MovingAverage = 'bis_MovingAverage'
859
+ bis_Standard = 'bis_Standard'
860
+ bis_FIFO = 'bis_FIFO'
861
+ bis_SNB = 'bis_SNB'
862
+
863
+ class BoIssueMethod(StrEnum):
864
+ im_Backflush = 'im_Backflush'
865
+ im_Manual = 'im_Manual'
866
+
867
+ class BoItemTreeTypes(StrEnum):
868
+ iNotATree = 'iNotATree'
869
+ iAssemblyTree = 'iAssemblyTree'
870
+ iSalesTree = 'iSalesTree'
871
+ iProductionTree = 'iProductionTree'
872
+ iTemplateTree = 'iTemplateTree'
873
+ iIngredient = 'iIngredient'
874
+
875
+ class BoLineBreakEnum(StrEnum):
876
+ rlsAllowOverflow = 'rlsAllowOverflow'
877
+ rlsAdjustToCell = 'rlsAdjustToCell'
878
+ rlsDivideIntoRows = 'rlsDivideIntoRows'
879
+
880
+ class BoMRPComponentWarehouse(StrEnum):
881
+ bomcw_BOM = 'bomcw_BOM'
882
+ bomcw_Parent = 'bomcw_Parent'
883
+
884
+ class BoMYFTypeEnum(StrEnum):
885
+ myft_WholesaleSales = 'myft_WholesaleSales'
886
+ myft_RetailSales = 'myft_RetailSales'
887
+ myft_WholesalePurchases = 'myft_WholesalePurchases'
888
+ myft_OtherExpenseTransactions = 'myft_OtherExpenseTransactions'
889
+
890
+ class BoManageMethod(StrEnum):
891
+ bomm_OnEveryTransaction = 'bomm_OnEveryTransaction'
892
+ bomm_OnReleaseOnly = 'bomm_OnReleaseOnly'
893
+
894
+ class BoMaterialTypes(StrEnum):
895
+ mt_GoodsForReseller = 'mt_GoodsForReseller'
896
+ mt_FinishedGoods = 'mt_FinishedGoods'
897
+ mt_GoodsInProcess = 'mt_GoodsInProcess'
898
+ mt_RawMaterial = 'mt_RawMaterial'
899
+ mt_Package = 'mt_Package'
900
+ mt_SubProduct = 'mt_SubProduct'
901
+ mt_IntermediateMaterial = 'mt_IntermediateMaterial'
902
+ mt_ConsumerMaterial = 'mt_ConsumerMaterial'
903
+ mt_FixedAsset = 'mt_FixedAsset'
904
+ mt_Service = 'mt_Service'
905
+ mt_OtherInput = 'mt_OtherInput'
906
+ mt_Other = 'mt_Other'
907
+
908
+ class BoMeritalStatuses(StrEnum):
909
+ mts_Single = 'mts_Single'
910
+ mts_Married = 'mts_Married'
911
+ mts_Divorced = 'mts_Divorced'
912
+ mts_Widowed = 'mts_Widowed'
913
+ mts_NotSpecified = 'mts_NotSpecified'
914
+
915
+ class BoMoneyPrecisionTypes(StrEnum):
916
+ mpt_Sum = 'mpt_Sum'
917
+ mpt_Price = 'mpt_Price'
918
+ mpt_Rate = 'mpt_Rate'
919
+ mpt_Quantity = 'mpt_Quantity'
920
+ mpt_Percent = 'mpt_Percent'
921
+ mpt_Measure = 'mpt_Measure'
922
+ mpt_Tax = 'mpt_Tax'
923
+
924
+ class BoMsgPriorities(StrEnum):
925
+ pr_Low = 'pr_Low'
926
+ pr_Normal = 'pr_Normal'
927
+ pr_High = 'pr_High'
928
+
929
+ class BoMsgRcpTypes(StrEnum):
930
+ rt_RandomUser = 'rt_RandomUser'
931
+ rt_ContactPerson = 'rt_ContactPerson'
932
+ rt_InternalUser = 'rt_InternalUser'
933
+
934
+ class BoORCTPaymentTypeEnum(StrEnum):
935
+ bopt_None = 'bopt_None'
936
+ bopt_Electronic = 'bopt_Electronic'
937
+ bopt_Post = 'bopt_Post'
938
+ bopt_Telegraph = 'bopt_Telegraph'
939
+ bopt_Express = 'bopt_Express'
940
+
941
+ class BoObjectTypes(StrEnum):
942
+ oChartOfAccounts = 'oChartOfAccounts'
943
+ oBusinessPartners = 'oBusinessPartners'
944
+ oBanks = 'oBanks'
945
+ oItems = 'oItems'
946
+ oVatGroups = 'oVatGroups'
947
+ oPriceLists = 'oPriceLists'
948
+ oSpecialPrices = 'oSpecialPrices'
949
+ oItemProperties = 'oItemProperties'
950
+ oBusinessPartnerGroups = 'oBusinessPartnerGroups'
951
+ oUsers = 'oUsers'
952
+ oInvoices = 'oInvoices'
953
+ oCreditNotes = 'oCreditNotes'
954
+ oDeliveryNotes = 'oDeliveryNotes'
955
+ oReturns = 'oReturns'
956
+ oOrders = 'oOrders'
957
+ oPurchaseInvoices = 'oPurchaseInvoices'
958
+ oPurchaseCreditNotes = 'oPurchaseCreditNotes'
959
+ oPurchaseDeliveryNotes = 'oPurchaseDeliveryNotes'
960
+ oPurchaseReturns = 'oPurchaseReturns'
961
+ oPurchaseOrders = 'oPurchaseOrders'
962
+ oQuotations = 'oQuotations'
963
+ oIncomingPayments = 'oIncomingPayments'
964
+ oJournalVouchers = 'oJournalVouchers'
965
+ oJournalEntries = 'oJournalEntries'
966
+ oStockTakings = 'oStockTakings'
967
+ oContacts = 'oContacts'
968
+ oCreditCards = 'oCreditCards'
969
+ oCurrencyCodes = 'oCurrencyCodes'
970
+ oPaymentTermsTypes = 'oPaymentTermsTypes'
971
+ oBankPages = 'oBankPages'
972
+ oManufacturers = 'oManufacturers'
973
+ oVendorPayments = 'oVendorPayments'
974
+ oLandedCostsCodes = 'oLandedCostsCodes'
975
+ oShippingTypes = 'oShippingTypes'
976
+ oLengthMeasures = 'oLengthMeasures'
977
+ oWeightMeasures = 'oWeightMeasures'
978
+ oItemGroups = 'oItemGroups'
979
+ oSalesPersons = 'oSalesPersons'
980
+ oCustomsGroups = 'oCustomsGroups'
981
+ oChecksforPayment = 'oChecksforPayment'
982
+ oInventoryGenEntry = 'oInventoryGenEntry'
983
+ oInventoryGenExit = 'oInventoryGenExit'
984
+ oWarehouses = 'oWarehouses'
985
+ oCommissionGroups = 'oCommissionGroups'
986
+ oProductTrees = 'oProductTrees'
987
+ oStockTransfer = 'oStockTransfer'
988
+ oWorkOrders = 'oWorkOrders'
989
+ oCreditPaymentMethods = 'oCreditPaymentMethods'
990
+ oCreditCardPayments = 'oCreditCardPayments'
991
+ oAlternateCatNum = 'oAlternateCatNum'
992
+ oBudget = 'oBudget'
993
+ oBudgetDistribution = 'oBudgetDistribution'
994
+ oMessages = 'oMessages'
995
+ oBudgetScenarios = 'oBudgetScenarios'
996
+ oUserDefaultGroups = 'oUserDefaultGroups'
997
+ oSalesOpportunities = 'oSalesOpportunities'
998
+ oSalesStages = 'oSalesStages'
999
+ oActivityTypes = 'oActivityTypes'
1000
+ oActivityLocations = 'oActivityLocations'
1001
+ oDrafts = 'oDrafts'
1002
+ oDeductionTaxHierarchies = 'oDeductionTaxHierarchies'
1003
+ oDeductionTaxGroups = 'oDeductionTaxGroups'
1004
+ oAdditionalExpenses = 'oAdditionalExpenses'
1005
+ oSalesTaxAuthorities = 'oSalesTaxAuthorities'
1006
+ oSalesTaxAuthoritiesTypes = 'oSalesTaxAuthoritiesTypes'
1007
+ oSalesTaxCodes = 'oSalesTaxCodes'
1008
+ oQueryCategories = 'oQueryCategories'
1009
+ oFactoringIndicators = 'oFactoringIndicators'
1010
+ oPaymentsDrafts = 'oPaymentsDrafts'
1011
+ oAccountSegmentations = 'oAccountSegmentations'
1012
+ oAccountSegmentationCategories = 'oAccountSegmentationCategories'
1013
+ oWarehouseLocations = 'oWarehouseLocations'
1014
+ oForms1099 = 'oForms1099'
1015
+ oInventoryCycles = 'oInventoryCycles'
1016
+ oWizardPaymentMethods = 'oWizardPaymentMethods'
1017
+ oBPPriorities = 'oBPPriorities'
1018
+ oDunningLetters = 'oDunningLetters'
1019
+ oUserFields = 'oUserFields'
1020
+ oUserTables = 'oUserTables'
1021
+ oPickLists = 'oPickLists'
1022
+ oPaymentRunExport = 'oPaymentRunExport'
1023
+ oUserQueries = 'oUserQueries'
1024
+ oMaterialRevaluation = 'oMaterialRevaluation'
1025
+ oCorrectionPurchaseInvoice = 'oCorrectionPurchaseInvoice'
1026
+ oCorrectionPurchaseInvoiceReversal = 'oCorrectionPurchaseInvoiceReversal'
1027
+ oCorrectionInvoice = 'oCorrectionInvoice'
1028
+ oCorrectionInvoiceReversal = 'oCorrectionInvoiceReversal'
1029
+ oContractTemplates = 'oContractTemplates'
1030
+ oEmployeesInfo = 'oEmployeesInfo'
1031
+ oCustomerEquipmentCards = 'oCustomerEquipmentCards'
1032
+ oWithholdingTaxCodes = 'oWithholdingTaxCodes'
1033
+ oBillOfExchangeTransactions = 'oBillOfExchangeTransactions'
1034
+ oKnowledgeBaseSolutions = 'oKnowledgeBaseSolutions'
1035
+ oServiceContracts = 'oServiceContracts'
1036
+ oServiceCalls = 'oServiceCalls'
1037
+ oUserKeys = 'oUserKeys'
1038
+ oQueue = 'oQueue'
1039
+ oSalesForecast = 'oSalesForecast'
1040
+ oTerritories = 'oTerritories'
1041
+ oIndustries = 'oIndustries'
1042
+ oProductionOrders = 'oProductionOrders'
1043
+ oDownPayments = 'oDownPayments'
1044
+ oPurchaseDownPayments = 'oPurchaseDownPayments'
1045
+ oPackagesTypes = 'oPackagesTypes'
1046
+ oUserObjectsMD = 'oUserObjectsMD'
1047
+ oTeams = 'oTeams'
1048
+ oRelationships = 'oRelationships'
1049
+ oUserPermissionTree = 'oUserPermissionTree'
1050
+ oActivityStatus = 'oActivityStatus'
1051
+ oChooseFromList = 'oChooseFromList'
1052
+ oFormattedSearches = 'oFormattedSearches'
1053
+ oAttachments2 = 'oAttachments2'
1054
+ oUserLanguages = 'oUserLanguages'
1055
+ oMultiLanguageTranslations = 'oMultiLanguageTranslations'
1056
+ oDynamicSystemStrings = 'oDynamicSystemStrings'
1057
+ oHouseBankAccounts = 'oHouseBankAccounts'
1058
+ oBusinessPlaces = 'oBusinessPlaces'
1059
+ oLocalEra = 'oLocalEra'
1060
+ oNotaFiscalCFOP = 'oNotaFiscalCFOP'
1061
+ oNotaFiscalCST = 'oNotaFiscalCST'
1062
+ oNotaFiscalUsage = 'oNotaFiscalUsage'
1063
+ oClosingDateProcedure = 'oClosingDateProcedure'
1064
+ oBPFiscalRegistryID = 'oBPFiscalRegistryID'
1065
+ oSalesTaxInvoice = 'oSalesTaxInvoice'
1066
+ oPurchaseTaxInvoice = 'oPurchaseTaxInvoice'
1067
+ oPurchaseQuotations = 'oPurchaseQuotations'
1068
+ oStockTransferDraft = 'oStockTransferDraft'
1069
+ oInventoryTransferRequest = 'oInventoryTransferRequest'
1070
+ oPurchaseRequest = 'oPurchaseRequest'
1071
+ oReturnRequest = 'oReturnRequest'
1072
+ oGoodsReturnRequest = 'oGoodsReturnRequest'
1073
+ oSelfInvoice = 'oSelfInvoice'
1074
+ oSelfCreditMemo = 'oSelfCreditMemo'
1075
+
1076
+ class BoOpenIncPayment(StrEnum):
1077
+ oip_No = 'oip_No'
1078
+ oip_Cash = 'oip_Cash'
1079
+ oip_Checks = 'oip_Checks'
1080
+ oip_Credit = 'oip_Credit'
1081
+ oip_BankTransfer = 'oip_BankTransfer'
1082
+
1083
+ class BoOperationEnum(StrEnum):
1084
+ rloNone = 'rloNone'
1085
+ rloAddition = 'rloAddition'
1086
+ rloSubtraction = 'rloSubtraction'
1087
+ rloMultiplication = 'rloMultiplication'
1088
+ rloDivision = 'rloDivision'
1089
+ rloPercentage = 'rloPercentage'
1090
+ rloLeftPartCharacters = 'rloLeftPartCharacters'
1091
+ rloRightPartMantissa = 'rloRightPartMantissa'
1092
+ rloRound = 'rloRound'
1093
+ rloConcat = 'rloConcat'
1094
+ rloRight = 'rloRight'
1095
+ rloLeft = 'rloLeft'
1096
+ rloSentence = 'rloSentence'
1097
+ rloLength = 'rloLength'
1098
+ rloCurrency = 'rloCurrency'
1099
+ rloNumber = 'rloNumber'
1100
+ rloLessThan = 'rloLessThan'
1101
+ rloLessOrEqual = 'rloLessOrEqual'
1102
+ rloEqual = 'rloEqual'
1103
+ rloNotEqual = 'rloNotEqual'
1104
+ rloGreaterOrEqual = 'rloGreaterOrEqual'
1105
+ rloGreaterThan = 'rloGreaterThan'
1106
+
1107
+ class BoOpexStatus(StrEnum):
1108
+ bos_Open = 'bos_Open'
1109
+ bos_Close = 'bos_Close'
1110
+
1111
+ class BoOrientationEnum(StrEnum):
1112
+ ortVertical = 'ortVertical'
1113
+ ortHorizontal = 'ortHorizontal'
1114
+
1115
+ class BoPayTermDueTypes(StrEnum):
1116
+ pdt_MonthEnd = 'pdt_MonthEnd'
1117
+ pdt_HalfMonth = 'pdt_HalfMonth'
1118
+ pdt_MonthStart = 'pdt_MonthStart'
1119
+ pdt_None = 'pdt_None'
1120
+
1121
+ class BoPaymentMeansEnum(StrEnum):
1122
+ bopmCheck = 'bopmCheck'
1123
+ bopmBankTransfer = 'bopmBankTransfer'
1124
+ bopmBillOfExchange = 'bopmBillOfExchange'
1125
+
1126
+ class BoPaymentPriorities(StrEnum):
1127
+ bopp_Priority_1 = 'bopp_Priority_1'
1128
+ bopp_Priority_2 = 'bopp_Priority_2'
1129
+ bopp_Priority_3 = 'bopp_Priority_3'
1130
+ bopp_Priority_4 = 'bopp_Priority_4'
1131
+ bopp_Priority_5 = 'bopp_Priority_5'
1132
+ bopp_Priority_6 = 'bopp_Priority_6'
1133
+
1134
+ class BoPaymentTypeEnum(StrEnum):
1135
+ boptIncoming = 'boptIncoming'
1136
+ boptOutgoing = 'boptOutgoing'
1137
+
1138
+ class BoPaymentsObjectType(StrEnum):
1139
+ bopot_IncomingPayments = 'bopot_IncomingPayments'
1140
+ bopot_OutgoingPayments = 'bopot_OutgoingPayments'
1141
+
1142
+ class BoPermission(StrEnum):
1143
+ boper_Full = 'boper_Full'
1144
+ boper_ReadOnly = 'boper_ReadOnly'
1145
+ boper_None = 'boper_None'
1146
+ boper_Various = 'boper_Various'
1147
+ boper_Undefined = 'boper_Undefined'
1148
+
1149
+ class BoPickStatus(StrEnum):
1150
+ ps_Released = 'ps_Released'
1151
+ ps_Picked = 'ps_Picked'
1152
+ ps_PartiallyPicked = 'ps_PartiallyPicked'
1153
+ ps_PartiallyDelivered = 'ps_PartiallyDelivered'
1154
+ ps_Closed = 'ps_Closed'
1155
+
1156
+ class BoPictureSizeEnum(StrEnum):
1157
+ rlpsOriginalSize = 'rlpsOriginalSize'
1158
+ rlpsFitFieldSizeNonProportionally = 'rlpsFitFieldSizeNonProportionally'
1159
+ rlpsFitFieldSizeProportionally = 'rlpsFitFieldSizeProportionally'
1160
+ rlpsFitFieldHeight = 'rlpsFitFieldHeight'
1161
+ rlpsFitFieldWidth = 'rlpsFitFieldWidth'
1162
+
1163
+ class BoPlanningSystem(StrEnum):
1164
+ bop_MRP = 'bop_MRP'
1165
+ bop_None = 'bop_None'
1166
+
1167
+ class BoPriceListGroupNum(StrEnum):
1168
+ boplgn_Group1 = 'boplgn_Group1'
1169
+ boplgn_Group2 = 'boplgn_Group2'
1170
+ boplgn_Group3 = 'boplgn_Group3'
1171
+ boplgn_Group4 = 'boplgn_Group4'
1172
+
1173
+ class BoPrintReceiptEnum(StrEnum):
1174
+ boprcAlways = 'boprcAlways'
1175
+ boprcNo = 'boprcNo'
1176
+ boprcOnlyWhenAdding = 'boprcOnlyWhenAdding'
1177
+
1178
+ class BoProcurementMethod(StrEnum):
1179
+ bom_Buy = 'bom_Buy'
1180
+ bom_Make = 'bom_Make'
1181
+
1182
+ class BoProductSources(StrEnum):
1183
+ bps_PurchasedFromDomVendor = 'bps_PurchasedFromDomVendor'
1184
+ bps_ImportedByCompany = 'bps_ImportedByCompany'
1185
+ bps_ImportedGoodsPurchasedFromDomVendor = 'bps_ImportedGoodsPurchasedFromDomVendor'
1186
+ bps_ProducedByCompany = 'bps_ProducedByCompany'
1187
+
1188
+ class BoProductionOrderOriginEnum(StrEnum):
1189
+ bopooManual = 'bopooManual'
1190
+ bopooMRP = 'bopooMRP'
1191
+ bopooSalesOrder = 'bopooSalesOrder'
1192
+ bopooProductionOrder = 'bopooProductionOrder'
1193
+
1194
+ class BoProductionOrderStatusEnum(StrEnum):
1195
+ boposPlanned = 'boposPlanned'
1196
+ boposReleased = 'boposReleased'
1197
+ boposClosed = 'boposClosed'
1198
+ boposCancelled = 'boposCancelled'
1199
+
1200
+ class BoProductionOrderTypeEnum(StrEnum):
1201
+ bopotStandard = 'bopotStandard'
1202
+ bopotSpecial = 'bopotSpecial'
1203
+ bopotDisassembly = 'bopotDisassembly'
1204
+
1205
+ class BoQueryTypeEnum(StrEnum):
1206
+ qtRegular = 'qtRegular'
1207
+ qtWizard = 'qtWizard'
1208
+
1209
+ class BoRcptCredTypes(StrEnum):
1210
+ cr_Regular = 'cr_Regular'
1211
+ cr_Telephone = 'cr_Telephone'
1212
+ cr_InternetTransaction = 'cr_InternetTransaction'
1213
+
1214
+ class BoRcptInvTypes(StrEnum):
1215
+ it_AllTransactions = 'it_AllTransactions'
1216
+ it_OpeningBalance = 'it_OpeningBalance'
1217
+ it_ClosingBalance = 'it_ClosingBalance'
1218
+ it_Invoice = 'it_Invoice'
1219
+ it_CredItnote = 'it_CredItnote'
1220
+ it_TaxInvoice = 'it_TaxInvoice'
1221
+ it_Return = 'it_Return'
1222
+ it_PurchaseInvoice = 'it_PurchaseInvoice'
1223
+ it_PurchaseCreditNote = 'it_PurchaseCreditNote'
1224
+ it_PurchaseDeliveryNote = 'it_PurchaseDeliveryNote'
1225
+ it_PurchaseReturn = 'it_PurchaseReturn'
1226
+ it_Receipt = 'it_Receipt'
1227
+ it_Deposit = 'it_Deposit'
1228
+ it_JournalEntry = 'it_JournalEntry'
1229
+ it_PaymentAdvice = 'it_PaymentAdvice'
1230
+ it_ChequesForPayment = 'it_ChequesForPayment'
1231
+ it_StockReconciliations = 'it_StockReconciliations'
1232
+ it_GeneralReceiptToStock = 'it_GeneralReceiptToStock'
1233
+ it_GeneralReleaseFromStock = 'it_GeneralReleaseFromStock'
1234
+ it_TransferBetweenWarehouses = 'it_TransferBetweenWarehouses'
1235
+ it_WorkInstructions = 'it_WorkInstructions'
1236
+ it_DeferredDeposit = 'it_DeferredDeposit'
1237
+ it_CorrectionInvoice = 'it_CorrectionInvoice'
1238
+ it_APCorrectionInvoice = 'it_APCorrectionInvoice'
1239
+ it_ARCorrectionInvoice = 'it_ARCorrectionInvoice'
1240
+ it_DownPayment = 'it_DownPayment'
1241
+ it_PurchaseDownPayment = 'it_PurchaseDownPayment'
1242
+
1243
+ class BoRcptTypes(StrEnum):
1244
+ rCustomer = 'rCustomer'
1245
+ rAccount = 'rAccount'
1246
+ rSupplier = 'rSupplier'
1247
+
1248
+ class BoRemindUnits(StrEnum):
1249
+ reu_Days = 'reu_Days'
1250
+ reu_Weeks = 'reu_Weeks'
1251
+ reu_Month = 'reu_Month'
1252
+
1253
+ class BoReportLayoutItemTypeEnum(StrEnum):
1254
+ rlitPageHeader = 'rlitPageHeader'
1255
+ rlitStartOfReport = 'rlitStartOfReport'
1256
+ rlitRepetitiveAreaHeader = 'rlitRepetitiveAreaHeader'
1257
+ rlitRepetitiveArea = 'rlitRepetitiveArea'
1258
+ rlitRepetitiveAreaFooter = 'rlitRepetitiveAreaFooter'
1259
+ rlitEndOfReport = 'rlitEndOfReport'
1260
+ rlitPageFooter = 'rlitPageFooter'
1261
+ rlitTextField = 'rlitTextField'
1262
+ rlitPictureField = 'rlitPictureField'
1263
+ rlitUserField = 'rlitUserField'
1264
+
1265
+ class BoResolutionUnits(StrEnum):
1266
+ rsu_Days = 'rsu_Days'
1267
+ rsu_Hours = 'rsu_Hours'
1268
+
1269
+ class BoResponseUnit(StrEnum):
1270
+ boru_Day = 'boru_Day'
1271
+ boru_Hour = 'boru_Hour'
1272
+
1273
+ class BoRoleInTeam(StrEnum):
1274
+ borit_Leader = 'borit_Leader'
1275
+ borit_Member = 'borit_Member'
1276
+
1277
+ class BoRoundingMethod(StrEnum):
1278
+ borm_FixedEnding = 'borm_FixedEnding'
1279
+ borm_FixedInterval = 'borm_FixedInterval'
1280
+ borm_NoRounding = 'borm_NoRounding'
1281
+ borm_RoundToFullAmount = 'borm_RoundToFullAmount'
1282
+ borm_RoundToFullDecAmount = 'borm_RoundToFullDecAmount'
1283
+ borm_RoundToFullTensAmount = 'borm_RoundToFullTensAmount'
1284
+
1285
+ class BoRoundingRule(StrEnum):
1286
+ borrRoundDown = 'borrRoundDown'
1287
+ borrRoundOff = 'borrRoundOff'
1288
+ borrRoundUp = 'borrRoundUp'
1289
+
1290
+ class BoSalaryCostUnits(StrEnum):
1291
+ scu_Hour = 'scu_Hour'
1292
+ scu_Day = 'scu_Day'
1293
+ scu_Week = 'scu_Week'
1294
+ scu_Month = 'scu_Month'
1295
+ scu_Year = 'scu_Year'
1296
+ scu_Semimonthly = 'scu_Semimonthly'
1297
+ scu_Biweekly = 'scu_Biweekly'
1298
+
1299
+ class BoSerialNumberStatus(StrEnum):
1300
+ sns_Active = 'sns_Active'
1301
+ sns_Returned = 'sns_Returned'
1302
+ sns_Terminated = 'sns_Terminated'
1303
+ sns_Loaned = 'sns_Loaned'
1304
+ sns_InLab = 'sns_InLab'
1305
+
1306
+ class BoSeriesGroupEnum(StrEnum):
1307
+ sg_Group1 = 'sg_Group1'
1308
+ sg_Group2 = 'sg_Group2'
1309
+ sg_Group3 = 'sg_Group3'
1310
+ sg_Group4 = 'sg_Group4'
1311
+ sg_Group5 = 'sg_Group5'
1312
+ sg_Group6 = 'sg_Group6'
1313
+ sg_Group7 = 'sg_Group7'
1314
+ sg_Group8 = 'sg_Group8'
1315
+ sg_Group9 = 'sg_Group9'
1316
+ sg_Group10 = 'sg_Group10'
1317
+
1318
+ class BoSeriesTypeEnum(StrEnum):
1319
+ stDocument = 'stDocument'
1320
+ stBusinessPartner = 'stBusinessPartner'
1321
+ stItem = 'stItem'
1322
+ stResource = 'stResource'
1323
+
1324
+ class BoServicePaymentMethods(StrEnum):
1325
+ spmAccreditedToBankAccount = 'spmAccreditedToBankAccount'
1326
+ spmBankTransfer = 'spmBankTransfer'
1327
+ spmOther = 'spmOther'
1328
+
1329
+ class BoServiceSupplyMethods(StrEnum):
1330
+ ssmImmediate = 'ssmImmediate'
1331
+ ssmToMoreResumptions = 'ssmToMoreResumptions'
1332
+
1333
+ class BoServiceTypes(StrEnum):
1334
+ bst_Regular = 'bst_Regular'
1335
+ bst_Warranty = 'bst_Warranty'
1336
+
1337
+ class BoSoClosedInTypes(StrEnum):
1338
+ sos_Months = 'sos_Months'
1339
+ sos_Weeks = 'sos_Weeks'
1340
+ sos_Days = 'sos_Days'
1341
+
1342
+ class BoSoOsStatus(StrEnum):
1343
+ sos_Open = 'sos_Open'
1344
+ sos_Missed = 'sos_Missed'
1345
+ sos_Sold = 'sos_Sold'
1346
+
1347
+ class BoSoStatus(StrEnum):
1348
+ so_Open = 'so_Open'
1349
+ so_Closed = 'so_Closed'
1350
+
1351
+ class BoSortTypeEnum(StrEnum):
1352
+ rlstAlpha = 'rlstAlpha'
1353
+ rlstNumeric = 'rlstNumeric'
1354
+ rlstMoney = 'rlstMoney'
1355
+ rlstDate = 'rlstDate'
1356
+
1357
+ class BoStatus(StrEnum):
1358
+ bost_Open = 'bost_Open'
1359
+ bost_Close = 'bost_Close'
1360
+ bost_Paid = 'bost_Paid'
1361
+ bost_Delivered = 'bost_Delivered'
1362
+
1363
+ class BoStckTrnDir(StrEnum):
1364
+ bos_TransferToTechnician = 'bos_TransferToTechnician'
1365
+ bos_TransferFromTechnician = 'bos_TransferFromTechnician'
1366
+
1367
+ class BoSubFrequencyTypeEnum(StrEnum):
1368
+ sftEmpty = 'sftEmpty'
1369
+ sftDailyEvery1 = 'sftDailyEvery1'
1370
+ sftDailyEvery2 = 'sftDailyEvery2'
1371
+ sftDailyEvery3 = 'sftDailyEvery3'
1372
+ sftDailyEvery4 = 'sftDailyEvery4'
1373
+ sftDailyEvery5 = 'sftDailyEvery5'
1374
+ sftDailyEvery6 = 'sftDailyEvery6'
1375
+ sftDailyEvery7 = 'sftDailyEvery7'
1376
+ sftDailyEvery8 = 'sftDailyEvery8'
1377
+ sftDailyEvery9 = 'sftDailyEvery9'
1378
+ sftDailyEvery10 = 'sftDailyEvery10'
1379
+ sftDailyEvery15 = 'sftDailyEvery15'
1380
+ sftDailyEvery30 = 'sftDailyEvery30'
1381
+ sftDailyEvery45 = 'sftDailyEvery45'
1382
+ sftDailyEvery60 = 'sftDailyEvery60'
1383
+ sftWeeklyOnSunday = 'sftWeeklyOnSunday'
1384
+ sftWeeklyOnMonday = 'sftWeeklyOnMonday'
1385
+ sftWeeklyOnTuesday = 'sftWeeklyOnTuesday'
1386
+ sftWeeklyOnWednesday = 'sftWeeklyOnWednesday'
1387
+ sftWeeklyOnThursday = 'sftWeeklyOnThursday'
1388
+ sftWeeklyOnFriday = 'sftWeeklyOnFriday'
1389
+ sftWeeklyOnSaturday = 'sftWeeklyOnSaturday'
1390
+ sftMonthlyOn1 = 'sftMonthlyOn1'
1391
+ sftMonthlyOn2 = 'sftMonthlyOn2'
1392
+ sftMonthlyOn3 = 'sftMonthlyOn3'
1393
+ sftMonthlyOn4 = 'sftMonthlyOn4'
1394
+ sftMonthlyOn5 = 'sftMonthlyOn5'
1395
+ sftMonthlyOn6 = 'sftMonthlyOn6'
1396
+ sftMonthlyOn7 = 'sftMonthlyOn7'
1397
+ sftMonthlyOn8 = 'sftMonthlyOn8'
1398
+ sftMonthlyOn9 = 'sftMonthlyOn9'
1399
+ sftMonthlyOn10 = 'sftMonthlyOn10'
1400
+ sftMonthlyOn11 = 'sftMonthlyOn11'
1401
+ sftMonthlyOn12 = 'sftMonthlyOn12'
1402
+ sftMonthlyOn13 = 'sftMonthlyOn13'
1403
+ sftMonthlyOn14 = 'sftMonthlyOn14'
1404
+ sftMonthlyOn15 = 'sftMonthlyOn15'
1405
+ sftMonthlyOn16 = 'sftMonthlyOn16'
1406
+ sftMonthlyOn17 = 'sftMonthlyOn17'
1407
+ sftMonthlyOn18 = 'sftMonthlyOn18'
1408
+ sftMonthlyOn19 = 'sftMonthlyOn19'
1409
+ sftMonthlyOn20 = 'sftMonthlyOn20'
1410
+ sftMonthlyOn21 = 'sftMonthlyOn21'
1411
+ sftMonthlyOn22 = 'sftMonthlyOn22'
1412
+ sftMonthlyOn23 = 'sftMonthlyOn23'
1413
+ sftMonthlyOn24 = 'sftMonthlyOn24'
1414
+ sftMonthlyOn25 = 'sftMonthlyOn25'
1415
+ sftMonthlyOn26 = 'sftMonthlyOn26'
1416
+ sftMonthlyOn27 = 'sftMonthlyOn27'
1417
+ sftMonthlyOn28 = 'sftMonthlyOn28'
1418
+ sftMonthlyOn29 = 'sftMonthlyOn29'
1419
+ sftMonthlyOn30 = 'sftMonthlyOn30'
1420
+ sftMonthlyOn31 = 'sftMonthlyOn31'
1421
+
1422
+ class BoSubPeriodTypeEnum(StrEnum):
1423
+ spt_Year = 'spt_Year'
1424
+ spt_Quarters = 'spt_Quarters'
1425
+ spt_Months = 'spt_Months'
1426
+ spt_Days = 'spt_Days'
1427
+
1428
+ class BoSuppLangs(StrEnum):
1429
+ ln_Null = 'ln_Null'
1430
+ ln_Hebrew = 'ln_Hebrew'
1431
+ ln_Spanish_Ar = 'ln_Spanish_Ar'
1432
+ ln_English = 'ln_English'
1433
+ ln_Polish = 'ln_Polish'
1434
+ ln_English_Sg = 'ln_English_Sg'
1435
+ ln_Spanish_Pa = 'ln_Spanish_Pa'
1436
+ ln_English_Gb = 'ln_English_Gb'
1437
+ ln_German = 'ln_German'
1438
+ ln_Serbian = 'ln_Serbian'
1439
+ ln_Danish = 'ln_Danish'
1440
+ ln_Norwegian = 'ln_Norwegian'
1441
+ ln_Italian = 'ln_Italian'
1442
+ ln_Hungarian = 'ln_Hungarian'
1443
+ ln_Chinese = 'ln_Chinese'
1444
+ ln_Dutch = 'ln_Dutch'
1445
+ ln_Finnish = 'ln_Finnish'
1446
+ ln_Greek = 'ln_Greek'
1447
+ ln_Portuguese = 'ln_Portuguese'
1448
+ ln_Swedish = 'ln_Swedish'
1449
+ ln_English_Cy = 'ln_English_Cy'
1450
+ ln_French = 'ln_French'
1451
+ ln_Spanish = 'ln_Spanish'
1452
+ ln_Russian = 'ln_Russian'
1453
+ ln_Spanish_La = 'ln_Spanish_La'
1454
+ ln_Czech_Cz = 'ln_Czech_Cz'
1455
+ ln_Slovak_Sk = 'ln_Slovak_Sk'
1456
+ ln_Korean_Kr = 'ln_Korean_Kr'
1457
+ ln_Portuguese_Br = 'ln_Portuguese_Br'
1458
+ ln_Japanese_Jp = 'ln_Japanese_Jp'
1459
+ ln_Turkish_Tr = 'ln_Turkish_Tr'
1460
+ ln_Arabic = 'ln_Arabic'
1461
+ ln_Ukrainian = 'ln_Ukrainian'
1462
+ ln_TrdtnlChinese_Hk = 'ln_TrdtnlChinese_Hk'
1463
+
1464
+ class BoSvcCallPriorities(StrEnum):
1465
+ scp_Low = 'scp_Low'
1466
+ scp_Medium = 'scp_Medium'
1467
+ scp_High = 'scp_High'
1468
+
1469
+ class BoSvcContractStatus(StrEnum):
1470
+ scs_Approved = 'scs_Approved'
1471
+ scs_Frozen = 'scs_Frozen'
1472
+ scs_Draft = 'scs_Draft'
1473
+ scs_Terminated = 'scs_Terminated'
1474
+
1475
+ class BoSvcEpxDocTypes(StrEnum):
1476
+ edt_Invoice = 'edt_Invoice'
1477
+ edt_Delivery = 'edt_Delivery'
1478
+ edt_Return = 'edt_Return'
1479
+ edt_StockTransfer = 'edt_StockTransfer'
1480
+ edt_CreditMemo = 'edt_CreditMemo'
1481
+ edt_Order = 'edt_Order'
1482
+ edt_Quotation = 'edt_Quotation'
1483
+ edt_AP_Invoice = 'edt_AP_Invoice'
1484
+ edt_AP_CreditMemo = 'edt_AP_CreditMemo'
1485
+ edt_GoodsReceipt = 'edt_GoodsReceipt'
1486
+ edt_GoodsReturn = 'edt_GoodsReturn'
1487
+ edt_PurchaseOrder = 'edt_PurchaseOrder'
1488
+ edt_PurchaseQuotation = 'edt_PurchaseQuotation'
1489
+ edt_AR_CorrectionInvoice = 'edt_AR_CorrectionInvoice'
1490
+ edt_AP_CorrectionInvoice = 'edt_AP_CorrectionInvoice'
1491
+ edt_Return_Request = 'edt_Return_Request'
1492
+ edt_Goods_Return_Request = 'edt_Goods_Return_Request'
1493
+
1494
+ class BoSvcExpPartTypes(StrEnum):
1495
+ sep_Inventory = 'sep_Inventory'
1496
+ sep_NonInventory = 'sep_NonInventory'
1497
+
1498
+ class BoTCDConditionEnum(StrEnum):
1499
+ tcdcNone = 'tcdcNone'
1500
+ tcdcFederalTaxID = 'tcdcFederalTaxID'
1501
+ tcdcShipToAddress = 'tcdcShipToAddress'
1502
+ tcdcShipToStreePOBox = 'tcdcShipToStreePOBox'
1503
+ tcdcShipToCity = 'tcdcShipToCity'
1504
+ tcdcShipToZipCode = 'tcdcShipToZipCode'
1505
+ tcdcShipToCounty = 'tcdcShipToCounty'
1506
+ tcdcShipToState = 'tcdcShipToState'
1507
+ tcdcShipToCountry = 'tcdcShipToCountry'
1508
+ tcdcItem = 'tcdcItem'
1509
+ tcdcItemGroup = 'tcdcItemGroup'
1510
+ tcdcBusinessPartner = 'tcdcBusinessPartner'
1511
+ tcdcCustomerGroup = 'tcdcCustomerGroup'
1512
+ tcdcVendorGroup = 'tcdcVendorGroup'
1513
+ tcdcWarehouse = 'tcdcWarehouse'
1514
+ tcdcGLAccount = 'tcdcGLAccount'
1515
+ tcdcCustomerEquTax = 'tcdcCustomerEquTax'
1516
+ tcdcTaxStatus = 'tcdcTaxStatus'
1517
+ tcdcFreight = 'tcdcFreight'
1518
+ tcdcUDF = 'tcdcUDF'
1519
+ tcdcBranchNumber = 'tcdcBranchNumber'
1520
+ tcdcTypeOfBusiness = 'tcdcTypeOfBusiness'
1521
+
1522
+ class BoTCDDocumentTypeEnum(StrEnum):
1523
+ tcddtItem = 'tcddtItem'
1524
+ tcddtService = 'tcddtService'
1525
+ tcddtItemAndService = 'tcddtItemAndService'
1526
+
1527
+ class BoTaxInvoiceTypes(StrEnum):
1528
+ botit_AlterationCorrectionInvoice = 'botit_AlterationCorrectionInvoice'
1529
+ botit_AlterationInvoice = 'botit_AlterationInvoice'
1530
+ botit_CorrectionInvoice = 'botit_CorrectionInvoice'
1531
+ botit_Invoice = 'botit_Invoice'
1532
+ botit_JournalEntry = 'botit_JournalEntry'
1533
+ botit_Payment = 'botit_Payment'
1534
+
1535
+ class BoTaxOnInstallmentsTypeEnum(StrEnum):
1536
+ toiProportionally = 'toiProportionally'
1537
+ toiTaxInFirst = 'toiTaxInFirst'
1538
+ toiTaxInFirstOnly = 'toiTaxInFirstOnly'
1539
+
1540
+ class BoTaxPostAccEnum(StrEnum):
1541
+ tpa_Default = 'tpa_Default'
1542
+ tpa_SalesTaxAccount = 'tpa_SalesTaxAccount'
1543
+ tpa_PurchaseTaxAccount = 'tpa_PurchaseTaxAccount'
1544
+
1545
+ class BoTaxPostingAccountTypeEnum(StrEnum):
1546
+ tpatEmpty = 'tpatEmpty'
1547
+ tpatSalesTaxAccount = 'tpatSalesTaxAccount'
1548
+ tpatPurchasingTaxAccount = 'tpatPurchasingTaxAccount'
1549
+
1550
+ class BoTaxRoundingRuleTypes(StrEnum):
1551
+ trr_RoundDown = 'trr_RoundDown'
1552
+ trr_RoundUp = 'trr_RoundUp'
1553
+ trr_RoundOff = 'trr_RoundOff'
1554
+ trr_CompanyDefault = 'trr_CompanyDefault'
1555
+
1556
+ class BoTaxTypes(StrEnum):
1557
+ tt_Yes = 'tt_Yes'
1558
+ tt_No = 'tt_No'
1559
+ tt_UseTax = 'tt_UseTax'
1560
+ tt_OffsetTax = 'tt_OffsetTax'
1561
+
1562
+ class BoTimeTemplate(StrEnum):
1563
+ tt_24H = 'tt_24H'
1564
+ tt_12H = 'tt_12H'
1565
+
1566
+ class BoTransactionTypeEnum(StrEnum):
1567
+ botrntComplete = 'botrntComplete'
1568
+ botrntReject = 'botrntReject'
1569
+
1570
+ class BoUDOObjType(StrEnum):
1571
+ boud_Document = 'boud_Document'
1572
+ boud_MasterData = 'boud_MasterData'
1573
+
1574
+ class BoUPTOptions(StrEnum):
1575
+ bou_FullNone = 'bou_FullNone'
1576
+ bou_FullReadNone = 'bou_FullReadNone'
1577
+
1578
+ class BoUTBTableType(StrEnum):
1579
+ bott_Document = 'bott_Document'
1580
+ bott_DocumentLines = 'bott_DocumentLines'
1581
+ bott_MasterData = 'bott_MasterData'
1582
+ bott_MasterDataLines = 'bott_MasterDataLines'
1583
+ bott_NoObject = 'bott_NoObject'
1584
+ bott_NoObjectAutoIncrement = 'bott_NoObjectAutoIncrement'
1585
+
1586
+ class BoUniqueSerialNumber(StrEnum):
1587
+ usn_None = 'usn_None'
1588
+ usn_MfrSerialNumber = 'usn_MfrSerialNumber'
1589
+ usn_SerialNumber = 'usn_SerialNumber'
1590
+ usn_LotNumber = 'usn_LotNumber'
1591
+
1592
+ class BoUpdateAllocationEnum(StrEnum):
1593
+ bouaManual = 'bouaManual'
1594
+ bouaCalculated = 'bouaCalculated'
1595
+ bouaRunCalculation = 'bouaRunCalculation'
1596
+
1597
+ class BoUserGroup(StrEnum):
1598
+ ug_Regular = 'ug_Regular'
1599
+ ug_Deleted = 'ug_Deleted'
1600
+
1601
+ class BoVatCategoryEnum(StrEnum):
1602
+ bovcInputTax = 'bovcInputTax'
1603
+ bovcOutputTax = 'bovcOutputTax'
1604
+
1605
+ class BoVatStatus(StrEnum):
1606
+ vExempted = 'vExempted'
1607
+ vLiable = 'vLiable'
1608
+ vEC = 'vEC'
1609
+
1610
+ class BoVerticalAlignmentEnum(StrEnum):
1611
+ rlvaTop = 'rlvaTop'
1612
+ rlvaBottom = 'rlvaBottom'
1613
+ rlvaCentralized = 'rlvaCentralized'
1614
+
1615
+ class BoWeekEnum(StrEnum):
1616
+ Sunday = 'Sunday'
1617
+ Monday = 'Monday'
1618
+ Tuesday = 'Tuesday'
1619
+ Wednesday = 'Wednesday'
1620
+ Thursday = 'Thursday'
1621
+ Friday = 'Friday'
1622
+ Saturday = 'Saturday'
1623
+
1624
+ class BoWeekNoRuleEnum(StrEnum):
1625
+ fromJanFirst = 'fromJanFirst'
1626
+ fromFirstFourDayWeek = 'fromFirstFourDayWeek'
1627
+ fromFirstFullWeek = 'fromFirstFullWeek'
1628
+
1629
+ class BoWorkOrderStat(StrEnum):
1630
+ wk_ProductComplete = 'wk_ProductComplete'
1631
+ wk_WorkInstruction = 'wk_WorkInstruction'
1632
+ wk_WorkOrder = 'wk_WorkOrder'
1633
+
1634
+ class BoYesNoEnum(StrEnum):
1635
+ tNO = 'tNO'
1636
+ tYES = 'tYES'
1637
+
1638
+ class BoYesNoNoneEnum(StrEnum):
1639
+ boNO = 'boNO'
1640
+ boYES = 'boYES'
1641
+ boNONE = 'boNONE'
1642
+
1643
+ class BrazilMultiIndexerTypes(StrEnum):
1644
+ bmitInvalid = 'bmitInvalid'
1645
+ bmitIncomeNature = 'bmitIncomeNature'
1646
+
1647
+ class BrazilNumericIndexerTypes(StrEnum):
1648
+ bnitInvalid = 'bnitInvalid'
1649
+ bnitBeverageCommercialBrand = 'bnitBeverageCommercialBrand'
1650
+ bnitFuelGroup = 'bnitFuelGroup'
1651
+ bnitNatureOfCompany = 'bnitNatureOfCompany'
1652
+ bnitEconomicActivityType = 'bnitEconomicActivityType'
1653
+ bnitCooperativeAssociationType = 'bnitCooperativeAssociationType'
1654
+ bnitProfitTaxation = 'bnitProfitTaxation'
1655
+ bnitCompanyQualification = 'bnitCompanyQualification'
1656
+ bnitDeclarerType = 'bnitDeclarerType'
1657
+ bnitEnvironmentType = 'bnitEnvironmentType'
1658
+ bnitTributaryType = 'bnitTributaryType'
1659
+ bnitTributaryRegimeCode = 'bnitTributaryRegimeCode'
1660
+ bnitIncomeNatureTable = 'bnitIncomeNatureTable'
1661
+ bnitIncomeNatureCode = 'bnitIncomeNatureCode'
1662
+ bnitExportationDocumentType = 'bnitExportationDocumentType'
1663
+ bnitExportationNature = 'bnitExportationNature'
1664
+ bnitLadingBillType = 'bnitLadingBillType'
1665
+
1666
+ class BrazilStringIndexerTypes(StrEnum):
1667
+ bsitInvalid = 'bsitInvalid'
1668
+ bsitBeverageTable = 'bsitBeverageTable'
1669
+ bsitNatureOfCalculationBase = 'bsitNatureOfCalculationBase'
1670
+ bsitCreditOrigin = 'bsitCreditOrigin'
1671
+ bsitBeverageGroup = 'bsitBeverageGroup'
1672
+ bsitCreditContributionOrigin = 'bsitCreditContributionOrigin'
1673
+ bsitIPIPeriod = 'bsitIPIPeriod'
1674
+ bsitSPEDProfile = 'bsitSPEDProfile'
1675
+ bsitImportationDocumentType = 'bsitImportationDocumentType'
1676
+ bsitReferentialAccountCode = 'bsitReferentialAccountCode'
1677
+
1678
+ class CalculateInterestMethodEnum(StrEnum):
1679
+ cimOnRemainingAmount = 'cimOnRemainingAmount'
1680
+ cimOnOriginalSum = 'cimOnOriginalSum'
1681
+
1682
+ class CalculationBaseEnum(StrEnum):
1683
+ cbYearly = 'cbYearly'
1684
+ cbMonthly = 'cbMonthly'
1685
+
1686
+ class CallMessageStatusEnum(StrEnum):
1687
+ cmsUnread = 'cmsUnread'
1688
+ cmsRead = 'cmsRead'
1689
+
1690
+ class CallMessageTypeEnum(StrEnum):
1691
+ cmtInformation = 'cmtInformation'
1692
+ cmtWarning = 'cmtWarning'
1693
+ cmtError = 'cmtError'
1694
+
1695
+ class CampaignAssignToEnum(StrEnum):
1696
+ catUser = 'catUser'
1697
+ catEmployee = 'catEmployee'
1698
+
1699
+ class CampaignBPStatusEnum(StrEnum):
1700
+ cbpsActive = 'cbpsActive'
1701
+ cbpsInactive = 'cbpsInactive'
1702
+
1703
+ class CampaignItemTypeEnum(StrEnum):
1704
+ citItems = 'citItems'
1705
+ citLabel = 'citLabel'
1706
+ citTravel = 'citTravel'
1707
+
1708
+ class CampaignStatusEnum(StrEnum):
1709
+ csOpen = 'csOpen'
1710
+ csFinished = 'csFinished'
1711
+ csCanceled = 'csCanceled'
1712
+
1713
+ class CampaignTypeEnum(StrEnum):
1714
+ ctEmail = 'ctEmail'
1715
+ ctMail = 'ctMail'
1716
+ ctFax = 'ctFax'
1717
+ ctPhoneCall = 'ctPhoneCall'
1718
+ ctMeeting = 'ctMeeting'
1719
+ ctSMS = 'ctSMS'
1720
+ ctWeb = 'ctWeb'
1721
+ ctOthers = 'ctOthers'
1722
+
1723
+ class CancelStatusEnum(StrEnum):
1724
+ csYes = 'csYes'
1725
+ csNo = 'csNo'
1726
+ csCancellation = 'csCancellation'
1727
+
1728
+ class CardOrAccountEnum(StrEnum):
1729
+ coaCard = 'coaCard'
1730
+ coaAccount = 'coaAccount'
1731
+
1732
+ class ClosingOptionEnum(StrEnum):
1733
+ coByCurrentSystemDate = 'coByCurrentSystemDate'
1734
+ coByOriginalDocumentDate = 'coByOriginalDocumentDate'
1735
+ coBySpecifiedDate = 'coBySpecifiedDate'
1736
+
1737
+ class CommissionTradeTypeEnum(StrEnum):
1738
+ ct_Empty = 'ct_Empty'
1739
+ ct_SalesAgent = 'ct_SalesAgent'
1740
+ ct_PurchaseAgent = 'ct_PurchaseAgent'
1741
+ ct_Consignor = 'ct_Consignor'
1742
+
1743
+ class ContractSequenceEnum(StrEnum):
1744
+ cs_Monthly = 'cs_Monthly'
1745
+ cs_Quarterly = 'cs_Quarterly'
1746
+ cs_SemiAnnually = 'cs_SemiAnnually'
1747
+ cs_Yearly = 'cs_Yearly'
1748
+
1749
+ class CounterTypeEnum(StrEnum):
1750
+ ctUser = 'ctUser'
1751
+ ctEmployee = 'ctEmployee'
1752
+
1753
+ class CountingDocumentStatusEnum(StrEnum):
1754
+ cdsOpen = 'cdsOpen'
1755
+ cdsClosed = 'cdsClosed'
1756
+
1757
+ class CountingLineStatusEnum(StrEnum):
1758
+ clsOpen = 'clsOpen'
1759
+ clsClosed = 'clsClosed'
1760
+
1761
+ class CountingTypeEnum(StrEnum):
1762
+ ctSingleCounter = 'ctSingleCounter'
1763
+ ctMultipleCounters = 'ctMultipleCounters'
1764
+
1765
+ class CreateMethodEnum(StrEnum):
1766
+ cmManual = 'cmManual'
1767
+ cmAutomatic = 'cmAutomatic'
1768
+
1769
+ class CreditOrDebitEnum(StrEnum):
1770
+ codCredit = 'codCredit'
1771
+ codDebit = 'codDebit'
1772
+
1773
+ class CurrenciesDecimalsEnum(StrEnum):
1774
+ cd1Digit = 'cd1Digit'
1775
+ cd2Digits = 'cd2Digits'
1776
+ cd3Digits = 'cd3Digits'
1777
+ cd4Digits = 'cd4Digits'
1778
+ cd5Digits = 'cd5Digits'
1779
+ cd6Digits = 'cd6Digits'
1780
+ cdDefault = 'cdDefault'
1781
+ cdWithoutDecimals = 'cdWithoutDecimals'
1782
+
1783
+ class CycleCountDeterminationCycleByEnum(StrEnum):
1784
+ ccdcbItemGroup = 'ccdcbItemGroup'
1785
+ ccdcbWarehouseSublevel1 = 'ccdcbWarehouseSublevel1'
1786
+ ccdcbWarehouseSublevel2 = 'ccdcbWarehouseSublevel2'
1787
+ ccdcbWarehouseSublevel3 = 'ccdcbWarehouseSublevel3'
1788
+ ccdcbWarehouseSublevel4 = 'ccdcbWarehouseSublevel4'
1789
+
1790
+ class DataPrivacyProtectionEnum(StrEnum):
1791
+ dpp_None = 'dpp_None'
1792
+ dpp_Erased = 'dpp_Erased'
1793
+ dpp_Blocked = 'dpp_Blocked'
1794
+ dpp_Unblocked = 'dpp_Unblocked'
1795
+
1796
+ class DataSensitiveStatusEnum(StrEnum):
1797
+ dss_FieldNotSentive = 'dss_FieldNotSentive'
1798
+ dss_DataSubjectNotNaturalPerson = 'dss_DataSubjectNotNaturalPerson'
1799
+ dss_DataSubjectIsBlockedOrErased = 'dss_DataSubjectIsBlockedOrErased'
1800
+ dss_DataIsSensitive = 'dss_DataIsSensitive'
1801
+ dss_Error = 'dss_Error'
1802
+ dss_TransactionIsErased = 'dss_TransactionIsErased'
1803
+
1804
+ class DepreciationCalculationBaseEnum(StrEnum):
1805
+ dcbAcquisitionValue = 'dcbAcquisitionValue'
1806
+ dcbNetBookValue = 'dcbNetBookValue'
1807
+
1808
+ class DepreciationMethodEnum(StrEnum):
1809
+ dmNoDepreciation = 'dmNoDepreciation'
1810
+ dmStraightLine = 'dmStraightLine'
1811
+ dmStraightLinePeriodControl = 'dmStraightLinePeriodControl'
1812
+ dmDecliningBalance = 'dmDecliningBalance'
1813
+ dmMultilevel = 'dmMultilevel'
1814
+ dmImmediateWriteOff = 'dmImmediateWriteOff'
1815
+ dmSpecialDepreciation = 'dmSpecialDepreciation'
1816
+ dmManualDepreciation = 'dmManualDepreciation'
1817
+ dmAccelerated = 'dmAccelerated'
1818
+
1819
+ class DepreciationRoundingMethodEnum(StrEnum):
1820
+ drmTruncate = 'drmTruncate'
1821
+ drmRoundUp = 'drmRoundUp'
1822
+ drmRoundDown = 'drmRoundDown'
1823
+
1824
+ class DirectDebitTypeEnum(StrEnum):
1825
+ ddtCORE = 'ddtCORE'
1826
+ ddtB2B = 'ddtB2B'
1827
+ ddtCOR1 = 'ddtCOR1'
1828
+
1829
+ class DiscountGroupBaseObjectEnum(StrEnum):
1830
+ dgboNone = 'dgboNone'
1831
+ dgboItemGroups = 'dgboItemGroups'
1832
+ dgboItemProperties = 'dgboItemProperties'
1833
+ dgboManufacturer = 'dgboManufacturer'
1834
+ dgboItems = 'dgboItems'
1835
+
1836
+ class DiscountGroupDiscountTypeEnum(StrEnum):
1837
+ dgdt_Fixed = 'dgdt_Fixed'
1838
+ dgdt_Variable = 'dgdt_Variable'
1839
+
1840
+ class DiscountGroupRelationsEnum(StrEnum):
1841
+ dgrLowestDiscount = 'dgrLowestDiscount'
1842
+ dgrHighestDiscount = 'dgrHighestDiscount'
1843
+ dgrAverageDiscount = 'dgrAverageDiscount'
1844
+ dgrDiscountTotals = 'dgrDiscountTotals'
1845
+ dgrMultipliedDiscount = 'dgrMultipliedDiscount'
1846
+
1847
+ class DiscountGroupTypeEnum(StrEnum):
1848
+ dgt_AllBPs = 'dgt_AllBPs'
1849
+ dgt_CustomerGroup = 'dgt_CustomerGroup'
1850
+ dgt_VendorGroup = 'dgt_VendorGroup'
1851
+ dgt_SpecificBP = 'dgt_SpecificBP'
1852
+
1853
+ class DisplayBatchQtyUoMByEnum(StrEnum):
1854
+ dispBatchQtyByDocRowUoM = 'dispBatchQtyByDocRowUoM'
1855
+ dispBatchQtyByInventoryUoM = 'dispBatchQtyByInventoryUoM'
1856
+
1857
+ class DocumentAuthorizationStatusEnum(StrEnum):
1858
+ dasWithout = 'dasWithout'
1859
+ dasPending = 'dasPending'
1860
+ dasApproved = 'dasApproved'
1861
+ dasRejected = 'dasRejected'
1862
+ dasGenerated = 'dasGenerated'
1863
+ dasGeneratedbyAuthorizer = 'dasGeneratedbyAuthorizer'
1864
+ dasCancelled = 'dasCancelled'
1865
+
1866
+ class DocumentDeliveryTypeEnum(StrEnum):
1867
+ ddtNoneSeleted = 'ddtNoneSeleted'
1868
+ ddtCreateOnlineDocument = 'ddtCreateOnlineDocument'
1869
+ ddtPostToAribaNetwork = 'ddtPostToAribaNetwork'
1870
+
1871
+ class DocumentObjectTypeEnum(StrEnum):
1872
+ dc_ArInvoice = 'dc_ArInvoice'
1873
+ dc_Delivery = 'dc_Delivery'
1874
+ dc_GoodsReturn = 'dc_GoodsReturn'
1875
+ dc_InventoryTransfer = 'dc_InventoryTransfer'
1876
+
1877
+ class DocumentPriceSourceEnum(StrEnum):
1878
+ dpsSpecialPricesForBusinessPartner = 'dpsSpecialPricesForBusinessPartner'
1879
+ dpsManual = 'dpsManual'
1880
+ dpsActivePriceListDiscountGroups = 'dpsActivePriceListDiscountGroups'
1881
+ dpsActivePriceList = 'dpsActivePriceList'
1882
+ dpsInactivePriceList = 'dpsInactivePriceList'
1883
+ dpsBlanketAgreement = 'dpsBlanketAgreement'
1884
+ dpsPeriodAndVolumeDiscounts = 'dpsPeriodAndVolumeDiscounts'
1885
+ dpsPeriodAndVolumeDiscountsDiscountGroups = 'dpsPeriodAndVolumeDiscountsDiscountGroups'
1886
+ dpsInactivePriceListDiscountGroups = 'dpsInactivePriceListDiscountGroups'
1887
+ dpsNewSpecialPricesForBusinessPartner = 'dpsNewSpecialPricesForBusinessPartner'
1888
+ dpsNewActivePriceListDiscountGroups = 'dpsNewActivePriceListDiscountGroups'
1889
+ dpsNewActivePriceList = 'dpsNewActivePriceList'
1890
+ dpsNewInactivePriceList = 'dpsNewInactivePriceList'
1891
+ dpsNewBlanketAgreement = 'dpsNewBlanketAgreement'
1892
+ dpsNewPeriodAndVolumeDiscounts = 'dpsNewPeriodAndVolumeDiscounts'
1893
+ dpsNewPeriodAndVolumeDiscountsDiscountGroups = 'dpsNewPeriodAndVolumeDiscountsDiscountGroups'
1894
+ dpsNewInactivePriceListDiscountGroups = 'dpsNewInactivePriceListDiscountGroups'
1895
+
1896
+ class DocumentRemarksIncludeTypeEnum(StrEnum):
1897
+ driBaseDocumentNumber = 'driBaseDocumentNumber'
1898
+ driBPReferenceNumber = 'driBPReferenceNumber'
1899
+ driManualRemarksOnly = 'driManualRemarksOnly'
1900
+
1901
+ class DomesticBankAccountValidationEnum(StrEnum):
1902
+ dbavNone = 'dbavNone'
1903
+ dbavBelgium = 'dbavBelgium'
1904
+ dbavSpain = 'dbavSpain'
1905
+ dbavFrance = 'dbavFrance'
1906
+ dbavItaly = 'dbavItaly'
1907
+ dbavNetherlands = 'dbavNetherlands'
1908
+ dbavPortugal = 'dbavPortugal'
1909
+
1910
+ class DownPaymentTypeEnum(StrEnum):
1911
+ dptRequest = 'dptRequest'
1912
+ dptInvoice = 'dptInvoice'
1913
+
1914
+ class DrawingMethodEnum(StrEnum):
1915
+ dmAll = 'dmAll'
1916
+ dmNone = 'dmNone'
1917
+ dmQuantity = 'dmQuantity'
1918
+ dmTotal = 'dmTotal'
1919
+
1920
+ class DueDateTypesEnum(StrEnum):
1921
+ ddtAfterTimePeriod = 'ddtAfterTimePeriod'
1922
+ ddtByDates = 'ddtByDates'
1923
+
1924
+ class DunningLetterTypeEnum(StrEnum):
1925
+ dltDunningLetter1 = 'dltDunningLetter1'
1926
+ dltDunningLetter2 = 'dltDunningLetter2'
1927
+ dltDunningLetter3 = 'dltDunningLetter3'
1928
+ dltDunningLetter4 = 'dltDunningLetter4'
1929
+ dltDunningLetter5 = 'dltDunningLetter5'
1930
+ dltDunningLetter6 = 'dltDunningLetter6'
1931
+ dltDunningLetter7 = 'dltDunningLetter7'
1932
+ dltDunningLetter8 = 'dltDunningLetter8'
1933
+ dltDunningLetter9 = 'dltDunningLetter9'
1934
+ dltDunningLetter10 = 'dltDunningLetter10'
1935
+ dltDunningALL = 'dltDunningALL'
1936
+
1937
+ class ECDPostingTypeEnum(StrEnum):
1938
+ ecdNormal = 'ecdNormal'
1939
+ ecdStatement = 'ecdStatement'
1940
+
1941
+ class EDocGenerationTypeEnum(StrEnum):
1942
+ edocGenerate = 'edocGenerate'
1943
+ edocGenerateLater = 'edocGenerateLater'
1944
+ edocNotRelevant = 'edocNotRelevant'
1945
+
1946
+ class EDocStatusEnum(StrEnum):
1947
+ edoc_New = 'edoc_New'
1948
+ edoc_Pending = 'edoc_Pending'
1949
+ edoc_Sent = 'edoc_Sent'
1950
+ edoc_Error = 'edoc_Error'
1951
+ edoc_Ok = 'edoc_Ok'
1952
+
1953
+ class EDocTypeEnum(StrEnum):
1954
+ edocFE = 'edocFE'
1955
+ edocFCE = 'edocFCE'
1956
+
1957
+ class EWBSupplyTypeEnum(StrEnum):
1958
+ ewb_st_Inward = 'ewb_st_Inward'
1959
+ ewb_st_Outward = 'ewb_st_Outward'
1960
+
1961
+ class EWBTransactionTypeEnum(StrEnum):
1962
+ ewb_tt_Regular = 'ewb_tt_Regular'
1963
+ ewb_tt_BillToShipTo = 'ewb_tt_BillToShipTo'
1964
+ ewb_tt_BillFromDispathFrom = 'ewb_tt_BillFromDispathFrom'
1965
+ ewb_tt_CombinationOfBillAndShip = 'ewb_tt_CombinationOfBillAndShip'
1966
+
1967
+ class EffectivePriceEnum(StrEnum):
1968
+ epDefaultPriority = 'epDefaultPriority'
1969
+ epLowestPrice = 'epLowestPrice'
1970
+ epHighestPrice = 'epHighestPrice'
1971
+
1972
+ class ElecCommStatusEnum(StrEnum):
1973
+ ecsApproved = 'ecsApproved'
1974
+ ecsPendingApproval = 'ecsPendingApproval'
1975
+ ecsRejected = 'ecsRejected'
1976
+
1977
+ class ElectronicDocGenTypeEnum(StrEnum):
1978
+ edgt_NotRelevant = 'edgt_NotRelevant'
1979
+ edgt_Generate = 'edgt_Generate'
1980
+ edgt_GenerateLater = 'edgt_GenerateLater'
1981
+
1982
+ class ElectronicDocProcessingTargetEnum(StrEnum):
1983
+ edpt_Invalid = 'edpt_Invalid'
1984
+ edpt_All = 'edpt_All'
1985
+ edpt_None = 'edpt_None'
1986
+ edpt_LegacyB1iSender = 'edpt_LegacyB1iSender'
1987
+ edpt_B1iEventSender = 'edpt_B1iEventSender'
1988
+ edpt_LegacyXMLFile = 'edpt_LegacyXMLFile'
1989
+ edpt_ConnectorXML = 'edpt_ConnectorXML'
1990
+ edpt_ConnectorB1iWS = 'edpt_ConnectorB1iWS'
1991
+ edpt_ConnectorPEPPOL = 'edpt_ConnectorPEPPOL'
1992
+ edpt_ConnectorEET = 'edpt_ConnectorEET'
1993
+ edpt_ConnectorEETv2 = 'edpt_ConnectorEETv2'
1994
+ edpt_ConnectorCFDi = 'edpt_ConnectorCFDi'
1995
+ edpt_ConnectorEBooks = 'edpt_ConnectorEBooks'
1996
+ edpt_ConnectorDOX = 'edpt_ConnectorDOX'
1997
+ edpt_ConnectorDigipoort = 'edpt_ConnectorDigipoort'
1998
+ edpt_ImportWizardManualFile = 'edpt_ImportWizardManualFile'
1999
+ edpt_ImportWizardAutomaticFile = 'edpt_ImportWizardAutomaticFile'
2000
+ edpt_ImportWizardWebService = 'edpt_ImportWizardWebService'
2001
+ edpt_ConnectorFPA = 'edpt_ConnectorFPA'
2002
+ edpt_ConnectorDocSign = 'edpt_ConnectorDocSign'
2003
+ edpt_ConnectorAFE = 'edpt_ConnectorAFE'
2004
+ edpt_ConnectorGSTReturn = 'edpt_ConnectorGSTReturn'
2005
+ edpt_ConnectorKSeF = 'edpt_ConnectorKSeF'
2006
+ edpt_ConnectorPTDocSign = 'edpt_ConnectorPTDocSign'
2007
+ edpt_ConnectorSkatDK = 'edpt_ConnectorSkatDK'
2008
+ edpt_ConnectorEII = 'edpt_ConnectorEII'
2009
+ edpt_ConnectorPTeInvoicing = 'edpt_ConnectorPTeInvoicing'
2010
+ edpt_ConnectorEBilling = 'edpt_ConnectorEBilling'
2011
+ edpt_ConnectorEDSHOI = 'edpt_ConnectorEDSHOI'
2012
+ edpt_ConnectorPTeCom = 'edpt_ConnectorPTeCom'
2013
+ edpt_ConnectorVeriFactu = 'edpt_ConnectorVeriFactu'
2014
+ edpt_ManualImport = 'edpt_ManualImport'
2015
+
2016
+ class ElectronicDocProtocolCodeEnum(StrEnum):
2017
+ edpc_Invalid = 'edpc_Invalid'
2018
+ edpc_GEN = 'edpc_GEN'
2019
+ edpc_EET = 'edpc_EET'
2020
+ edpc_CFDI = 'edpc_CFDI'
2021
+ edpc_FPA = 'edpc_FPA'
2022
+ edpc_MTD = 'edpc_MTD'
2023
+ edpc_EWB = 'edpc_EWB'
2024
+ edpc_PEPPOL = 'edpc_PEPPOL'
2025
+ edpc_HOI = 'edpc_HOI'
2026
+ edpc_MYF = 'edpc_MYF'
2027
+ edpc_EIS = 'edpc_EIS'
2028
+ edpc_IIS = 'edpc_IIS'
2029
+ edpc_IIS_Annual = 'edpc_IIS_Annual'
2030
+ edpc_DIGIPOORT = 'edpc_DIGIPOORT'
2031
+ edpc_EBooks = 'edpc_EBooks'
2032
+ edpc_DOX = 'edpc_DOX'
2033
+ edpc_RTIE = 'edpc_RTIE'
2034
+ edpc_EBilling = 'edpc_EBilling'
2035
+ edpc_TaxService = 'edpc_TaxService'
2036
+ edpc_AFE = 'edpc_AFE'
2037
+ edpc_DocSign = 'edpc_DocSign'
2038
+ edpc_KSeF = 'edpc_KSeF'
2039
+ edpc_GSTReturn = 'edpc_GSTReturn'
2040
+ edpc_PTDocSign = 'edpc_PTDocSign'
2041
+ edpc_SkatDK = 'edpc_SkatDK'
2042
+ edpc_EII = 'edpc_EII'
2043
+ edpc_NFe = 'edpc_NFe'
2044
+ edpc_PTeInvoicing = 'edpc_PTeInvoicing'
2045
+ edpc_PTeCom = 'edpc_PTeCom'
2046
+ edpc_VeriFactu = 'edpc_VeriFactu'
2047
+ edpc_BAS = 'edpc_BAS'
2048
+
2049
+ class ElectronicDocProtocolCodeStrEnum(StrEnum):
2050
+ edpcs_Invalid = 'edpcs_Invalid'
2051
+ edpcs_GEN = 'edpcs_GEN'
2052
+ edpcs_EET = 'edpcs_EET'
2053
+ edpcs_CFDI = 'edpcs_CFDI'
2054
+ edpcs_FPA = 'edpcs_FPA'
2055
+ edpcs_MTD = 'edpcs_MTD'
2056
+ edpcs_EWB = 'edpcs_EWB'
2057
+ edpcs_PEPPOL = 'edpcs_PEPPOL'
2058
+ edpcs_HOI = 'edpcs_HOI'
2059
+ edpcs_MYF = 'edpcs_MYF'
2060
+ edpcs_EIS = 'edpcs_EIS'
2061
+ edpcs_IIS = 'edpcs_IIS'
2062
+ edpcs_IIS_Annual = 'edpcs_IIS_Annual'
2063
+ edpcs_DIGIPOORT = 'edpcs_DIGIPOORT'
2064
+ edpcs_EBooks = 'edpcs_EBooks'
2065
+ edpcs_DOX = 'edpcs_DOX'
2066
+ edpcs_RTIE = 'edpcs_RTIE'
2067
+ edpcs_EBilling = 'edpcs_EBilling'
2068
+ edpcs_TaxService = 'edpcs_TaxService'
2069
+ edpcs_AFE = 'edpcs_AFE'
2070
+ edpcs_DocSign = 'edpcs_DocSign'
2071
+ edpcs_KSeF = 'edpcs_KSeF'
2072
+ edpcs_GSTReturn = 'edpcs_GSTReturn'
2073
+ edpcs_PTDocSign = 'edpcs_PTDocSign'
2074
+ edpcs_SkatDK = 'edpcs_SkatDK'
2075
+ edpcs_EII = 'edpcs_EII'
2076
+ edpcs_NFe = 'edpcs_NFe'
2077
+ edpcs_PTeInvoicing = 'edpcs_PTeInvoicing'
2078
+ edpcs_PTeCom = 'edpcs_PTeCom'
2079
+ edpcs_VeriFactu = 'edpcs_VeriFactu'
2080
+ edpcs_BAS = 'edpcs_BAS'
2081
+
2082
+ class ElectronicDocumentAuthorityProcessEnum(StrEnum):
2083
+ edapNone = 'edapNone'
2084
+ edapApproval = 'edapApproval'
2085
+ edapRejection = 'edapRejection'
2086
+
2087
+ class ElectronicDocumentBlobContentTypeEnum(StrEnum):
2088
+ edbctDefault = 'edbctDefault'
2089
+ edbctXML = 'edbctXML'
2090
+ edbctZippedXML = 'edbctZippedXML'
2091
+ edbctJSON = 'edbctJSON'
2092
+ edbctZippedJSON = 'edbctZippedJSON'
2093
+ edbctText = 'edbctText'
2094
+ edbctZippedP7M = 'edbctZippedP7M'
2095
+ edbctP7M = 'edbctP7M'
2096
+ edbctZippedPDF = 'edbctZippedPDF'
2097
+
2098
+ class ElectronicDocumentEntryCancellationStatusEnum(StrEnum):
2099
+ edecsInvalid = 'edecsInvalid'
2100
+ edecsNotSet = 'edecsNotSet'
2101
+ edecsNewRequest = 'edecsNewRequest'
2102
+ edecsRequestSent = 'edecsRequestSent'
2103
+ edecsApproved = 'edecsApproved'
2104
+ edecsRejected = 'edecsRejected'
2105
+ edecsError = 'edecsError'
2106
+ edecsCancelled = 'edecsCancelled'
2107
+ edecsInProcess = 'edecsInProcess'
2108
+ edecsSentToAuthority = 'edecsSentToAuthority'
2109
+ edescCancelledWOApproval = 'edescCancelledWOApproval'
2110
+
2111
+ class ElectronicDocumentEntryLogTypeEnum(StrEnum):
2112
+ edeltNone = 'edeltNone'
2113
+ edeltSend = 'edeltSend'
2114
+ edeltReceive = 'edeltReceive'
2115
+ edeltImport = 'edeltImport'
2116
+ edeltNote = 'edeltNote'
2117
+ edeltWarning = 'edeltWarning'
2118
+ edeltError = 'edeltError'
2119
+ edeltWSData = 'edeltWSData'
2120
+ edeltAuthorityProcessBegins = 'edeltAuthorityProcessBegins'
2121
+ edeltAuthorityProcessFinished = 'edeltAuthorityProcessFinished'
2122
+
2123
+ class ElectronicDocumentEntryPeriodTypeEnum(StrEnum):
2124
+ edeptIgnore = 'edeptIgnore'
2125
+ edeptYear = 'edeptYear'
2126
+ edeptQuarter = 'edeptQuarter'
2127
+ edeptMonth = 'edeptMonth'
2128
+ edeptDateRange = 'edeptDateRange'
2129
+
2130
+ class ElectronicDocumentEntryStatusEnum(StrEnum):
2131
+ edesNone = 'edesNone'
2132
+ edesNew = 'edesNew'
2133
+ edesReadyToProcess = 'edesReadyToProcess'
2134
+ edesPending = 'edesPending'
2135
+ edesError = 'edesError'
2136
+ edesOK = 'edesOK'
2137
+ edesSent = 'edesSent'
2138
+ edesDocError = 'edesDocError'
2139
+ edesTempError = 'edesTempError'
2140
+ edesWarning = 'edesWarning'
2141
+ edesWaiting = 'edesWaiting'
2142
+ edesAuthorized = 'edesAuthorized'
2143
+ edesInProcess = 'edesInProcess'
2144
+ edesRejected = 'edesRejected'
2145
+ edesDenied = 'edesDenied'
2146
+ edesCanceled = 'edesCanceled'
2147
+ edesAborted = 'edesAborted'
2148
+ edesUnused = 'edesUnused'
2149
+ edesQueued = 'edesQueued'
2150
+ edesImported = 'edesImported'
2151
+ edesApproved = 'edesApproved'
2152
+ edesApproving = 'edesApproving'
2153
+ edesRejecting = 'edesRejecting'
2154
+ edesGenerated = 'edesGenerated'
2155
+ edesDetermined = 'edesDetermined'
2156
+ edesImporting = 'edesImporting'
2157
+ edesInProcessToIntermediary = 'edesInProcessToIntermediary'
2158
+ edesSentToIntermediary = 'edesSentToIntermediary'
2159
+ edesApprovedByIntermediary = 'edesApprovedByIntermediary'
2160
+ edesNotIntegratedCustomer = 'edesNotIntegratedCustomer'
2161
+ edesNotSentToCustomer = 'edesNotSentToCustomer'
2162
+ edesErrorSendingToCustomer = 'edesErrorSendingToCustomer'
2163
+ edesSentToCustomer = 'edesSentToCustomer'
2164
+ edesReceivedByCustomer = 'edesReceivedByCustomer'
2165
+ edesRejectedByCustomer = 'edesRejectedByCustomer'
2166
+ edesPaidByCustomer = 'edesPaidByCustomer'
2167
+ edesCheckingIntegrationStatus = 'edesCheckingIntegrationStatus'
2168
+ edesNotApproved = 'edesNotApproved'
2169
+ edesChargeReversal = 'edesChargeReversal'
2170
+ edesCanceling = 'edesCanceling'
2171
+ edesContinuing = 'edesContinuing'
2172
+ edesContinued = 'edesContinued'
2173
+ edesFurtherObjecting = 'edesFurtherObjecting'
2174
+ edesFurtherObjection = 'edesFurtherObjection'
2175
+ edesResending = 'edesResending'
2176
+
2177
+ class ElectronicDocumentEntryTypeEnum(StrEnum):
2178
+ edetNone = 'edetNone'
2179
+ edetSetup = 'edetSetup'
2180
+ edetReport = 'edetReport'
2181
+ edetDocumentAR = 'edetDocumentAR'
2182
+ edetDocumentAP = 'edetDocumentAP'
2183
+ edetDraftAR = 'edetDraftAR'
2184
+ edetDraftAP = 'edetDraftAP'
2185
+ edetOther = 'edetOther'
2186
+ edetSkip = 'edetSkip'
2187
+ edetContingency = 'edetContingency'
2188
+ edetBpCheck = 'edetBpCheck'
2189
+ edetIncomingPayment = 'edetIncomingPayment'
2190
+ edetOutgoingPayment = 'edetOutgoingPayment'
2191
+ edetInternalReconciliation = 'edetInternalReconciliation'
2192
+ edetTransportationDocument = 'edetTransportationDocument'
2193
+ edetInventoryTransfer = 'edetInventoryTransfer'
2194
+ edetVATObligations = 'edetVATObligations'
2195
+ edetVATDeclarations = 'edetVATDeclarations'
2196
+ edetVATLiabilities = 'edetVATLiabilities'
2197
+ edetVATPayments = 'edetVATPayments'
2198
+ edetDelivery = 'edetDelivery'
2199
+ edetReturn = 'edetReturn'
2200
+ edetARInvoice = 'edetARInvoice'
2201
+ edetARCreditMemo = 'edetARCreditMemo'
2202
+ edetGoodsReceiptPO = 'edetGoodsReceiptPO'
2203
+ edetGoodsReturn = 'edetGoodsReturn'
2204
+ edetAPInvoice = 'edetAPInvoice'
2205
+ edetAPCreditMemo = 'edetAPCreditMemo'
2206
+ edetDraftIncomingPayment = 'edetDraftIncomingPayment'
2207
+ edetDraftOutgoingPayment = 'edetDraftOutgoingPayment'
2208
+ edetJournalEntry = 'edetJournalEntry'
2209
+ edetEBooksExpense = 'edetEBooksExpense'
2210
+ edetSkatDKPeriod = 'edetSkatDKPeriod'
2211
+ edetSkatDKDraftReport = 'edetSkatDKDraftReport'
2212
+ edetSkatDKReport = 'edetSkatDKReport'
2213
+ edetINV = 'edetINV'
2214
+ edetRIN = 'edetRIN'
2215
+ edetDLN = 'edetDLN'
2216
+ edetINVBasedOnDLN = 'edetINVBasedOnDLN'
2217
+ edetSeries = 'edetSeries'
2218
+ edetInvoices = 'edetInvoices'
2219
+ edetGoodsTransfers = 'edetGoodsTransfers'
2220
+
2221
+ class EmployeeExemptionUnitEnum(StrEnum):
2222
+ eeu_None = 'eeu_None'
2223
+ eeu_Yearly = 'eeu_Yearly'
2224
+ eeu_Monthly = 'eeu_Monthly'
2225
+ eeu_Weekly = 'eeu_Weekly'
2226
+ eeu_Daily = 'eeu_Daily'
2227
+
2228
+ class EmployeePaymentMethodEnum(StrEnum):
2229
+ epm_None = 'epm_None'
2230
+ epm_BankTransfer = 'epm_BankTransfer'
2231
+
2232
+ class EmployeeTransferProcessingStatusEnum(StrEnum):
2233
+ etps_New = 'etps_New'
2234
+ etps_Sent = 'etps_Sent'
2235
+ etps_Accepted = 'etps_Accepted'
2236
+ etps_Error = 'etps_Error'
2237
+
2238
+ class EmployeeTransferStatusEnum(StrEnum):
2239
+ ets_New = 'ets_New'
2240
+ ets_Processing = 'ets_Processing'
2241
+ ets_Sent = 'ets_Sent'
2242
+ ets_Received = 'ets_Received'
2243
+ ets_Accepted = 'ets_Accepted'
2244
+ ets_Error = 'ets_Error'
2245
+
2246
+ class EndTypeEnum(StrEnum):
2247
+ etNoEndDate = 'etNoEndDate'
2248
+ etByCounter = 'etByCounter'
2249
+ etByDate = 'etByDate'
2250
+
2251
+ class ExchangeRateSelectEnum(StrEnum):
2252
+ ierFromInovice = 'ierFromInovice'
2253
+ ierCurrentRate = 'ierCurrentRate'
2254
+
2255
+ class ExemptionMaxAmountValidationTypeEnum(StrEnum):
2256
+ emaIndividual = 'emaIndividual'
2257
+ emaAccumulated = 'emaAccumulated'
2258
+
2259
+ class ExternalCallStatusEnum(StrEnum):
2260
+ ecsNew = 'ecsNew'
2261
+ ecsInProcess = 'ecsInProcess'
2262
+ ecsCompleted = 'ecsCompleted'
2263
+ ecsConfirmed = 'ecsConfirmed'
2264
+ ecsFailed = 'ecsFailed'
2265
+
2266
+ class FolioLetterEnum(StrEnum):
2267
+ fLetterA = 'fLetterA'
2268
+ fLetterB = 'fLetterB'
2269
+ fLetterC = 'fLetterC'
2270
+ fLetterE = 'fLetterE'
2271
+ fLetterM = 'fLetterM'
2272
+ fLetterR = 'fLetterR'
2273
+ fLetterT = 'fLetterT'
2274
+ fLetterX = 'fLetterX'
2275
+ fLetterEMPTY = 'fLetterEMPTY'
2276
+
2277
+ class FormattedSearchByFieldEnum(StrEnum):
2278
+ fsbfWhenExitingAlteredColumn = 'fsbfWhenExitingAlteredColumn'
2279
+ fsbfWhenFieldChanges = 'fsbfWhenFieldChanges'
2280
+ fsbfWhenColumnValueChanges = 'fsbfWhenColumnValueChanges'
2281
+
2282
+ class FreightTypeEnum(StrEnum):
2283
+ ftShipping = 'ftShipping'
2284
+ ftInsurance = 'ftInsurance'
2285
+ ftOther = 'ftOther'
2286
+ ftSpecial = 'ftSpecial'
2287
+
2288
+ class FreightTypeForBolloEnum(StrEnum):
2289
+ ftStandard = 'ftStandard'
2290
+ ftBollo = 'ftBollo'
2291
+
2292
+ class GSTTaxCategoryEnum(StrEnum):
2293
+ gtc_Regular = 'gtc_Regular'
2294
+ gtc_NilRated = 'gtc_NilRated'
2295
+ gtc_Exempt = 'gtc_Exempt'
2296
+
2297
+ class GSTTransactionTypeEnum(StrEnum):
2298
+ gsttrantyp_BillOfSupply = 'gsttrantyp_BillOfSupply'
2299
+ gsttrantyp_GSTTaxInvoice = 'gsttrantyp_GSTTaxInvoice'
2300
+ gsttrantyp_GSTDebitMemo = 'gsttrantyp_GSTDebitMemo'
2301
+
2302
+ class GTSResponseToExceedingEnum(StrEnum):
2303
+ Block = 'Block'
2304
+ Split = 'Split'
2305
+
2306
+ class GeneratedAssetStatusEnum(StrEnum):
2307
+ gasOpen = 'gasOpen'
2308
+ gasClosed = 'gasClosed'
2309
+
2310
+ class GetGLAccountByEnum(StrEnum):
2311
+ gglab_General = 'gglab_General'
2312
+ gglab_Warehouse = 'gglab_Warehouse'
2313
+ gglab_ItemGroup = 'gglab_ItemGroup'
2314
+
2315
+ class GovPayCodePeriodicityEnum(StrEnum):
2316
+ gpcpMonth = 'gpcpMonth'
2317
+ gpcpQuarter = 'gpcpQuarter'
2318
+ gpcpHalfMonth = 'gpcpHalfMonth'
2319
+ gpcpTenDays = 'gpcpTenDays'
2320
+
2321
+ class GovPayCodeSPEDCategoryEnum(StrEnum):
2322
+ gpcscICMS = 'gpcscICMS'
2323
+ gpcscICMSST = 'gpcscICMSST'
2324
+ gpcscIPI = 'gpcscIPI'
2325
+ gpcscISS = 'gpcscISS'
2326
+ gpcscPIS = 'gpcscPIS'
2327
+ gpcscCOFINS = 'gpcscCOFINS'
2328
+ gpcsPISST = 'gpcsPISST'
2329
+ gpcsCONFINSST = 'gpcsCONFINSST'
2330
+
2331
+ class GroupingMethodEnum(StrEnum):
2332
+ gmPerInvoice = 'gmPerInvoice'
2333
+ gmPerDunningLevel = 'gmPerDunningLevel'
2334
+ gmPerBP = 'gmPerBP'
2335
+
2336
+ class IdentificationCodeTypeEnum(StrEnum):
2337
+ idctOrder = 'idctOrder'
2338
+ idctDelivery = 'idctDelivery'
2339
+ idctInvoice = 'idctInvoice'
2340
+ idctCreditNote = 'idctCreditNote'
2341
+ idctStandardItemTypeIdentification = 'idctStandardItemTypeIdentification'
2342
+ idctItemCommodityClassification = 'idctItemCommodityClassification'
2343
+
2344
+ class ImportFieldTypeEnum(StrEnum):
2345
+ iftInvalid = 'iftInvalid'
2346
+ iftFederalTaxID = 'iftFederalTaxID'
2347
+ iftAdditionalID = 'iftAdditionalID'
2348
+ iftUnifiedFederalTaxID = 'iftUnifiedFederalTaxID'
2349
+ iftCNPJ = 'iftCNPJ'
2350
+ iftAliasName = 'iftAliasName'
2351
+ iftIBAN = 'iftIBAN'
2352
+ iftBPName = 'iftBPName'
2353
+
2354
+ class ImportOrExportTypeEnum(StrEnum):
2355
+ et_IpmortsOrExports = 'et_IpmortsOrExports'
2356
+ et_SEZ_Developer = 'et_SEZ_Developer'
2357
+ et_SEZ_Unit = 'et_SEZ_Unit'
2358
+ et_Deemed_ImportsOrExports = 'et_Deemed_ImportsOrExports'
2359
+
2360
+ class InstallmentPaymentsPossiblityEnum(StrEnum):
2361
+ ippCr = 'ippCr'
2362
+ ippNo = 'ippNo'
2363
+ ippRd = 'ippRd'
2364
+ ippYes = 'ippYes'
2365
+
2366
+ class IntrastatConfigurationEnum(StrEnum):
2367
+ enAdditionalMeasureUnit = 'enAdditionalMeasureUnit'
2368
+ enCommodityCodes = 'enCommodityCodes'
2369
+ enCustomProcedures = 'enCustomProcedures'
2370
+ enIncoterms = 'enIncoterms'
2371
+ enNatureOfTransactions = 'enNatureOfTransactions'
2372
+ enPortsOfEntryAndExit = 'enPortsOfEntryAndExit'
2373
+ enServiceCodes = 'enServiceCodes'
2374
+ enStatisticalProcedures = 'enStatisticalProcedures'
2375
+ enTransportModes = 'enTransportModes'
2376
+ enRegions = 'enRegions'
2377
+
2378
+ class IntrastatConfigurationTriangDealEnum(StrEnum):
2379
+ enNone = 'enNone'
2380
+ enType11 = 'enType11'
2381
+ enType21 = 'enType21'
2382
+ enType31 = 'enType31'
2383
+
2384
+ class InvBaseDocTypeEnum(StrEnum):
2385
+ Default = 'Default'
2386
+ Empty = 'Empty'
2387
+ PurchaseDeliveryNotes = 'PurchaseDeliveryNotes'
2388
+ InventoryGeneralEntry = 'InventoryGeneralEntry'
2389
+ WarehouseTransfers = 'WarehouseTransfers'
2390
+ InventoryTransferRequest = 'InventoryTransferRequest'
2391
+
2392
+ class InventoryAccountTypeEnum(StrEnum):
2393
+ iatExpenses = 'iatExpenses'
2394
+ iatRevenues = 'iatRevenues'
2395
+ iatExemptIncome = 'iatExemptIncome'
2396
+ iatInventory = 'iatInventory'
2397
+ iatCost = 'iatCost'
2398
+ iatTransfer = 'iatTransfer'
2399
+ iatVarience = 'iatVarience'
2400
+ iatPriceDifference = 'iatPriceDifference'
2401
+ iatNegativeInventoryAdjustment = 'iatNegativeInventoryAdjustment'
2402
+ iatDecreasing = 'iatDecreasing'
2403
+ iatIncreasing = 'iatIncreasing'
2404
+ iatReturning = 'iatReturning'
2405
+ iatEURevenues = 'iatEURevenues'
2406
+ iatEUExpenses = 'iatEUExpenses'
2407
+ iatForeignRevenue = 'iatForeignRevenue'
2408
+ iatForeignExpens = 'iatForeignExpens'
2409
+ iatPurchase = 'iatPurchase'
2410
+ iatPAReturn = 'iatPAReturn'
2411
+ iatPurchaseOffset = 'iatPurchaseOffset'
2412
+ iatExchangeRateDifferences = 'iatExchangeRateDifferences'
2413
+ iatGoodsClearing = 'iatGoodsClearing'
2414
+ iatGLDecrease = 'iatGLDecrease'
2415
+ iatGLIncrease = 'iatGLIncrease'
2416
+ iatWip = 'iatWip'
2417
+ iatWipVariance = 'iatWipVariance'
2418
+ iatWipOffsetProfitAndLoss = 'iatWipOffsetProfitAndLoss'
2419
+ iatInventoryOffsetProfitAndLoss = 'iatInventoryOffsetProfitAndLoss'
2420
+ iatStockInflationAdjust = 'iatStockInflationAdjust'
2421
+ iatStockInflationOffset = 'iatStockInflationOffset'
2422
+ iatCostInflation = 'iatCostInflation'
2423
+ iatCostInflationOffset = 'iatCostInflationOffset'
2424
+ iatExpenseClearing = 'iatExpenseClearing'
2425
+ iatExpenseOffsetting = 'iatExpenseOffsetting'
2426
+ iatStockInTransit = 'iatStockInTransit'
2427
+ iatShippedGoods = 'iatShippedGoods'
2428
+ iatVATInRevenue = 'iatVATInRevenue'
2429
+ iatSalesCredit = 'iatSalesCredit'
2430
+ iatPurchaseCredit = 'iatPurchaseCredit'
2431
+ iatExemptedCredits = 'iatExemptedCredits'
2432
+ iatSalesCreditForeign = 'iatSalesCreditForeign'
2433
+ iatForeignPurchaseCredit = 'iatForeignPurchaseCredit'
2434
+ iatSalesCreditEU = 'iatSalesCreditEU'
2435
+ iatEUPurchaseCredit = 'iatEUPurchaseCredit'
2436
+ iatPurchaseBalance = 'iatPurchaseBalance'
2437
+ iatWHIncomingCenvat = 'iatWHIncomingCenvat'
2438
+ iatWHOutgoingCenvat = 'iatWHOutgoingCenvat'
2439
+ iatFreeOfChargeSales = 'iatFreeOfChargeSales'
2440
+ iatFreeOfChargePurchase = 'iatFreeOfChargePurchase'
2441
+
2442
+ class InventoryCycleTypeEnum(StrEnum):
2443
+ ictCylce = 'ictCylce'
2444
+ ictMRP = 'ictMRP'
2445
+
2446
+ class InventoryOpeningBalancePriceSourceEnum(StrEnum):
2447
+ iobpsByPriceList = 'iobpsByPriceList'
2448
+ iobpsLastEvaluatedPrice = 'iobpsLastEvaluatedPrice'
2449
+ iobpsItemCost = 'iobpsItemCost'
2450
+
2451
+ class InventoryPostingCopyOptionEnum(StrEnum):
2452
+ ipcoNoCountersDiff = 'ipcoNoCountersDiff'
2453
+ ipcoIndividual1CountedQuantity = 'ipcoIndividual1CountedQuantity'
2454
+ ipcoIndividual2CountedQuantity = 'ipcoIndividual2CountedQuantity'
2455
+ ipcoIndividual3CountedQuantity = 'ipcoIndividual3CountedQuantity'
2456
+ ipcoIndividual4CountedQuantity = 'ipcoIndividual4CountedQuantity'
2457
+ ipcoIndividual5CountedQuantity = 'ipcoIndividual5CountedQuantity'
2458
+ ipcoTeamCountedQuantity = 'ipcoTeamCountedQuantity'
2459
+
2460
+ class InventoryPostingPriceSourceEnum(StrEnum):
2461
+ ippsByPriceList = 'ippsByPriceList'
2462
+ ippsLastEvaluatedPrice = 'ippsLastEvaluatedPrice'
2463
+ ippsItemCost = 'ippsItemCost'
2464
+
2465
+ class IssuePrimarilyByEnum(StrEnum):
2466
+ ipbSerialAndBatchNumbers = 'ipbSerialAndBatchNumbers'
2467
+ ipbBinLocations = 'ipbBinLocations'
2468
+
2469
+ class ItemClassEnum(StrEnum):
2470
+ itcService = 'itcService'
2471
+ itcMaterial = 'itcMaterial'
2472
+
2473
+ class ItemTypeEnum(StrEnum):
2474
+ itItems = 'itItems'
2475
+ itLabor = 'itLabor'
2476
+ itTravel = 'itTravel'
2477
+ itFixedAssets = 'itFixedAssets'
2478
+
2479
+ class ItemUoMTypeEnum(StrEnum):
2480
+ iutPurchasing = 'iutPurchasing'
2481
+ iutSales = 'iutSales'
2482
+ iutInventory = 'iutInventory'
2483
+
2484
+ class KPITypeEnum(StrEnum):
2485
+ asSingle = 'asSingle'
2486
+ asQuarterly = 'asQuarterly'
2487
+ asMonthly = 'asMonthly'
2488
+ asMultiple = 'asMultiple'
2489
+
2490
+ class LCCostTypeEnum(StrEnum):
2491
+ asFixedCosts = 'asFixedCosts'
2492
+ asVariableCosts = 'asVariableCosts'
2493
+ asLegalCosts = 'asLegalCosts'
2494
+
2495
+ class LandedCostAllocationByEnum(StrEnum):
2496
+ asCashValueBeforeCustoms = 'asCashValueBeforeCustoms'
2497
+ asCashValueAfterCustoms = 'asCashValueAfterCustoms'
2498
+ asQuantity = 'asQuantity'
2499
+ asWeight = 'asWeight'
2500
+ asVolume = 'asVolume'
2501
+ asEqual = 'asEqual'
2502
+ asLegalCost = 'asLegalCost'
2503
+
2504
+ class LandedCostBaseDocumentTypeEnum(StrEnum):
2505
+ asDefault = 'asDefault'
2506
+ asEmpty = 'asEmpty'
2507
+ asGoodsReceiptPO = 'asGoodsReceiptPO'
2508
+ asLandedCosts = 'asLandedCosts'
2509
+ asPurchaseInvoice = 'asPurchaseInvoice'
2510
+
2511
+ class LandedCostCostCategoryEnum(StrEnum):
2512
+ lccc_CustomsVAT = 'lccc_CustomsVAT'
2513
+ lccc_ExciseCost = 'lccc_ExciseCost'
2514
+ lccc_CustomsDuty = 'lccc_CustomsDuty'
2515
+
2516
+ class LandedCostDocStatusEnum(StrEnum):
2517
+ lcOpen = 'lcOpen'
2518
+ lcClosed = 'lcClosed'
2519
+
2520
+ class LegalDataLineTypeEnum(StrEnum):
2521
+ ldlt_DocumentTotal = 'ldlt_DocumentTotal'
2522
+ ldlt_TaxPerLine = 'ldlt_TaxPerLine'
2523
+ ldlt_TotalTax = 'ldlt_TotalTax'
2524
+
2525
+ class LicenseTypeEnum(StrEnum):
2526
+ lkIdirect = 'lkIdirect'
2527
+ lkSOAIndirect = 'lkSOAIndirect'
2528
+ lkSOA = 'lkSOA'
2529
+ lkB1iIndirect = 'lkB1iIndirect'
2530
+ lkB1i = 'lkB1i'
2531
+
2532
+ class LicenseUpdateTypeEnum(StrEnum):
2533
+ ultAssign = 'ultAssign'
2534
+ ultRemove = 'ultRemove'
2535
+
2536
+ class LineStatusTypeEnum(StrEnum):
2537
+ lst_Open = 'lst_Open'
2538
+ lst_Closed = 'lst_Closed'
2539
+
2540
+ class LineTypeEnum(StrEnum):
2541
+ ltDocument = 'ltDocument'
2542
+ ltRounding = 'ltRounding'
2543
+ ltVat = 'ltVat'
2544
+
2545
+ class LinkReferenceTypeEnum(StrEnum):
2546
+ lrt_00 = 'lrt_00'
2547
+ lrt_01 = 'lrt_01'
2548
+ lrt_02 = 'lrt_02'
2549
+ lrt_03 = 'lrt_03'
2550
+ lrt_04 = 'lrt_04'
2551
+ lrt_05 = 'lrt_05'
2552
+ lrt_06 = 'lrt_06'
2553
+ lrt_07 = 'lrt_07'
2554
+ lrt_08 = 'lrt_08'
2555
+ lrt_MX_08 = 'lrt_MX_08'
2556
+ lrt_MX_09 = 'lrt_MX_09'
2557
+
2558
+ class LinkedDocTypeEnum(StrEnum):
2559
+ ldtEmptyLink = 'ldtEmptyLink'
2560
+ ldtSalesOpportunitiesLink = 'ldtSalesOpportunitiesLink'
2561
+ ldtSalesQuotationsLink = 'ldtSalesQuotationsLink'
2562
+ ldtSalesOrdersLink = 'ldtSalesOrdersLink'
2563
+ ldtDeliveriesLink = 'ldtDeliveriesLink'
2564
+ ldtARInvoicesLink = 'ldtARInvoicesLink'
2565
+
2566
+ class LogonMethodEnum(StrEnum):
2567
+ lmBOneIntegrationFramework = 'lmBOneIntegrationFramework'
2568
+ lmStandardLogon = 'lmStandardLogon'
2569
+ lmNoControl = 'lmNoControl'
2570
+
2571
+ class MobileAddonSettingTypeEnum(StrEnum):
2572
+ mastModule = 'mastModule'
2573
+ mastHome = 'mastHome'
2574
+
2575
+ class MobileAppReportChoiceEnum(StrEnum):
2576
+ marSystemReport = 'marSystemReport'
2577
+ marCustomizedReport = 'marCustomizedReport'
2578
+
2579
+ class MultipleCounterRoleEnum(StrEnum):
2580
+ mcrTeamCounter = 'mcrTeamCounter'
2581
+ mcrIndividualCounter = 'mcrIndividualCounter'
2582
+
2583
+ class OperationCode347Enum(StrEnum):
2584
+ ocGoodsOrServiciesAcquisitions = 'ocGoodsOrServiciesAcquisitions'
2585
+ ocPublicEntitiesAcquisitions = 'ocPublicEntitiesAcquisitions'
2586
+ ocTravelAgenciesPurchases = 'ocTravelAgenciesPurchases'
2587
+ ocSalesOrServicesRevenues = 'ocSalesOrServicesRevenues'
2588
+ ocPublicSubsidies = 'ocPublicSubsidies'
2589
+ ocTravelAgenciesSales = 'ocTravelAgenciesSales'
2590
+
2591
+ class OperationCodeTypeEnum(StrEnum):
2592
+ octSummaryInvoicesEntry = 'octSummaryInvoicesEntry'
2593
+ octSummaryReceiptsEntry = 'octSummaryReceiptsEntry'
2594
+ octInvoicewithSeveralVATRates = 'octInvoicewithSeveralVATRates'
2595
+ octCorrectionInvoice = 'octCorrectionInvoice'
2596
+ octDueVATPendingInvoiceIssuance = 'octDueVATPendingInvoiceIssuance'
2597
+ octExpensesIncurredbyTravelAgentforCustomers = 'octExpensesIncurredbyTravelAgentforCustomers'
2598
+ octSpecialRegulationforVATGroup = 'octSpecialRegulationforVATGroup'
2599
+ octSpecialRegulationforGoldInvestment = 'octSpecialRegulationforGoldInvestment'
2600
+ octReverseChargeProcedure = 'octReverseChargeProcedure'
2601
+ octUnsummarizedReceipts = 'octUnsummarizedReceipts'
2602
+ octIdentificationofErrorTransactions = 'octIdentificationofErrorTransactions'
2603
+ octTransactionswithEntrepreneursIssuingReceiptsforAgriculturalCompensation = 'octTransactionswithEntrepreneursIssuingReceiptsforAgriculturalCompensation'
2604
+ octServiceInvoicingbyTravelAgenciesonBehalfofThirdParties = 'octServiceInvoicingbyTravelAgenciesonBehalfofThirdParties'
2605
+ octBusinessOfficeRental = 'octBusinessOfficeRental'
2606
+ octSubsidies = 'octSubsidies'
2607
+ octIncomingPaymentsforIndustrialandIntellectualPropertyRights = 'octIncomingPaymentsforIndustrialandIntellectualPropertyRights'
2608
+ octInsuranceTransactions = 'octInsuranceTransactions'
2609
+ octPurchasesfromTravelAgencies = 'octPurchasesfromTravelAgencies'
2610
+ octTransactionsSubjecttoProductionServiceandImportTaxesinCeutaandMelilla = 'octTransactionsSubjecttoProductionServiceandImportTaxesinCeutaandMelilla'
2611
+
2612
+ class OpportunityTypeEnum(StrEnum):
2613
+ boOpSales = 'boOpSales'
2614
+ boOpPurchasing = 'boOpPurchasing'
2615
+
2616
+ class PMCategorizeTypeEnum(StrEnum):
2617
+ pm_cat_Ignore = 'pm_cat_Ignore'
2618
+ pm_cat_OpenAmountAP = 'pm_cat_OpenAmountAP'
2619
+ pm_cat_OpenAmountAR = 'pm_cat_OpenAmountAR'
2620
+ pm_cat_InvoicedAP = 'pm_cat_InvoicedAP'
2621
+ pm_cat_InvoicedAR = 'pm_cat_InvoicedAR'
2622
+
2623
+ class PMDocumentTypeEnum(StrEnum):
2624
+ pmdt_DocumentDraft = 'pmdt_DocumentDraft'
2625
+ pmdt_ManualJournalEntry = 'pmdt_ManualJournalEntry'
2626
+ pmdt_SalesQuotation = 'pmdt_SalesQuotation'
2627
+ pmdt_SalesOrder = 'pmdt_SalesOrder'
2628
+ pmdt_Delivery = 'pmdt_Delivery'
2629
+ pmdt_Return = 'pmdt_Return'
2630
+ pmdt_ReturnRequest = 'pmdt_ReturnRequest'
2631
+ pmdt_ARDownPaymentRequest = 'pmdt_ARDownPaymentRequest'
2632
+ pmdt_ARDownPaymentInvoice = 'pmdt_ARDownPaymentInvoice'
2633
+ pmdt_ARInvoice = 'pmdt_ARInvoice'
2634
+ pmdt_ARCreditMemo = 'pmdt_ARCreditMemo'
2635
+ pmdt_ARReserveInvoice = 'pmdt_ARReserveInvoice'
2636
+ pmdt_PurchaseQuotation = 'pmdt_PurchaseQuotation'
2637
+ pmdt_PurchaseOrder = 'pmdt_PurchaseOrder'
2638
+ pmdt_PurchaseRequest = 'pmdt_PurchaseRequest'
2639
+ pmdt_GoodsReceiptPO = 'pmdt_GoodsReceiptPO'
2640
+ pmdt_GoodsReturn = 'pmdt_GoodsReturn'
2641
+ pmdt_GoodsReturnRequest = 'pmdt_GoodsReturnRequest'
2642
+ pmdt_APDownPaymentRequest = 'pmdt_APDownPaymentRequest'
2643
+ pmdt_APDownPaymentInvoice = 'pmdt_APDownPaymentInvoice'
2644
+ pmdt_APInvoice = 'pmdt_APInvoice'
2645
+ pmdt_APCreditMemo = 'pmdt_APCreditMemo'
2646
+ pmdt_APReserveInvoice = 'pmdt_APReserveInvoice'
2647
+ pmdt_ServiceCall = 'pmdt_ServiceCall'
2648
+ pmdt_GoodsReceipt = 'pmdt_GoodsReceipt'
2649
+ pmdt_GoodsIssue = 'pmdt_GoodsIssue'
2650
+ pmdt_ARCorrectionInvoice = 'pmdt_ARCorrectionInvoice'
2651
+ pmdt_ARCorrectionInvoiceReversal = 'pmdt_ARCorrectionInvoiceReversal'
2652
+ pmdt_APCorrectionInvoice = 'pmdt_APCorrectionInvoice'
2653
+ pmdt_APCorrectionInvoiceReversal = 'pmdt_APCorrectionInvoiceReversal'
2654
+
2655
+ class PMOperationTypeEnum(StrEnum):
2656
+ pm_op_Ignore = 'pm_op_Ignore'
2657
+ pm_op_Add = 'pm_op_Add'
2658
+ pm_op_Subtract = 'pm_op_Subtract'
2659
+
2660
+ class PaymentInvoiceTypeEnum(StrEnum):
2661
+ itARInvoice = 'itARInvoice'
2662
+ itARDownPaymentInvoice = 'itARDownPaymentInvoice'
2663
+
2664
+ class PaymentMeansTypeEnum(StrEnum):
2665
+ pmtNotAssigned = 'pmtNotAssigned'
2666
+ pmtChecks = 'pmtChecks'
2667
+ pmtBankTransfer = 'pmtBankTransfer'
2668
+ pmtCash = 'pmtCash'
2669
+ pmtCreditCard = 'pmtCreditCard'
2670
+
2671
+ class PaymentRunExportRowTypeEnum(StrEnum):
2672
+ prtGeneral = 'prtGeneral'
2673
+ prtPayOnAccount = 'prtPayOnAccount'
2674
+ prtPayToAccount = 'prtPayToAccount'
2675
+
2676
+ class PaymentsAuthorizationStatusEnum(StrEnum):
2677
+ pasWithout = 'pasWithout'
2678
+ pasPending = 'pasPending'
2679
+ pasApproved = 'pasApproved'
2680
+ pasRejected = 'pasRejected'
2681
+ pasGenerated = 'pasGenerated'
2682
+ pasGeneratedbyAuthorizer = 'pasGeneratedbyAuthorizer'
2683
+ pasCancelled = 'pasCancelled'
2684
+
2685
+ class PeriodStatusEnum(StrEnum):
2686
+ ltUnlocked = 'ltUnlocked'
2687
+ ltUnlockedExceptSales = 'ltUnlockedExceptSales'
2688
+ ltPeriodClosing = 'ltPeriodClosing'
2689
+ ltLocked = 'ltLocked'
2690
+
2691
+ class PostingMethodEnum(StrEnum):
2692
+ pmGLAccountBankAccount = 'pmGLAccountBankAccount'
2693
+ pmBussinessPartnerBankAccount = 'pmBussinessPartnerBankAccount'
2694
+ pmInterimAccountBankAccount = 'pmInterimAccountBankAccount'
2695
+ pmExternalReconciliation = 'pmExternalReconciliation'
2696
+ pmIgnore = 'pmIgnore'
2697
+
2698
+ class PostingOfDepreciationEnum(StrEnum):
2699
+ podDirectPosting = 'podDirectPosting'
2700
+ podIndirectPosting = 'podIndirectPosting'
2701
+
2702
+ class PriceModeDocumentEnum(StrEnum):
2703
+ pmdNet = 'pmdNet'
2704
+ pmdGross = 'pmdGross'
2705
+ pmdNetAndGross = 'pmdNetAndGross'
2706
+
2707
+ class PriceModeEnum(StrEnum):
2708
+ pmNet = 'pmNet'
2709
+ pmGross = 'pmGross'
2710
+
2711
+ class PriceProceedMethodEnum(StrEnum):
2712
+ ppmRemove = 'ppmRemove'
2713
+ ppmUpdate = 'ppmUpdate'
2714
+ ppmKeepCorresponding = 'ppmKeepCorresponding'
2715
+ ppmKeepAll = 'ppmKeepAll'
2716
+
2717
+ class PrintOnEnum(StrEnum):
2718
+ poBlankPaper = 'poBlankPaper'
2719
+ poDefault = 'poDefault'
2720
+ poOverflowBlankPaper = 'poOverflowBlankPaper'
2721
+ poOverflowCheckStock = 'poOverflowCheckStock'
2722
+
2723
+ class PrintStatusEnum(StrEnum):
2724
+ psNo = 'psNo'
2725
+ psYes = 'psYes'
2726
+ psAmended = 'psAmended'
2727
+
2728
+ class ProductionItemType(StrEnum):
2729
+ pit_Item = 'pit_Item'
2730
+ pit_Resource = 'pit_Resource'
2731
+ pit_Text = 'pit_Text'
2732
+
2733
+ class ProjectStatusTypeEnum(StrEnum):
2734
+ pst_Started = 'pst_Started'
2735
+ pst_Paused = 'pst_Paused'
2736
+ pst_Stopped = 'pst_Stopped'
2737
+ pst_Finished = 'pst_Finished'
2738
+ pst_Canceled = 'pst_Canceled'
2739
+
2740
+ class ProjectTypeEnum(StrEnum):
2741
+ pt_External = 'pt_External'
2742
+ pt_Internal = 'pt_Internal'
2743
+
2744
+ class RclRecurringExecutionHandlingEnum(StrEnum):
2745
+ rehStopOnError = 'rehStopOnError'
2746
+ rehSkipTransaction = 'rehSkipTransaction'
2747
+
2748
+ class RclRecurringTransactionStatusEnum(StrEnum):
2749
+ rtsNotExecuted = 'rtsNotExecuted'
2750
+ rtsExecuted = 'rtsExecuted'
2751
+ rtsRemoved = 'rtsRemoved'
2752
+
2753
+ class ReceivingBinLocationsMethodEnum(StrEnum):
2754
+ rblmBinLocationCodeOrder = 'rblmBinLocationCodeOrder'
2755
+ rblmAlternativeSortCodeOrder = 'rblmAlternativeSortCodeOrder'
2756
+
2757
+ class ReceivingUpToMethodEnum(StrEnum):
2758
+ rutmBothMaxQtyAndWeight = 'rutmBothMaxQtyAndWeight'
2759
+ rutmMaximumQty = 'rutmMaximumQty'
2760
+ rutmMaximumWeight = 'rutmMaximumWeight'
2761
+
2762
+ class RecipientTypeEnum(StrEnum):
2763
+ rtUser = 'rtUser'
2764
+ rtEmployee = 'rtEmployee'
2765
+
2766
+ class ReconSelectDateTypeEnum(StrEnum):
2767
+ rsdtPostDate = 'rsdtPostDate'
2768
+ rsdtDueDate = 'rsdtDueDate'
2769
+ rsdtDocDate = 'rsdtDocDate'
2770
+
2771
+ class ReconTypeEnum(StrEnum):
2772
+ rtManual = 'rtManual'
2773
+ rtAutomatic = 'rtAutomatic'
2774
+ rtSemiAutomatic = 'rtSemiAutomatic'
2775
+ rtPayment = 'rtPayment'
2776
+ rtCreditMemo = 'rtCreditMemo'
2777
+ rtReversal = 'rtReversal'
2778
+ rtZeroValue = 'rtZeroValue'
2779
+ rtCancellation = 'rtCancellation'
2780
+ rtBoE = 'rtBoE'
2781
+ rtDeposit = 'rtDeposit'
2782
+ rtBankStatementProcess = 'rtBankStatementProcess'
2783
+ rtPeriodClosing = 'rtPeriodClosing'
2784
+ rtCorrectionInvoice = 'rtCorrectionInvoice'
2785
+ rtInventoryOrExpenseAllocation = 'rtInventoryOrExpenseAllocation'
2786
+ rtWIP = 'rtWIP'
2787
+ rtDeferredTaxInterimAccount = 'rtDeferredTaxInterimAccount'
2788
+ rtDownPaymentAllocation = 'rtDownPaymentAllocation'
2789
+ rtAutoConversionDifference = 'rtAutoConversionDifference'
2790
+ rtInterimDocument = 'rtInterimDocument'
2791
+
2792
+ class ReconciliationAccountTypeEnum(StrEnum):
2793
+ rat_GLAccount = 'rat_GLAccount'
2794
+ rat_BusinessPartner = 'rat_BusinessPartner'
2795
+
2796
+ class RecurrenceDayOfWeekEnum(StrEnum):
2797
+ rdowDay = 'rdowDay'
2798
+ rdowWeekDay = 'rdowWeekDay'
2799
+ rdowWeekendDay = 'rdowWeekendDay'
2800
+ rdowSun = 'rdowSun'
2801
+ rdowMon = 'rdowMon'
2802
+ rdowTue = 'rdowTue'
2803
+ rdowWed = 'rdowWed'
2804
+ rdowThu = 'rdowThu'
2805
+ rdowFri = 'rdowFri'
2806
+ rdowSat = 'rdowSat'
2807
+
2808
+ class RecurrencePatternEnum(StrEnum):
2809
+ rpNone = 'rpNone'
2810
+ rpDaily = 'rpDaily'
2811
+ rpWeekly = 'rpWeekly'
2812
+ rpMonthly = 'rpMonthly'
2813
+ rpAnnually = 'rpAnnually'
2814
+
2815
+ class RecurrenceSequenceEnum(StrEnum):
2816
+ rsFirst = 'rsFirst'
2817
+ rsSecond = 'rsSecond'
2818
+ rsThird = 'rsThird'
2819
+ rsFourth = 'rsFourth'
2820
+ rsLast = 'rsLast'
2821
+
2822
+ class ReferencedObjectTypeEnum(StrEnum):
2823
+ rot_ExternalDocument = 'rot_ExternalDocument'
2824
+ rot_SalesQuotation = 'rot_SalesQuotation'
2825
+ rot_SalesOrder = 'rot_SalesOrder'
2826
+ rot_DeliveryNotes = 'rot_DeliveryNotes'
2827
+ rot_ReturnRequest = 'rot_ReturnRequest'
2828
+ rot_Return = 'rot_Return'
2829
+ rot_DownPaymentIncoming = 'rot_DownPaymentIncoming'
2830
+ rot_SalesInvoice = 'rot_SalesInvoice'
2831
+ rot_SalesCreditNote = 'rot_SalesCreditNote'
2832
+ rot_CorrectionSalesInvoice = 'rot_CorrectionSalesInvoice'
2833
+ rot_SalesTaxInvoice = 'rot_SalesTaxInvoice'
2834
+ rot_PurchaseQuotation = 'rot_PurchaseQuotation'
2835
+ rot_PurchaseOrder = 'rot_PurchaseOrder'
2836
+ rot_GoodsReceiptPO = 'rot_GoodsReceiptPO'
2837
+ rot_GoodsReturnRequest = 'rot_GoodsReturnRequest'
2838
+ rot_GoodsReturn = 'rot_GoodsReturn'
2839
+ rot_DownPaymentOutgoing = 'rot_DownPaymentOutgoing'
2840
+ rot_PurchaseInvoice = 'rot_PurchaseInvoice'
2841
+ rot_PurchaseCreditNote = 'rot_PurchaseCreditNote'
2842
+ rot_CorrectionPurchaseInvoice = 'rot_CorrectionPurchaseInvoice'
2843
+ rot_PurchaseTaxInvoice = 'rot_PurchaseTaxInvoice'
2844
+ rot_LandedCosts = 'rot_LandedCosts'
2845
+ rot_IncomingPayments = 'rot_IncomingPayments'
2846
+ rot_JournalEntry = 'rot_JournalEntry'
2847
+ rot_ProductionOrder = 'rot_ProductionOrder'
2848
+ rot_InternalReconciliation = 'rot_InternalReconciliation'
2849
+ rot_OriginalInvoice = 'rot_OriginalInvoice'
2850
+ rot_OriginalARDownPayment = 'rot_OriginalARDownPayment'
2851
+ rot_PurchaseRequest = 'rot_PurchaseRequest'
2852
+ rot_GoodsReceipt = 'rot_GoodsReceipt'
2853
+ rot_GoodsIssue = 'rot_GoodsIssue'
2854
+ rot_InventoryTransferRequest = 'rot_InventoryTransferRequest'
2855
+ rot_InventoryTransfer = 'rot_InventoryTransfer'
2856
+ rot_ChecksforPayment = 'rot_ChecksforPayment'
2857
+ rot_MaterialRevaluation = 'rot_MaterialRevaluation'
2858
+ rot_InventoryCounting = 'rot_InventoryCounting'
2859
+ rot_InventoryPosting = 'rot_InventoryPosting'
2860
+ rot_OutgoingPayments = 'rot_OutgoingPayments'
2861
+
2862
+ class RelatedDocumentTypeEnum(StrEnum):
2863
+ rdt_Payment = 'rdt_Payment'
2864
+ rdt_Reconciliation = 'rdt_Reconciliation'
2865
+
2866
+ class RepeatOptionEnum(StrEnum):
2867
+ roByDate = 'roByDate'
2868
+ roByWeekDay = 'roByWeekDay'
2869
+
2870
+ class Report349CodeListEnum(StrEnum):
2871
+ r349cA = 'r349cA'
2872
+ r349cE = 'r349cE'
2873
+ r349cEmpty = 'r349cEmpty'
2874
+ r349cH = 'r349cH'
2875
+ r349cI = 'r349cI'
2876
+ r349cM = 'r349cM'
2877
+ r349cS = 'r349cS'
2878
+ r349cT = 'r349cT'
2879
+
2880
+ class ReportLayoutCategoryEnum(StrEnum):
2881
+ rlcPLD = 'rlcPLD'
2882
+ rlcCrystal = 'rlcCrystal'
2883
+ rlcLegalList = 'rlcLegalList'
2884
+ rlcUserDefinedType = 'rlcUserDefinedType'
2885
+
2886
+ class ResidenceNumberTypeEnum(StrEnum):
2887
+ rntSpanishFiscalID = 'rntSpanishFiscalID'
2888
+ rntVATRegistrationNumber = 'rntVATRegistrationNumber'
2889
+ rntPassport = 'rntPassport'
2890
+ rntFiscalIDIssuedbytheResidenceCountry = 'rntFiscalIDIssuedbytheResidenceCountry'
2891
+ rntCertificateofFiscalResidence = 'rntCertificateofFiscalResidence'
2892
+ rntOtherDocument = 'rntOtherDocument'
2893
+
2894
+ class ResourceAllocationEnum(StrEnum):
2895
+ raOnStartDate = 'raOnStartDate'
2896
+ raOnEndDate = 'raOnEndDate'
2897
+ raStartDateForwards = 'raStartDateForwards'
2898
+ raEndDateBackwards = 'raEndDateBackwards'
2899
+
2900
+ class ResourceCapacityActionEnum(StrEnum):
2901
+ rcaUnknown = 'rcaUnknown'
2902
+ rcaProductionOrderCreate = 'rcaProductionOrderCreate'
2903
+ rcaProductionOrderClose = 'rcaProductionOrderClose'
2904
+ rcaProductionOrderReschedule = 'rcaProductionOrderReschedule'
2905
+ rcaProductionOrderAddLine = 'rcaProductionOrderAddLine'
2906
+ rcaProductionOrderDeleteLine = 'rcaProductionOrderDeleteLine'
2907
+ rcaProductionOrderUpdateLine = 'rcaProductionOrderUpdateLine'
2908
+ rcaIssueForProductionCreate = 'rcaIssueForProductionCreate'
2909
+ rcaReceiptFromProductionCreate = 'rcaReceiptFromProductionCreate'
2910
+
2911
+ class ResourceCapacityBaseTypeEnum(StrEnum):
2912
+ rcbtNone = 'rcbtNone'
2913
+ rcbtProductionOrder = 'rcbtProductionOrder'
2914
+
2915
+ class ResourceCapacityMemoSourceEnum(StrEnum):
2916
+ rcmsUnknown = 'rcmsUnknown'
2917
+ rcmsResourceCapacityForm = 'rcmsResourceCapacityForm'
2918
+ rcmsSetDailyInternalCapacitiesForm = 'rcmsSetDailyInternalCapacitiesForm'
2919
+
2920
+ class ResourceCapacityOwningTypeEnum(StrEnum):
2921
+ rcotNone = 'rcotNone'
2922
+ rcotProductionOrder = 'rcotProductionOrder'
2923
+ rcotIssueForProduction = 'rcotIssueForProduction'
2924
+ rcotReceiptFromProduction = 'rcotReceiptFromProduction'
2925
+
2926
+ class ResourceCapacityRevertedTypeEnum(StrEnum):
2927
+ rcrtNone = 'rcrtNone'
2928
+ rcrtIssueForProduction = 'rcrtIssueForProduction'
2929
+
2930
+ class ResourceCapacitySourceTypeEnum(StrEnum):
2931
+ rcstNone = 'rcstNone'
2932
+ rcstProductionOrder = 'rcstProductionOrder'
2933
+ rcstIssueForProduction = 'rcstIssueForProduction'
2934
+ rcstReceiptFromProduction = 'rcstReceiptFromProduction'
2935
+
2936
+ class ResourceCapacityTypeEnum(StrEnum):
2937
+ rctInternal = 'rctInternal'
2938
+ rctOrdered = 'rctOrdered'
2939
+ rctCommitted = 'rctCommitted'
2940
+ rctConsumed = 'rctConsumed'
2941
+
2942
+ class ResourceDailyCapacityWeekdayEnum(StrEnum):
2943
+ rdcwFirst = 'rdcwFirst'
2944
+ rdcwSecond = 'rdcwSecond'
2945
+ rdcwThird = 'rdcwThird'
2946
+ rdcwFourth = 'rdcwFourth'
2947
+ rdcwFifth = 'rdcwFifth'
2948
+ rdcwSixth = 'rdcwSixth'
2949
+ rdcwSeventh = 'rdcwSeventh'
2950
+
2951
+ class ResourceIssueMethodEnum(StrEnum):
2952
+ rimBackflush = 'rimBackflush'
2953
+ rimManual = 'rimManual'
2954
+
2955
+ class ResourceTypeEnum(StrEnum):
2956
+ rtMachine = 'rtMachine'
2957
+ rtLabor = 'rtLabor'
2958
+ rtOther = 'rtOther'
2959
+
2960
+ class RetirementMethodEnum(StrEnum):
2961
+ rmGross = 'rmGross'
2962
+ rmNet = 'rmNet'
2963
+
2964
+ class RetirementPeriodControlEnum(StrEnum):
2965
+ rpcProRataTemporis = 'rpcProRataTemporis'
2966
+ rpcHalfYearConvention = 'rpcHalfYearConvention'
2967
+ rpcOnlyAfterEndOfUsefulLife = 'rpcOnlyAfterEndOfUsefulLife'
2968
+
2969
+ class RetirementProRataTypeEnum(StrEnum):
2970
+ rprtExactlyDailyBase = 'rprtExactlyDailyBase'
2971
+ rprtLastDayOfPriorPeriod = 'rprtLastDayOfPriorPeriod'
2972
+ rprtLastDayOfCurrentPeriod = 'rprtLastDayOfCurrentPeriod'
2973
+
2974
+ class ReturnTypeEnum(StrEnum):
2975
+ rt26Q = 'rt26Q'
2976
+ rt27Q = 'rt27Q'
2977
+ rt27EQ = 'rt27EQ'
2978
+
2979
+ class RiskLevelTypeEnum(StrEnum):
2980
+ rlt_Low = 'rlt_Low'
2981
+ rlt_Medium = 'rlt_Medium'
2982
+ rlt_High = 'rlt_High'
2983
+
2984
+ class RoundingContextEnum(StrEnum):
2985
+ rcSum = 'rcSum'
2986
+ rcPrice = 'rcPrice'
2987
+ rcRate = 'rcRate'
2988
+ rcQuantity = 'rcQuantity'
2989
+ rcMeasure = 'rcMeasure'
2990
+ rcPercent = 'rcPercent'
2991
+ rcTax = 'rcTax'
2992
+ rcTaxPerGroup = 'rcTaxPerGroup'
2993
+ rcBudgetSum = 'rcBudgetSum'
2994
+ rcPriceListSum = 'rcPriceListSum'
2995
+ rcRealAmountInPayment = 'rcRealAmountInPayment'
2996
+ rcStockSumRoundUp = 'rcStockSumRoundUp'
2997
+ rcDocHeaderTotal = 'rcDocHeaderTotal'
2998
+ rcVatReportAmount = 'rcVatReportAmount'
2999
+ rcLineGrossTotal = 'rcLineGrossTotal'
3000
+ rcExpenseTotal = 'rcExpenseTotal'
3001
+ rcWTax = 'rcWTax'
3002
+ rcBASCode = 'rcBASCode'
3003
+ rcTaxForPrice = 'rcTaxForPrice'
3004
+
3005
+ class RoundingSysEnum(StrEnum):
3006
+ rsNoRounding = 'rsNoRounding'
3007
+ rsRoundToFiveHundredth = 'rsRoundToFiveHundredth'
3008
+ rsRoundToOne = 'rsRoundToOne'
3009
+ rsRoundToTen = 'rsRoundToTen'
3010
+ rsRoundToTenHundredth = 'rsRoundToTenHundredth'
3011
+
3012
+ class RoundingTypeEnum(StrEnum):
3013
+ rt_TruncatedAU = 'rt_TruncatedAU'
3014
+ rt_CommercialValues = 'rt_CommercialValues'
3015
+ rt_NoRounding = 'rt_NoRounding'
3016
+
3017
+ class SAFTProductTypeEnum(StrEnum):
3018
+ saftpt_Products = 'saftpt_Products'
3019
+ saftpt_Services = 'saftpt_Services'
3020
+ saftpt_Other = 'saftpt_Other'
3021
+ saftpt_Taxes = 'saftpt_Taxes'
3022
+ saftpt_NonSystem = 'saftpt_NonSystem'
3023
+
3024
+ class SAFTTaxCodeEnum(StrEnum):
3025
+ safttc_ReducedTax = 'safttc_ReducedTax'
3026
+ safttc_MiddleTax = 'safttc_MiddleTax'
3027
+ safttc_NormalTax = 'safttc_NormalTax'
3028
+ safttc_Exempt = 'safttc_Exempt'
3029
+ safttt_Others = 'safttt_Others'
3030
+ safttc_NonSystem = 'safttc_NonSystem'
3031
+
3032
+ class SAFTTransactionTypeEnum(StrEnum):
3033
+ safttt_Default = 'safttt_Default'
3034
+ safttt_Normal = 'safttt_Normal'
3035
+ safttt_AdjustmentsofTheTaxPeriod = 'safttt_AdjustmentsofTheTaxPeriod'
3036
+ safttt_MeasurementofResults = 'safttt_MeasurementofResults'
3037
+ safttt_Adjustment = 'safttt_Adjustment'
3038
+ safttt_DoNotExport = 'safttt_DoNotExport'
3039
+ safttt_NonSystem = 'safttt_NonSystem'
3040
+
3041
+ class SEPASequenceTypeEnum(StrEnum):
3042
+ sstOOFF = 'sstOOFF'
3043
+ sstFRST = 'sstFRST'
3044
+ sstRCUR = 'sstRCUR'
3045
+ sstFNAL = 'sstFNAL'
3046
+
3047
+ class SOIExcisableTypeEnum(StrEnum):
3048
+ se_Excisable = 'se_Excisable'
3049
+ se_Exemption = 'se_Exemption'
3050
+ se_PaidToOther = 'se_PaidToOther'
3051
+ se_NotExcisable = 'se_NotExcisable'
3052
+
3053
+ class SPEDContabilAccountPurposeCode(StrEnum):
3054
+ spedContasDeAtivo = 'spedContasDeAtivo'
3055
+ spedContasDePassivo = 'spedContasDePassivo'
3056
+ spedPatrimonioLiquido = 'spedPatrimonioLiquido'
3057
+ spedContasDeResultado = 'spedContasDeResultado'
3058
+ spedContasDeCompensacao = 'spedContasDeCompensacao'
3059
+ spedOutras = 'spedOutras'
3060
+
3061
+ class SPEDContabilQualificationCodeEnum(StrEnum):
3062
+ spedNA = 'spedNA'
3063
+ spedDiretor = 'spedDiretor'
3064
+ spedConselheiroDeAdministracao = 'spedConselheiroDeAdministracao'
3065
+ spedAdministrador = 'spedAdministrador'
3066
+ spedAdministradorDoGrupo = 'spedAdministradorDoGrupo'
3067
+ spedAdministradorDeSociedadeFiliada = 'spedAdministradorDeSociedadeFiliada'
3068
+ spedAdministradorJudicialPessoaFisica = 'spedAdministradorJudicialPessoaFisica'
3069
+ spedAdministradorJudicialPessoaJuridicaProfissionalResponsavel = 'spedAdministradorJudicialPessoaJuridicaProfissionalResponsavel'
3070
+ spedAdministradorJudicialGestor = 'spedAdministradorJudicialGestor'
3071
+ spedGestorJudicial = 'spedGestorJudicial'
3072
+ spedProcurador = 'spedProcurador'
3073
+ spedInventariante = 'spedInventariante'
3074
+ spedLiquidante = 'spedLiquidante'
3075
+ spedInterventor = 'spedInterventor'
3076
+ spedEmpresario = 'spedEmpresario'
3077
+ spedContador = 'spedContador'
3078
+ spedOutros = 'spedOutros'
3079
+
3080
+ class ServiceTypeEnum(StrEnum):
3081
+ srvcSales = 'srvcSales'
3082
+ srvcPurchasing = 'srvcPurchasing'
3083
+
3084
+ class Services(StrEnum):
3085
+ MessagesService = 'MessagesService'
3086
+ CompanyService = 'CompanyService'
3087
+ SeriesService = 'SeriesService'
3088
+ ReportLayoutsService = 'ReportLayoutsService'
3089
+ FormPreferencesService = 'FormPreferencesService'
3090
+ AccountsService = 'AccountsService'
3091
+ BusinessPartnersService = 'BusinessPartnersService'
3092
+
3093
+ class ShaamGroupEnum(StrEnum):
3094
+ sgServicesAndAsset = 'sgServicesAndAsset'
3095
+ sgAgriculturalProducts = 'sgAgriculturalProducts'
3096
+ sgInsuranceCommissions = 'sgInsuranceCommissions'
3097
+ sgWHTaxInstructions = 'sgWHTaxInstructions'
3098
+ sgInterestExchangeRateDiffs = 'sgInterestExchangeRateDiffs'
3099
+ sgRentalFees = 'sgRentalFees'
3100
+
3101
+ class SingleUserConnectionActionEnum(StrEnum):
3102
+ sucaWarning = 'sucaWarning'
3103
+ sucaBlock = 'sucaBlock'
3104
+
3105
+ class SortOrderEnum(StrEnum):
3106
+ soAscending = 'soAscending'
3107
+ soDescending = 'soDescending'
3108
+
3109
+ class SourceCurrencyEnum(StrEnum):
3110
+ sc_PrimaryCurrency = 'sc_PrimaryCurrency'
3111
+ sc_AdditionalCurrency1 = 'sc_AdditionalCurrency1'
3112
+ sc_AdditionalCurrency2 = 'sc_AdditionalCurrency2'
3113
+
3114
+ class SpecialDepreciationCalculationMethodEnum(StrEnum):
3115
+ spcmAdditional = 'spcmAdditional'
3116
+ spcmAlternative = 'spcmAlternative'
3117
+
3118
+ class SpecialDepreciationMaximumFlagEnum(StrEnum):
3119
+ spmfPercentage = 'spmfPercentage'
3120
+ spmfAmount = 'spmfAmount'
3121
+
3122
+ class SpecialProductTypeEnum(StrEnum):
3123
+ sptMT = 'sptMT'
3124
+ sptIO = 'sptIO'
3125
+
3126
+ class StageDepTypeEnum(StrEnum):
3127
+ sdt_Project = 'sdt_Project'
3128
+ sdt_Subproject = 'sdt_Subproject'
3129
+
3130
+ class StockTransferAuthorizationStatusEnum(StrEnum):
3131
+ sasWithout = 'sasWithout'
3132
+ sasPending = 'sasPending'
3133
+ sasApproved = 'sasApproved'
3134
+ sasRejected = 'sasRejected'
3135
+ sasGenerated = 'sasGenerated'
3136
+ sasGeneratedbyAuthorizer = 'sasGeneratedbyAuthorizer'
3137
+ sasCancelled = 'sasCancelled'
3138
+
3139
+ class StraightLineCalculationMethodEnum(StrEnum):
3140
+ slcmAuquisitionValueDividedByTotalUsefulLife = 'slcmAuquisitionValueDividedByTotalUsefulLife'
3141
+ slcmPercentageOfAcquisitionValue = 'slcmPercentageOfAcquisitionValue'
3142
+ slcmNetBookValueDividedByRemainingLife = 'slcmNetBookValueDividedByRemainingLife'
3143
+
3144
+ class StraightLinePeriodControlDepreciationPeriodsEnum(StrEnum):
3145
+ slpcdpStandard = 'slpcdpStandard'
3146
+ slpcdpIndividual = 'slpcdpIndividual'
3147
+ slpcdpIndividualUsage = 'slpcdpIndividualUsage'
3148
+
3149
+ class SubprojectStatusTypeEnum(StrEnum):
3150
+ sst_Open = 'sst_Open'
3151
+ sst_Closed = 'sst_Closed'
3152
+
3153
+ class SubsequentAcquisitionPeriodControlEnum(StrEnum):
3154
+ sapcProRataTemporis = 'sapcProRataTemporis'
3155
+ sapcHalfYearConvention = 'sapcHalfYearConvention'
3156
+ sapcFullYear = 'sapcFullYear'
3157
+
3158
+ class SubsequentAcquisitionProRataTypeEnum(StrEnum):
3159
+ saprtExactlyDailyBase = 'saprtExactlyDailyBase'
3160
+ saprtFirstDayOfCurrentPeriod = 'saprtFirstDayOfCurrentPeriod'
3161
+ saprtFirstDayOfNextPeriod = 'saprtFirstDayOfNextPeriod'
3162
+
3163
+ class SupportUserLoginRecordLogReasonTypeEnum(StrEnum):
3164
+ reasonTransIssueAnaly = 'reasonTransIssueAnaly'
3165
+ reasonSetupIssueAnaly = 'reasonSetupIssueAnaly'
3166
+ reasonDataIssueAnaly = 'reasonDataIssueAnaly'
3167
+ reasonAddonIssueAnaly = 'reasonAddonIssueAnaly'
3168
+ reasonCustomerIssueAnaly = 'reasonCustomerIssueAnaly'
3169
+ reasonSystemMaint = 'reasonSystemMaint'
3170
+ reasonConsulting = 'reasonConsulting'
3171
+ reasonOther = 'reasonOther'
3172
+ reasonAddonAccess = 'reasonAddonAccess'
3173
+ reasonRootCauseAnaly = 'reasonRootCauseAnaly'
3174
+ reasonConsultSupport = 'reasonConsultSupport'
3175
+
3176
+ class TCSAccumulationBaseEnum(StrEnum):
3177
+ tcsAccumulationOnInvoice = 'tcsAccumulationOnInvoice'
3178
+ tcsAccumulationOnPayment = 'tcsAccumulationOnPayment'
3179
+
3180
+ class TargetGroupTypeEnum(StrEnum):
3181
+ tgtCustomer = 'tgtCustomer'
3182
+ tgtVendor = 'tgtVendor'
3183
+
3184
+ class TargetGroupsDetailStatusEnum(StrEnum):
3185
+ tdsActive = 'tdsActive'
3186
+ tdsInactive = 'tdsInactive'
3187
+
3188
+ class TaxCalcSysEnum(StrEnum):
3189
+ PreconfiguredFormulaWithJurisdictionSupport = 'PreconfiguredFormulaWithJurisdictionSupport'
3190
+ UserDefinedFormula = 'UserDefinedFormula'
3191
+ PreconfiguredFormula = 'PreconfiguredFormula'
3192
+
3193
+ class TaxCodeDeterminationTCDByUsageTypeEnum(StrEnum):
3194
+ tcdbutDefaultSales = 'tcdbutDefaultSales'
3195
+ tcdbutDefaultPurchase = 'tcdbutDefaultPurchase'
3196
+ tcdbutLine = 'tcdbutLine'
3197
+
3198
+ class TaxCodeDeterminationTCDDefaultWTTypeEnum(StrEnum):
3199
+ tcddwttDefaultSales = 'tcddwttDefaultSales'
3200
+ tcddwttDefaultPurchase = 'tcddwttDefaultPurchase'
3201
+ tcddwttLine = 'tcddwttLine'
3202
+
3203
+ class TaxCodeDeterminationTCDTypeEnum(StrEnum):
3204
+ tcdtMaterialItem = 'tcdtMaterialItem'
3205
+ tcdtServiceItem = 'tcdtServiceItem'
3206
+ tcdtServiceDocument = 'tcdtServiceDocument'
3207
+ tcdtWithholdingTax = 'tcdtWithholdingTax'
3208
+
3209
+ class TaxInvoiceReportLineTypeEnum(StrEnum):
3210
+ LineOfBusinessPlace = 'LineOfBusinessPlace'
3211
+ LineOfBusinessPartner = 'LineOfBusinessPartner'
3212
+ LineOfDocument = 'LineOfDocument'
3213
+ LineOfItem = 'LineOfItem'
3214
+
3215
+ class TaxInvoiceReportNTSApprovedEnum(StrEnum):
3216
+ NotApproved = 'NotApproved'
3217
+ Approved = 'Approved'
3218
+
3219
+ class TaxRateDeterminationEnum(StrEnum):
3220
+ trd_PostingDate = 'trd_PostingDate'
3221
+ trd_DocumentDate = 'trd_DocumentDate'
3222
+
3223
+ class TaxReportFilterApArDocumentType(StrEnum):
3224
+ trfadt_APDocuments = 'trfadt_APDocuments'
3225
+ trfadt_ARDocuments = 'trfadt_ARDocuments'
3226
+
3227
+ class TaxReportFilterDeclarationType(StrEnum):
3228
+ trfdt_Original = 'trfdt_Original'
3229
+ trfdt_Substitute = 'trfdt_Substitute'
3230
+ trfdt_Complementary = 'trfdt_Complementary'
3231
+
3232
+ class TaxReportFilterDocumentType(StrEnum):
3233
+ trfdt_ARInvoices = 'trfdt_ARInvoices'
3234
+ trfdt_ARCreditMemos = 'trfdt_ARCreditMemos'
3235
+ trfdt_APInvoices = 'trfdt_APInvoices'
3236
+ trfdt_APCreditMemos = 'trfdt_APCreditMemos'
3237
+ trfdt_IncomingPayments = 'trfdt_IncomingPayments'
3238
+ trfdt_JournalEntries = 'trfdt_JournalEntries'
3239
+ trfdt_OutgoingPayments = 'trfdt_OutgoingPayments'
3240
+ trfdt_ChecksforPayment = 'trfdt_ChecksforPayment'
3241
+ trfdt_InventoryTransfers = 'trfdt_InventoryTransfers'
3242
+ trfdt_ARDownPayment = 'trfdt_ARDownPayment'
3243
+ trfdt_APDownPayment = 'trfdt_APDownPayment'
3244
+
3245
+ class TaxReportFilterPeriod(StrEnum):
3246
+ trfP_Quarter = 'trfP_Quarter'
3247
+ trfP_Year = 'trfP_Year'
3248
+ trfP_Month = 'trfP_Month'
3249
+ trfP_NULL = 'trfP_NULL'
3250
+
3251
+ class TaxReportFilterQuarterOrDates(StrEnum):
3252
+ trfqd_Interval = 'trfqd_Interval'
3253
+ trfqd_Date = 'trfqd_Date'
3254
+
3255
+ class TaxReportFilterReportLayoutType(StrEnum):
3256
+ trfrlt_RegisterBookLayout = 'trfrlt_RegisterBookLayout'
3257
+ trfrlt_DeclarationLayout = 'trfrlt_DeclarationLayout'
3258
+
3259
+ class TaxReportFilterType(StrEnum):
3260
+ trft_TaxReport = 'trft_TaxReport'
3261
+ trft_WTReport = 'trft_WTReport'
3262
+ trft_Report347 = 'trft_Report347'
3263
+ trft_Report349 = 'trft_Report349'
3264
+ trft_ReconciliationReport = 'trft_ReconciliationReport'
3265
+ trft_StampTax = 'trft_StampTax'
3266
+ trft_SalesReport = 'trft_SalesReport'
3267
+ trft_None = 'trft_None'
3268
+ trft_BoxReport = 'trft_BoxReport'
3269
+ trft_AppendixOP = 'trft_AppendixOP'
3270
+ trft_AnnualSalesReport = 'trft_AnnualSalesReport'
3271
+ trft_VATRefundReport = 'trft_VATRefundReport'
3272
+
3273
+ class TaxTypeBlackListEnum(StrEnum):
3274
+ ttblExcluded = 'ttblExcluded'
3275
+ ttblExempt = 'ttblExempt'
3276
+ ttblNonSubject = 'ttblNonSubject'
3277
+ ttblNotTaxable = 'ttblNotTaxable'
3278
+ ttblTaxable = 'ttblTaxable'
3279
+
3280
+ class TdsTypeEnum(StrEnum):
3281
+ wtETds = 'wtETds'
3282
+ wtGstTds = 'wtGstTds'
3283
+ wtGstTcs = 'wtGstTcs'
3284
+ wtTcs = 'wtTcs'
3285
+
3286
+ class ThreatLevelEnum(StrEnum):
3287
+ tlLow = 'tlLow'
3288
+ tlMedium = 'tlMedium'
3289
+ tlHigh = 'tlHigh'
3290
+
3291
+ class TimeSheetTypeEnum(StrEnum):
3292
+ tsh_Employee = 'tsh_Employee'
3293
+ tsh_User = 'tsh_User'
3294
+ tsh_Other = 'tsh_Other'
3295
+
3296
+ class TransTypesEnum(StrEnum):
3297
+ ttAllTransactions = 'ttAllTransactions'
3298
+ ttOpeningBalance = 'ttOpeningBalance'
3299
+ ttClosingBalance = 'ttClosingBalance'
3300
+ ttARInvoice = 'ttARInvoice'
3301
+ ttARCredItnote = 'ttARCredItnote'
3302
+ ttDelivery = 'ttDelivery'
3303
+ ttReturn = 'ttReturn'
3304
+ ttAPInvoice = 'ttAPInvoice'
3305
+ ttAPCreditNote = 'ttAPCreditNote'
3306
+ ttPurchaseDeliveryNote = 'ttPurchaseDeliveryNote'
3307
+ ttPurchaseReturn = 'ttPurchaseReturn'
3308
+ ttReceipt = 'ttReceipt'
3309
+ ttDeposit = 'ttDeposit'
3310
+ ttJournalEntry = 'ttJournalEntry'
3311
+ ttVendorPayment = 'ttVendorPayment'
3312
+ ttChequesForPayment = 'ttChequesForPayment'
3313
+ ttStockList = 'ttStockList'
3314
+ ttGeneralReceiptToStock = 'ttGeneralReceiptToStock'
3315
+ ttGeneralReleaseFromStock = 'ttGeneralReleaseFromStock'
3316
+ ttTransferBetweenWarehouses = 'ttTransferBetweenWarehouses'
3317
+ ttWorkInstructions = 'ttWorkInstructions'
3318
+ ttLandedCosts = 'ttLandedCosts'
3319
+ ttDeferredDeposit = 'ttDeferredDeposit'
3320
+ ttCorrectionInvoice = 'ttCorrectionInvoice'
3321
+ ttInventoryValuation = 'ttInventoryValuation'
3322
+ ttAPCorrectionInvoice = 'ttAPCorrectionInvoice'
3323
+ ttAPCorrectionInvoiceReversal = 'ttAPCorrectionInvoiceReversal'
3324
+ ttARCorrectionInvoice = 'ttARCorrectionInvoice'
3325
+ ttARCorrectionInvoiceReversal = 'ttARCorrectionInvoiceReversal'
3326
+ ttBoETransaction = 'ttBoETransaction'
3327
+ ttProductionOrder = 'ttProductionOrder'
3328
+ ttDownPayment = 'ttDownPayment'
3329
+ ttPurchaseDownPayment = 'ttPurchaseDownPayment'
3330
+ ttInternalReconciliation = 'ttInternalReconciliation'
3331
+ ttInventoryPosting = 'ttInventoryPosting'
3332
+ ttInventoryOpeningBalance = 'ttInventoryOpeningBalance'
3333
+
3334
+ class TransferSourcePeriodControlEnum(StrEnum):
3335
+ tspcProRataTemporis = 'tspcProRataTemporis'
3336
+
3337
+ class TransferSourceProRataTypeEnum(StrEnum):
3338
+ tsprtExactlyDailyBase = 'tsprtExactlyDailyBase'
3339
+ tsprtLastDayOfPriorPeriod = 'tsprtLastDayOfPriorPeriod'
3340
+ tsprtLastDayofCurrentPeriod = 'tsprtLastDayofCurrentPeriod'
3341
+
3342
+ class TransferTargetPeriodControlEnum(StrEnum):
3343
+ ttpcProRataTemporis = 'ttpcProRataTemporis'
3344
+
3345
+ class TransferTargetProRataTypeEnum(StrEnum):
3346
+ ttprtExactlyDailyBase = 'ttprtExactlyDailyBase'
3347
+ ttprtFirstDayOfCurrentPeriod = 'ttprtFirstDayOfCurrentPeriod'
3348
+ ttprtFirstDayOfNextPeriod = 'ttprtFirstDayOfNextPeriod'
3349
+
3350
+ class TranslationCategoryEnum(StrEnum):
3351
+ asCRReport = 'asCRReport'
3352
+ asMenuItem = 'asMenuItem'
3353
+ asEFMItem = 'asEFMItem'
3354
+
3355
+ class TypeOfAdvancedRulesEnum(StrEnum):
3356
+ toarGeneral = 'toarGeneral'
3357
+ toarWarehouse = 'toarWarehouse'
3358
+ toarItemGroup = 'toarItemGroup'
3359
+
3360
+ class TypeOfOperationEnum(StrEnum):
3361
+ tooProfessionalServices = 'tooProfessionalServices'
3362
+ tooRentingAssets = 'tooRentingAssets'
3363
+ tooOthers = 'tooOthers'
3364
+
3365
+ class UDFLinkedSystemObjectTypesEnum(StrEnum):
3366
+ ulNone = 'ulNone'
3367
+ ulChartOfAccounts = 'ulChartOfAccounts'
3368
+ ulBusinessPartners = 'ulBusinessPartners'
3369
+ ulBanks = 'ulBanks'
3370
+ ulItems = 'ulItems'
3371
+ ulUsers = 'ulUsers'
3372
+ ulInvoices = 'ulInvoices'
3373
+ ulCreditNotes = 'ulCreditNotes'
3374
+ ulDeliveryNotes = 'ulDeliveryNotes'
3375
+ ulReturns = 'ulReturns'
3376
+ ulOrders = 'ulOrders'
3377
+ ulPurchaseInvoices = 'ulPurchaseInvoices'
3378
+ ulPurchaseCreditNotes = 'ulPurchaseCreditNotes'
3379
+ ulPurchaseDeliveryNotes = 'ulPurchaseDeliveryNotes'
3380
+ ulPurchaseReturns = 'ulPurchaseReturns'
3381
+ ulPurchaseOrders = 'ulPurchaseOrders'
3382
+ ulQuotations = 'ulQuotations'
3383
+ ulIncomingPayments = 'ulIncomingPayments'
3384
+ ulDepositsService = 'ulDepositsService'
3385
+ ulJournalEntries = 'ulJournalEntries'
3386
+ ulContacts = 'ulContacts'
3387
+ ulVendorPayments = 'ulVendorPayments'
3388
+ ulChecksforPayment = 'ulChecksforPayment'
3389
+ ulInventoryGenEntry = 'ulInventoryGenEntry'
3390
+ ulInventoryGenExit = 'ulInventoryGenExit'
3391
+ ulWarehouses = 'ulWarehouses'
3392
+ ulProductTrees = 'ulProductTrees'
3393
+ ulStockTransfer = 'ulStockTransfer'
3394
+ ulSalesOpportunities = 'ulSalesOpportunities'
3395
+ ulDrafts = 'ulDrafts'
3396
+ ulMaterialRevaluation = 'ulMaterialRevaluation'
3397
+ ulEmployeesInfo = 'ulEmployeesInfo'
3398
+ ulCustomerEquipmentCards = 'ulCustomerEquipmentCards'
3399
+ ulServiceContracts = 'ulServiceContracts'
3400
+ ulServiceCalls = 'ulServiceCalls'
3401
+ ulProductionOrders = 'ulProductionOrders'
3402
+ ulInventoryTransferRequest = 'ulInventoryTransferRequest'
3403
+ ulBlanketAgreementsService = 'ulBlanketAgreementsService'
3404
+ ulProjectManagementService = 'ulProjectManagementService'
3405
+ ulReturnRequest = 'ulReturnRequest'
3406
+ ulGoodsReturnRequest = 'ulGoodsReturnRequest'
3407
+ ulSalesEmployee = 'ulSalesEmployee'
3408
+ ulLocations = 'ulLocations'
3409
+ ulStates = 'ulStates'
3410
+ ulResources = 'ulResources'
3411
+ ulUnitsofMeasure = 'ulUnitsofMeasure'
3412
+ ulPaymentTerms = 'ulPaymentTerms'
3413
+ ulPriceLists = 'ulPriceLists'
3414
+
3415
+ class UserAccessLogReasonIDTypeEnum(StrEnum):
3416
+ reasonPlanInitialSystConf = 'reasonPlanInitialSystConf'
3417
+ reasonPlanSystConfChang = 'reasonPlanSystConfChang'
3418
+ reasonPlanSystMaint = 'reasonPlanSystMaint'
3419
+ reasonPlanKnowlTrans2EndUsr = 'reasonPlanKnowlTrans2EndUsr'
3420
+ reasonUnplanRootCauseAnaly = 'reasonUnplanRootCauseAnaly'
3421
+ reasonUnplanKnowlTrans2EndUsr = 'reasonUnplanKnowlTrans2EndUsr'
3422
+ reasonUnplanSystMaint = 'reasonUnplanSystMaint'
3423
+ reasonUnplanSystConfChang = 'reasonUnplanSystConfChang'
3424
+ reasonSystMaint = 'reasonSystMaint'
3425
+ reasonRootCauseAnaly = 'reasonRootCauseAnaly'
3426
+ reasonConsultSupport = 'reasonConsultSupport'
3427
+ reasonOther = 'reasonOther'
3428
+
3429
+ class UserActionTypeEnum(StrEnum):
3430
+ actionLogin = 'actionLogin'
3431
+ actionLoginFail = 'actionLoginFail'
3432
+ actionLogoff = 'actionLogoff'
3433
+ actionCreateUser = 'actionCreateUser'
3434
+ actionRemoveUser = 'actionRemoveUser'
3435
+ actionSelectSU = 'actionSelectSU'
3436
+ actionDeselectSU = 'actionDeselectSU'
3437
+ actionLock = 'actionLock'
3438
+ actionUnlock = 'actionUnlock'
3439
+ actionChPasswd = 'actionChPasswd'
3440
+ actionUnlockFail = 'actionUnlockFail'
3441
+
3442
+ class UserGroupCategoryEnum(StrEnum):
3443
+ gc_Authorization = 'gc_Authorization'
3444
+ gc_Formsetting = 'gc_Formsetting'
3445
+ gc_Alert = 'gc_Alert'
3446
+ gc_UITmplate = 'gc_UITmplate'
3447
+ gc_All = 'gc_All'
3448
+
3449
+ class UserMenuItemTypeEnum(StrEnum):
3450
+ umitForm = 'umitForm'
3451
+ umitQuery = 'umitQuery'
3452
+ umitFolder = 'umitFolder'
3453
+ umitReport = 'umitReport'
3454
+ umitLink = 'umitLink'
3455
+
3456
+ class UserQueryTypeEnum(StrEnum):
3457
+ uqtRegular = 'uqtRegular'
3458
+ uqtWizard = 'uqtWizard'
3459
+ uqtGenerator = 'uqtGenerator'
3460
+ uqtStoredProcedure = 'uqtStoredProcedure'
3461
+
3462
+ class VMCommunicationStatusEnum(StrEnum):
3463
+ vmcs_Pending = 'vmcs_Pending'
3464
+ vmcs_Error = 'vmcs_Error'
3465
+ vmcs_Successful = 'vmcs_Successful'
3466
+ vmcs_New = 'vmcs_New'
3467
+ vmcs_Rejected = 'vmcs_Rejected'
3468
+
3469
+ class VMCommunicationTypeEnum(StrEnum):
3470
+ vmct_MasterData = 'vmct_MasterData'
3471
+ vmct_Transaction = 'vmct_Transaction'
3472
+
3473
+ class VatGroupsTaxRegionEnum(StrEnum):
3474
+ vgtrPT = 'vgtrPT'
3475
+ vgtrPT_AC = 'vgtrPT_AC'
3476
+ vgtrPT_MA = 'vgtrPT_MA'
3477
+
3478
+ class ViewStyleTypeEnum(StrEnum):
3479
+ vstPage = 'vstPage'
3480
+ vstFullScreen = 'vstFullScreen'
3481
+ vstLandscape = 'vstLandscape'
3482
+
3483
+ class WTDDetailType(StrEnum):
3484
+ Allowed = 'Allowed'
3485
+ SpecialRate = 'SpecialRate'
3486
+ Exemption = 'Exemption'
3487
+
3488
+ class WithholdingTaxCodeBaseTypeEnum(StrEnum):
3489
+ wtcbt_Gross = 'wtcbt_Gross'
3490
+ wtcbt_Net = 'wtcbt_Net'
3491
+ wtcbt_VAT = 'wtcbt_VAT'
3492
+ wtcbt_Gross_VAT = 'wtcbt_Gross_VAT'
3493
+ wtcbt_UoM = 'wtcbt_UoM'
3494
+
3495
+ class WithholdingTaxCodeCategoryEnum(StrEnum):
3496
+ wtcc_Invoice = 'wtcc_Invoice'
3497
+ wtcc_Payment = 'wtcc_Payment'
3498
+
3499
+ class WithholdingTypeEnum(StrEnum):
3500
+ wt_VatWithholding = 'wt_VatWithholding'
3501
+ wt_IncomeTaxWithholding = 'wt_IncomeTaxWithholding'