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,4587 @@
1
+ from __future__ import annotations
2
+ from enum import StrEnum
3
+
4
+ class AccountCategoryFields(StrEnum):
5
+ category_code = 'CategoryCode'
6
+ category_name = 'CategoryName'
7
+ category_source = 'CategorySource'
8
+ chart_of_accounts = 'ChartOfAccounts'
9
+
10
+ class AccountSegmentationFields(StrEnum):
11
+ numerator = 'Numerator'
12
+ name = 'Name'
13
+ size = 'Size'
14
+ type = 'Type'
15
+ account_segmentations_categories = 'AccountSegmentationsCategories'
16
+ account_segmentation_categories = 'AccountSegmentationCategories'
17
+
18
+ class AccountSegmentationCategoryFields(StrEnum):
19
+ segment_id = 'SegmentID'
20
+ code = 'Code'
21
+ name = 'Name'
22
+ short_name = 'ShortName'
23
+ account_segmentation = 'AccountSegmentation'
24
+
25
+ class AccrualTypeFields(StrEnum):
26
+ code = 'Code'
27
+ name = 'Name'
28
+ posting_account = 'PostingAccount'
29
+ calculation_account = 'CalculationAccount'
30
+ interim_account = 'InterimAccount'
31
+ chart_of_account = 'ChartOfAccount'
32
+
33
+ class AdditionalExpenseFields(StrEnum):
34
+ name = 'Name'
35
+ revenues_account = 'RevenuesAccount'
36
+ expense_account = 'ExpenseAccount'
37
+ tax_liable = 'TaxLiable'
38
+ fixed_amount_revenues = 'FixedAmountRevenues'
39
+ fixed_amount_expenses = 'FixedAmountExpenses'
40
+ output_vat_group = 'OutputVATGroup'
41
+ input_vat_group = 'InputVATGroup'
42
+ distribution_method = 'DistributionMethod'
43
+ includein1099 = 'Includein1099'
44
+ freight_offset_account = 'FreightOffsetAccount'
45
+ wt_liable = 'WTLiable'
46
+ expens_code = 'ExpensCode'
47
+ expense_exempted_account = 'ExpenseExemptedAccount'
48
+ revenues_exempted_account = 'RevenuesExemptedAccount'
49
+ distribution_rule = 'DistributionRule'
50
+ drawing_method = 'DrawingMethod'
51
+ freight_type = 'FreightType'
52
+ stock = 'Stock'
53
+ last_purchase_price = 'LastPurchasePrice'
54
+ project = 'Project'
55
+ distribution_rule2 = 'DistributionRule2'
56
+ distribution_rule3 = 'DistributionRule3'
57
+ distribution_rule4 = 'DistributionRule4'
58
+ distribution_rule5 = 'DistributionRule5'
59
+ data_version = 'DataVersion'
60
+ saft_product_type = 'SAFTProductType'
61
+ saft_product_type_ex = 'SAFTProductTypeEx'
62
+ chart_of_account = 'ChartOfAccount'
63
+ vat_group = 'VatGroup'
64
+ distribution_rule6 = 'DistributionRule6'
65
+ project2 = 'Project2'
66
+
67
+ class AlertManagementFields(StrEnum):
68
+ code = 'Code'
69
+ name = 'Name'
70
+ type = 'Type'
71
+ priority = 'Priority'
72
+ active = 'Active'
73
+ param = 'Param'
74
+ query_id = 'QueryID'
75
+ frequency_type = 'FrequencyType'
76
+ day_of_execution = 'DayOfExecution'
77
+ execution_time = 'ExecutionTime'
78
+ last_execution_date = 'LastExecutionDate'
79
+ last_execution_time = 'LastExecutionTime'
80
+ next_execution_date = 'NextExecutionDate'
81
+ next_execution_time = 'NextExecutionTime'
82
+ save_history = 'SaveHistory'
83
+ frequency_interval = 'FrequencyInterval'
84
+ alert_management_recipients = 'AlertManagementRecipients'
85
+ alert_management_documents = 'AlertManagementDocuments'
86
+
87
+ class AlternateCatNumFields(StrEnum):
88
+ item_code = 'ItemCode'
89
+ card_code = 'CardCode'
90
+ substitute = 'Substitute'
91
+ display_bp_catalog_number = 'DisplayBPCatalogNumber'
92
+ is_default = 'IsDefault'
93
+ description = 'Description'
94
+ item = 'Item'
95
+ business_partner = 'BusinessPartner'
96
+
97
+ class ApprovalRequestFields(StrEnum):
98
+ code = 'Code'
99
+ approval_templates_id = 'ApprovalTemplatesID'
100
+ object_type = 'ObjectType'
101
+ is_draft = 'IsDraft'
102
+ object_entry = 'ObjectEntry'
103
+ status = 'Status'
104
+ remarks = 'Remarks'
105
+ current_stage = 'CurrentStage'
106
+ originator_id = 'OriginatorID'
107
+ creation_date = 'CreationDate'
108
+ creation_time = 'CreationTime'
109
+ draft_entry = 'DraftEntry'
110
+ draft_type = 'DraftType'
111
+ approval_request_lines = 'ApprovalRequestLines'
112
+ approval_request_decisions = 'ApprovalRequestDecisions'
113
+ approval_template = 'ApprovalTemplate'
114
+ approval_stage = 'ApprovalStage'
115
+ user = 'User'
116
+
117
+ class ApprovalStageFields(StrEnum):
118
+ code = 'Code'
119
+ name = 'Name'
120
+ no_of_approvers_required = 'NoOfApproversRequired'
121
+ remarks = 'Remarks'
122
+ approval_stage_approvers = 'ApprovalStageApprovers'
123
+ approval_requests = 'ApprovalRequests'
124
+
125
+ class ApprovalTemplateFields(StrEnum):
126
+ code = 'Code'
127
+ name = 'Name'
128
+ remarks = 'Remarks'
129
+ use_terms = 'UseTerms'
130
+ is_active = 'IsActive'
131
+ is_active_when_updating_documents = 'IsActiveWhenUpdatingDocuments'
132
+ approval_template_users = 'ApprovalTemplateUsers'
133
+ approval_template_stages = 'ApprovalTemplateStages'
134
+ approval_template_documents = 'ApprovalTemplateDocuments'
135
+ approval_template_terms = 'ApprovalTemplateTerms'
136
+ approval_template_queries = 'ApprovalTemplateQueries'
137
+ approval_requests = 'ApprovalRequests'
138
+
139
+ class AssetDepreciationGroupFields(StrEnum):
140
+ code = 'Code'
141
+ description = 'Description'
142
+ group = 'Group'
143
+ items = 'Items'
144
+
145
+ class AssetDocumentFields(StrEnum):
146
+ doc_entry = 'DocEntry'
147
+ doc_num = 'DocNum'
148
+ series = 'Series'
149
+ posting_date = 'PostingDate'
150
+ document_date = 'DocumentDate'
151
+ status = 'Status'
152
+ remarks = 'Remarks'
153
+ reference = 'Reference'
154
+ currency = 'Currency'
155
+ document_rate = 'DocumentRate'
156
+ document_total = 'DocumentTotal'
157
+ document_total_fc = 'DocumentTotalFC'
158
+ document_total_sc = 'DocumentTotalSC'
159
+ asset_value_date = 'AssetValueDate'
160
+ document_type = 'DocumentType'
161
+ summerize_by_projects = 'SummerizeByProjects'
162
+ summerize_by_distribution_rules = 'SummerizeByDistributionRules'
163
+ manual_depreciation_type = 'ManualDepreciationType'
164
+ hand_written = 'HandWritten'
165
+ cancellation_date = 'CancellationDate'
166
+ depreciation_area = 'DepreciationArea'
167
+ bpl_id = 'BPLId'
168
+ origin = 'Origin'
169
+ low_value_asset_retirement = 'LowValueAssetRetirement'
170
+ cancellation_option = 'CancellationOption'
171
+ original_type = 'OriginalType'
172
+ base_reference = 'BaseReference'
173
+ bpl_name = 'BPLName'
174
+ vat_reg_num = 'VATRegNum'
175
+ asset_document_line_collection = 'AssetDocumentLineCollection'
176
+ asset_document_area_journal_collection = 'AssetDocumentAreaJournalCollection'
177
+ pti_code = 'PTICode'
178
+ letter = 'Letter'
179
+ fol_num_from = 'FolNumFrom'
180
+ fol_num_to = 'FolNumTo'
181
+ asset_document_new_loc_collection = 'AssetDocumentNewLocCollection'
182
+ currency2 = 'Currency2'
183
+ depreciation_type = 'DepreciationType'
184
+ depreciation_area2 = 'DepreciationArea2'
185
+ business_place = 'BusinessPlace'
186
+
187
+ class AssetGroupFields(StrEnum):
188
+ code = 'Code'
189
+ description = 'Description'
190
+ items = 'Items'
191
+
192
+ class AssetRevaluationFields(StrEnum):
193
+ doc_entry = 'DocEntry'
194
+ doc_num = 'DocNum'
195
+ series = 'Series'
196
+ posting_date = 'PostingDate'
197
+ asset_value_date = 'AssetValueDate'
198
+ reference = 'Reference'
199
+ remarks = 'Remarks'
200
+ journal_remarks = 'JournalRemarks'
201
+ depreciation_area = 'DepreciationArea'
202
+ trans_id = 'TransId'
203
+ hand_written = 'HandWritten'
204
+ period_indicator = 'PeriodIndicator'
205
+ document_date = 'DocumentDate'
206
+ bpl_id = 'BPLId'
207
+ bpl_name = 'BPLName'
208
+ vat_reg_num = 'VATRegNum'
209
+ revaluation_percent = 'RevaluationPercent'
210
+ ifrs_posting = 'IfrsPosting'
211
+ summerize_by_projects = 'SummerizeByProjects'
212
+ summerize_by_distribution_rules = 'SummerizeByDistributionRules'
213
+ asset_revaluation_line_collection = 'AssetRevaluationLineCollection'
214
+ depreciation_area2 = 'DepreciationArea2'
215
+ journal_entry = 'JournalEntry'
216
+ business_place = 'BusinessPlace'
217
+
218
+ class Attachments2Fields(StrEnum):
219
+ absolute_entry = 'AbsoluteEntry'
220
+ attachments2_lines = 'Attachments2_Lines'
221
+ product_trees = 'ProductTrees'
222
+ checksfor_payment = 'ChecksforPayment'
223
+ vendor_payments = 'VendorPayments'
224
+ customer_equipment_cards = 'CustomerEquipmentCards'
225
+ journal_entries = 'JournalEntries'
226
+ inventory_counting_drafts = 'InventoryCountingDrafts'
227
+ service_contracts = 'ServiceContracts'
228
+ inventory_countings = 'InventoryCountings'
229
+ inventory_opening_balances = 'InventoryOpeningBalances'
230
+ inventory_postings = 'InventoryPostings'
231
+ blanket_agreements = 'BlanketAgreements'
232
+ campaigns = 'Campaigns'
233
+ payment_drafts = 'PaymentDrafts'
234
+ production_orders = 'ProductionOrders'
235
+ project_management_time_sheet = 'ProjectManagementTimeSheet'
236
+ project_managements = 'ProjectManagements'
237
+ incoming_payments = 'IncomingPayments'
238
+ deposits = 'Deposits'
239
+
240
+ class AttributeGroupFields(StrEnum):
241
+ code = 'Code'
242
+ name = 'Name'
243
+ locked = 'Locked'
244
+ attribute_group_collection = 'AttributeGroupCollection'
245
+ asset_classes = 'AssetClasses'
246
+
247
+ class B1SessionFields(StrEnum):
248
+ version = 'Version'
249
+ session_timeout = 'SessionTimeout'
250
+ session_id = 'SessionId'
251
+
252
+ class BOEDocumentTypeFields(StrEnum):
253
+ doc_entry = 'DocEntry'
254
+ doc_type = 'DocType'
255
+ doc_description = 'DocDescription'
256
+
257
+ class BOEInstructionFields(StrEnum):
258
+ instruction_entry = 'InstructionEntry'
259
+ instruction_code = 'InstructionCode'
260
+ instruction_desc = 'InstructionDesc'
261
+ is_cancel_instruction = 'IsCancelInstruction'
262
+
263
+ class BOEPortfolioFields(StrEnum):
264
+ portfolio_entry = 'PortfolioEntry'
265
+ portfolio_id = 'PortfolioID'
266
+ portfolio_code = 'PortfolioCode'
267
+ portfolio_num = 'PortfolioNum'
268
+ portfolio_description = 'PortfolioDescription'
269
+
270
+ class BPFiscalRegistryIDFields(StrEnum):
271
+ numerator = 'Numerator'
272
+ cnae_code = 'CNAECode'
273
+ description = 'Description'
274
+ business_places = 'BusinessPlaces'
275
+
276
+ class BPPriorityFields(StrEnum):
277
+ priority = 'Priority'
278
+ priority_description = 'PriorityDescription'
279
+ business_partners = 'BusinessPartners'
280
+
281
+ class BPVatExemptionsFields(StrEnum):
282
+ absolute_entry = 'AbsoluteEntry'
283
+ bp_code = 'BPCode'
284
+ remarks = 'Remarks'
285
+ bp_vat_exemptions_lines = 'BPVatExemptionsLines'
286
+ business_partner = 'BusinessPartner'
287
+
288
+ class BankFields(StrEnum):
289
+ bank_code = 'BankCode'
290
+ bank_name = 'BankName'
291
+ accountfor_outgoing_checks = 'AccountforOutgoingChecks'
292
+ branchfor_outgoing_checks = 'BranchforOutgoingChecks'
293
+ next_check_number = 'NextCheckNumber'
294
+ swift_no = 'SwiftNo'
295
+ iban = 'IBAN'
296
+ country_code = 'CountryCode'
297
+ post_office = 'PostOffice'
298
+ absolute_entry = 'AbsoluteEntry'
299
+ default_bank_account_key = 'DefaultBankAccountKey'
300
+ digital_payments = 'DigitalPayments'
301
+ employees_info = 'EmployeesInfo'
302
+ country = 'Country'
303
+ house_bank_accounts = 'HouseBankAccounts'
304
+
305
+ class BankChargesAllocationCodeFields(StrEnum):
306
+ code = 'Code'
307
+ description = 'Description'
308
+ payment_run_export = 'PaymentRunExport'
309
+ business_partners = 'BusinessPartners'
310
+
311
+ class BankPageFields(StrEnum):
312
+ account_code = 'AccountCode'
313
+ sequence = 'Sequence'
314
+ account_name = 'AccountName'
315
+ reference = 'Reference'
316
+ due_date = 'DueDate'
317
+ memo = 'Memo'
318
+ debit_amount = 'DebitAmount'
319
+ credit_amount = 'CreditAmount'
320
+ bank_match = 'BankMatch'
321
+ data_source = 'DataSource'
322
+ user_signature = 'UserSignature'
323
+ external_code = 'ExternalCode'
324
+ card_code = 'CardCode'
325
+ card_name = 'CardName'
326
+ statement_number = 'StatementNumber'
327
+ invoice_number = 'InvoiceNumber'
328
+ payment_created = 'PaymentCreated'
329
+ visual_order = 'VisualOrder'
330
+ doc_number_type = 'DocNumberType'
331
+ payment_reference = 'PaymentReference'
332
+ invoice_number_ex = 'InvoiceNumberEx'
333
+ bic_swift_code = 'BICSwiftCode'
334
+ chart_of_account = 'ChartOfAccount'
335
+ user = 'User'
336
+ business_partner = 'BusinessPartner'
337
+
338
+ class BankStatementFields(StrEnum):
339
+ internal_number = 'InternalNumber'
340
+ bank_account_key = 'BankAccountKey'
341
+ statement_number = 'StatementNumber'
342
+ statement_date = 'StatementDate'
343
+ status = 'Status'
344
+ imported = 'Imported'
345
+ starting_balance_f = 'StartingBalanceF'
346
+ ending_balance_f = 'EndingBalanceF'
347
+ currency = 'Currency'
348
+ starting_balance_l = 'StartingBalanceL'
349
+ ending_balance_l = 'EndingBalanceL'
350
+ bank_statement_file_hash = 'BankStatementFileHash'
351
+ bank_statement_guid = 'BankStatementGUID'
352
+ bank_statement_rows = 'BankStatementRows'
353
+ house_bank_account = 'HouseBankAccount'
354
+ currency2 = 'Currency2'
355
+
356
+ class BarCodeFields(StrEnum):
357
+ abs_entry = 'AbsEntry'
358
+ item_no = 'ItemNo'
359
+ uo_m_entry = 'UoMEntry'
360
+ barcode = 'Barcode'
361
+ free_text = 'FreeText'
362
+ item = 'Item'
363
+ unit_of_measurement = 'UnitOfMeasurement'
364
+
365
+ class BatchNumberDetailFields(StrEnum):
366
+ doc_entry = 'DocEntry'
367
+ item_code = 'ItemCode'
368
+ item_description = 'ItemDescription'
369
+ status = 'Status'
370
+ batch = 'Batch'
371
+ batch_attribute1 = 'BatchAttribute1'
372
+ batch_attribute2 = 'BatchAttribute2'
373
+ admission_date = 'AdmissionDate'
374
+ manufacturing_date = 'ManufacturingDate'
375
+ expiration_date = 'ExpirationDate'
376
+ details = 'Details'
377
+ system_number = 'SystemNumber'
378
+ item = 'Item'
379
+
380
+ class BillOfExchangeTransactionFields(StrEnum):
381
+ status_from = 'StatusFrom'
382
+ status_to = 'StatusTo'
383
+ transaction_date = 'TransactionDate'
384
+ transaction_time = 'TransactionTime'
385
+ is_boe_reconciled = 'IsBoeReconciled'
386
+ transaction_number = 'TransactionNumber'
387
+ posting_date = 'PostingDate'
388
+ tax_date = 'TaxDate'
389
+ boe_transactionkey = 'BOETransactionkey'
390
+ bill_of_exchange_transaction_lines = 'BillOfExchangeTransactionLines'
391
+ bill_of_exchange_trans_deposits = 'BillOfExchangeTransDeposits'
392
+ bill_of_exchange_trans_bank_pages = 'BillOfExchangeTransBankPages'
393
+ journal_entry = 'JournalEntry'
394
+
395
+ class BinLocationFields(StrEnum):
396
+ abs_entry = 'AbsEntry'
397
+ warehouse = 'Warehouse'
398
+ sublevel1 = 'Sublevel1'
399
+ sublevel2 = 'Sublevel2'
400
+ sublevel3 = 'Sublevel3'
401
+ sublevel4 = 'Sublevel4'
402
+ bin_code = 'BinCode'
403
+ inactive = 'Inactive'
404
+ description = 'Description'
405
+ alternative_sort_code = 'AlternativeSortCode'
406
+ bar_code = 'BarCode'
407
+ attribute1 = 'Attribute1'
408
+ attribute2 = 'Attribute2'
409
+ attribute3 = 'Attribute3'
410
+ attribute4 = 'Attribute4'
411
+ attribute5 = 'Attribute5'
412
+ attribute6 = 'Attribute6'
413
+ attribute7 = 'Attribute7'
414
+ attribute8 = 'Attribute8'
415
+ attribute9 = 'Attribute9'
416
+ attribute10 = 'Attribute10'
417
+ restricted_item_type = 'RestrictedItemType'
418
+ specific_item = 'SpecificItem'
419
+ specific_item_group = 'SpecificItemGroup'
420
+ batch_restrictions = 'BatchRestrictions'
421
+ restricted_trans_type = 'RestrictedTransType'
422
+ restriction_reason = 'RestrictionReason'
423
+ date_restriction_changed = 'DateRestrictionChanged'
424
+ minimum_qty = 'MinimumQty'
425
+ maximum_qty = 'MaximumQty'
426
+ is_system_bin = 'IsSystemBin'
427
+ receiving_bin_location = 'ReceivingBinLocation'
428
+ exclude_auto_alloc_on_issue = 'ExcludeAutoAllocOnIssue'
429
+ maximum_weight = 'MaximumWeight'
430
+ maximum_weight1 = 'MaximumWeight1'
431
+ maximum_weight_unit = 'MaximumWeightUnit'
432
+ maximum_weight_unit1 = 'MaximumWeightUnit1'
433
+ restricted_uo_m_type = 'RestrictedUoMType'
434
+ specific_uo_m = 'SpecificUoM'
435
+ specific_uo_m_group = 'SpecificUoMGroup'
436
+ warehouses = 'Warehouses'
437
+ warehouse2 = 'Warehouse2'
438
+ item = 'Item'
439
+ item_groups = 'ItemGroups'
440
+ weight_measure = 'WeightMeasure'
441
+ unit_of_measurement = 'UnitOfMeasurement'
442
+ unit_of_measurement_group = 'UnitOfMeasurementGroup'
443
+
444
+ class BinLocationAttributeFields(StrEnum):
445
+ attribute = 'Attribute'
446
+ code = 'Code'
447
+ abs_entry = 'AbsEntry'
448
+ bin_location_field = 'BinLocationField'
449
+
450
+ class BinLocationFieldFields(StrEnum):
451
+ abs_entry = 'AbsEntry'
452
+ field_type = 'FieldType'
453
+ field_number = 'FieldNumber'
454
+ name = 'Name'
455
+ activated = 'Activated'
456
+ default_field_name = 'DefaultFieldName'
457
+ warehouse_sublevel_codes = 'WarehouseSublevelCodes'
458
+ bin_location_attributes = 'BinLocationAttributes'
459
+
460
+ class BranchFields(StrEnum):
461
+ code = 'Code'
462
+ name = 'Name'
463
+ description = 'Description'
464
+ purchase_quotations = 'PurchaseQuotations'
465
+ correction_invoice_reversal = 'CorrectionInvoiceReversal'
466
+ correction_invoice = 'CorrectionInvoice'
467
+ purchase_delivery_notes = 'PurchaseDeliveryNotes'
468
+ correction_purchase_invoice = 'CorrectionPurchaseInvoice'
469
+ inventory_gen_entries = 'InventoryGenEntries'
470
+ employees_info = 'EmployeesInfo'
471
+ orders = 'Orders'
472
+ inventory_gen_exits = 'InventoryGenExits'
473
+ drafts = 'Drafts'
474
+ return_request = 'ReturnRequest'
475
+ delivery_notes = 'DeliveryNotes'
476
+ users = 'Users'
477
+ purchase_invoices = 'PurchaseInvoices'
478
+ self_invoices = 'SelfInvoices'
479
+ invoices = 'Invoices'
480
+ credit_notes = 'CreditNotes'
481
+ purchase_credit_notes = 'PurchaseCreditNotes'
482
+ down_payments = 'DownPayments'
483
+ purchase_down_payments = 'PurchaseDownPayments'
484
+ purchase_returns = 'PurchaseReturns'
485
+ purchase_orders = 'PurchaseOrders'
486
+ self_credit_memos = 'SelfCreditMemos'
487
+ quotations = 'Quotations'
488
+ returns = 'Returns'
489
+ goods_return_request = 'GoodsReturnRequest'
490
+ correction_purchase_invoice_reversal = 'CorrectionPurchaseInvoiceReversal'
491
+ purchase_requests = 'PurchaseRequests'
492
+
493
+ class BrazilBeverageIndexerFields(StrEnum):
494
+ beverage_group_code = 'BeverageGroupCode'
495
+ beverage_table_code = 'BeverageTableCode'
496
+ beverage_commercial_brand_code = 'BeverageCommercialBrandCode'
497
+ beverage_id = 'BeverageID'
498
+ brazil_string_indexer = 'BrazilStringIndexer'
499
+ brazil_numeric_indexer = 'BrazilNumericIndexer'
500
+
501
+ class BrazilFuelIndexerFields(StrEnum):
502
+ fuel_id = 'FuelID'
503
+ fuel_group_code = 'FuelGroupCode'
504
+ fuel_code = 'FuelCode'
505
+ description = 'Description'
506
+ items = 'Items'
507
+
508
+ class BrazilMultiIndexerFields(StrEnum):
509
+ id = 'ID'
510
+ indexer_type = 'IndexerType'
511
+ code = 'Code'
512
+ description = 'Description'
513
+ first_ref_indexer_code = 'FirstRefIndexerCode'
514
+ second_ref_indexer_code = 'SecondRefIndexerCode'
515
+ third_ref_indexer_code = 'ThirdRefIndexerCode'
516
+
517
+ class BrazilNumericIndexerFields(StrEnum):
518
+ indexer_type = 'IndexerType'
519
+ code = 'Code'
520
+ description = 'Description'
521
+ id = 'ID'
522
+ brazil_beverage_indexers = 'BrazilBeverageIndexers'
523
+ items = 'Items'
524
+ business_places = 'BusinessPlaces'
525
+
526
+ class BrazilStringIndexerFields(StrEnum):
527
+ indexer_type = 'IndexerType'
528
+ code = 'Code'
529
+ description = 'Description'
530
+ id = 'ID'
531
+ brazil_beverage_indexers = 'BrazilBeverageIndexers'
532
+ withholding_tax_codes = 'WithholdingTaxCodes'
533
+ items = 'Items'
534
+ business_places = 'BusinessPlaces'
535
+
536
+ class BudgetFields(StrEnum):
537
+ future_annual_expenses_credit_sys = 'FutureAnnualExpensesCreditSys'
538
+ future_annual_expenses_credit_loc = 'FutureAnnualExpensesCreditLoc'
539
+ future_annual_expenses_debit_sys = 'FutureAnnualExpensesDebitSys'
540
+ future_annual_expenses_debit_loc = 'FutureAnnualExpensesDebitLoc'
541
+ future_annual_revenues_credit = 'FutureAnnualRevenuesCredit'
542
+ future_annual_revenues_debit = 'FutureAnnualRevenuesDebit'
543
+ future_revenues_debit_sys = 'FutureRevenuesDebitSys'
544
+ future_revenues_debit_loc = 'FutureRevenuesDebitLoc'
545
+ parent_acc_percent = 'ParentAccPercent'
546
+ startof_fiscal_year = 'StartofFiscalYear'
547
+ parent_account_key = 'ParentAccountKey'
548
+ total_annual_budget_debit_sys = 'TotalAnnualBudgetDebitSys'
549
+ budget_balance_debit_sys = 'BudgetBalanceDebitSys'
550
+ budget_balance_debit_loc = 'BudgetBalanceDebitLoc'
551
+ total_annual_budget_debit_loc = 'TotalAnnualBudgetDebitLoc'
552
+ total_annual_budget_credit_sys = 'TotalAnnualBudgetCreditSys'
553
+ total_annual_budget_credit_loc = 'TotalAnnualBudgetCreditLoc'
554
+ budget_balance_credit_sys = 'BudgetBalanceCreditSys'
555
+ budget_balance_credit_loc = 'BudgetBalanceCreditLoc'
556
+ division_code = 'DivisionCode'
557
+ account_code = 'AccountCode'
558
+ numerator = 'Numerator'
559
+ budget_scenario = 'BudgetScenario'
560
+ budget_lines = 'BudgetLines'
561
+ budget_cost_accounting_lines = 'BudgetCostAccountingLines'
562
+ budget_distribution = 'BudgetDistribution'
563
+ budget_scenario2 = 'BudgetScenario2'
564
+
565
+ class BudgetDistributionFields(StrEnum):
566
+ september = 'September'
567
+ august = 'August'
568
+ july = 'July'
569
+ june = 'June'
570
+ may = 'May'
571
+ april = 'April'
572
+ march = 'March'
573
+ february = 'February'
574
+ december = 'December'
575
+ november = 'November'
576
+ october = 'October'
577
+ january = 'January'
578
+ budget_amount = 'BudgetAmount'
579
+ description = 'Description'
580
+ division_code = 'DivisionCode'
581
+ budgets = 'Budgets'
582
+
583
+ class BudgetScenarioFields(StrEnum):
584
+ name = 'Name'
585
+ initial_ratio_percentage = 'InitialRatioPercentage'
586
+ startof_fiscal_year = 'StartofFiscalYear'
587
+ basic_budget = 'BasicBudget'
588
+ numerator = 'Numerator'
589
+ rounding_method = 'RoundingMethod'
590
+ project = 'Project'
591
+ distribution_rule = 'DistributionRule'
592
+ distribution_rule2 = 'DistributionRule2'
593
+ distribution_rule3 = 'DistributionRule3'
594
+ distribution_rule4 = 'DistributionRule4'
595
+ distribution_rule5 = 'DistributionRule5'
596
+ budgets = 'Budgets'
597
+ project2 = 'Project2'
598
+ distribution_rule6 = 'DistributionRule6'
599
+
600
+ class BusinessPlaceFields(StrEnum):
601
+ bplid = 'BPLID'
602
+ bpl_name = 'BPLName'
603
+ bpl_name_foreign = 'BPLNameForeign'
604
+ vat_reg_num = 'VATRegNum'
605
+ rep_name = 'RepName'
606
+ industry = 'Industry'
607
+ business = 'Business'
608
+ address = 'Address'
609
+ addressforeign = 'Addressforeign'
610
+ main_bpl = 'MainBPL'
611
+ tax_office_no = 'TaxOfficeNo'
612
+ disabled = 'Disabled'
613
+ default_customer_id = 'DefaultCustomerID'
614
+ default_vendor_id = 'DefaultVendorID'
615
+ default_warehouse_id = 'DefaultWarehouseID'
616
+ default_tax_code = 'DefaultTaxCode'
617
+ tax_office = 'TaxOffice'
618
+ federal_tax_id = 'FederalTaxID'
619
+ federal_tax_id2 = 'FederalTaxID2'
620
+ federal_tax_id3 = 'FederalTaxID3'
621
+ additional_id_number = 'AdditionalIdNumber'
622
+ nature_of_company_code = 'NatureOfCompanyCode'
623
+ economic_activity_type_code = 'EconomicActivityTypeCode'
624
+ credit_contribution_origin_code = 'CreditContributionOriginCode'
625
+ ipi_period_code = 'IPIPeriodCode'
626
+ cooperative_association_type_code = 'CooperativeAssociationTypeCode'
627
+ profit_taxation_code = 'ProfitTaxationCode'
628
+ company_qualification_code = 'CompanyQualificationCode'
629
+ declarer_type_code = 'DeclarerTypeCode'
630
+ preferred_state_code = 'PreferredStateCode'
631
+ address_type = 'AddressType'
632
+ street = 'Street'
633
+ street_no = 'StreetNo'
634
+ building = 'Building'
635
+ zip_code = 'ZipCode'
636
+ block = 'Block'
637
+ city = 'City'
638
+ state = 'State'
639
+ county = 'County'
640
+ country = 'Country'
641
+ alias_name = 'AliasName'
642
+ commercial_register = 'CommercialRegister'
643
+ date_of_incorporation = 'DateOfIncorporation'
644
+ sped_profile = 'SPEDProfile'
645
+ environment_type = 'EnvironmentType'
646
+ opting4_icms = 'Opting4ICMS'
647
+ payment_clearing_account = 'PaymentClearingAccount'
648
+ global_location_number = 'GlobalLocationNumber'
649
+ default_resource_warehouse_id = 'DefaultResourceWarehouseID'
650
+ business_place_ie_numbers = 'BusinessPlaceIENumbers'
651
+ business_place_tributary_infos = 'BusinessPlaceTributaryInfos'
652
+ user_default_groups = 'UserDefaultGroups'
653
+ stock_transfers = 'StockTransfers'
654
+ purchase_quotations = 'PurchaseQuotations'
655
+ vendor_payments = 'VendorPayments'
656
+ correction_invoice_reversal = 'CorrectionInvoiceReversal'
657
+ correction_invoice = 'CorrectionInvoice'
658
+ purchase_delivery_notes = 'PurchaseDeliveryNotes'
659
+ correction_purchase_invoice = 'CorrectionPurchaseInvoice'
660
+ inventory_counting_drafts = 'InventoryCountingDrafts'
661
+ inventory_gen_entries = 'InventoryGenEntries'
662
+ asset_retirement = 'AssetRetirement'
663
+ asset_transfer = 'AssetTransfer'
664
+ asset_revaluations = 'AssetRevaluations'
665
+ employees_info = 'EmployeesInfo'
666
+ asset_manual_depreciation = 'AssetManualDepreciation'
667
+ asset_classes = 'AssetClasses'
668
+ orders = 'Orders'
669
+ asset_capitalization = 'AssetCapitalization'
670
+ inventory_gen_exits = 'InventoryGenExits'
671
+ drafts = 'Drafts'
672
+ inventory_transfer_requests = 'InventoryTransferRequests'
673
+ inventory_countings = 'InventoryCountings'
674
+ inventory_opening_balances = 'InventoryOpeningBalances'
675
+ inventory_postings = 'InventoryPostings'
676
+ return_request = 'ReturnRequest'
677
+ delivery_notes = 'DeliveryNotes'
678
+ purchase_invoices = 'PurchaseInvoices'
679
+ stock_transfer_drafts = 'StockTransferDrafts'
680
+ self_invoices = 'SelfInvoices'
681
+ invoices = 'Invoices'
682
+ credit_notes = 'CreditNotes'
683
+ asset_capitalization_credit_memo = 'AssetCapitalizationCreditMemo'
684
+ payment_drafts = 'PaymentDrafts'
685
+ purchase_credit_notes = 'PurchaseCreditNotes'
686
+ down_payments = 'DownPayments'
687
+ purchase_down_payments = 'PurchaseDownPayments'
688
+ purchase_returns = 'PurchaseReturns'
689
+ purchase_orders = 'PurchaseOrders'
690
+ self_credit_memos = 'SelfCreditMemos'
691
+ quotations = 'Quotations'
692
+ returns = 'Returns'
693
+ goods_return_request = 'GoodsReturnRequest'
694
+ correction_purchase_invoice_reversal = 'CorrectionPurchaseInvoiceReversal'
695
+ incoming_payments = 'IncomingPayments'
696
+ deposits = 'Deposits'
697
+ purchase_requests = 'PurchaseRequests'
698
+ business_partner = 'BusinessPartner'
699
+ warehouse = 'Warehouse'
700
+ bp_fiscal_registry_id = 'BPFiscalRegistryID'
701
+ brazil_numeric_indexer = 'BrazilNumericIndexer'
702
+ brazil_string_indexer = 'BrazilStringIndexer'
703
+ county2 = 'County2'
704
+ country2 = 'Country2'
705
+ chart_of_account = 'ChartOfAccount'
706
+
707
+ class CIGCodeFields(StrEnum):
708
+ abs_entry = 'AbsEntry'
709
+ code = 'Code'
710
+ purchase_quotations = 'PurchaseQuotations'
711
+ vendor_payments = 'VendorPayments'
712
+ correction_invoice_reversal = 'CorrectionInvoiceReversal'
713
+ correction_invoice = 'CorrectionInvoice'
714
+ purchase_delivery_notes = 'PurchaseDeliveryNotes'
715
+ correction_purchase_invoice = 'CorrectionPurchaseInvoice'
716
+ journal_entries = 'JournalEntries'
717
+ inventory_gen_entries = 'InventoryGenEntries'
718
+ orders = 'Orders'
719
+ inventory_gen_exits = 'InventoryGenExits'
720
+ drafts = 'Drafts'
721
+ return_request = 'ReturnRequest'
722
+ delivery_notes = 'DeliveryNotes'
723
+ purchase_invoices = 'PurchaseInvoices'
724
+ self_invoices = 'SelfInvoices'
725
+ invoices = 'Invoices'
726
+ credit_notes = 'CreditNotes'
727
+ payment_drafts = 'PaymentDrafts'
728
+ purchase_credit_notes = 'PurchaseCreditNotes'
729
+ down_payments = 'DownPayments'
730
+ purchase_down_payments = 'PurchaseDownPayments'
731
+ purchase_returns = 'PurchaseReturns'
732
+ purchase_orders = 'PurchaseOrders'
733
+ self_credit_memos = 'SelfCreditMemos'
734
+ quotations = 'Quotations'
735
+ returns = 'Returns'
736
+ goods_return_request = 'GoodsReturnRequest'
737
+ correction_purchase_invoice_reversal = 'CorrectionPurchaseInvoiceReversal'
738
+ incoming_payments = 'IncomingPayments'
739
+ purchase_requests = 'PurchaseRequests'
740
+
741
+ class CUPCodeFields(StrEnum):
742
+ abs_entry = 'AbsEntry'
743
+ code = 'Code'
744
+ purchase_quotations = 'PurchaseQuotations'
745
+ vendor_payments = 'VendorPayments'
746
+ correction_invoice_reversal = 'CorrectionInvoiceReversal'
747
+ correction_invoice = 'CorrectionInvoice'
748
+ purchase_delivery_notes = 'PurchaseDeliveryNotes'
749
+ correction_purchase_invoice = 'CorrectionPurchaseInvoice'
750
+ journal_entries = 'JournalEntries'
751
+ inventory_gen_entries = 'InventoryGenEntries'
752
+ orders = 'Orders'
753
+ inventory_gen_exits = 'InventoryGenExits'
754
+ drafts = 'Drafts'
755
+ return_request = 'ReturnRequest'
756
+ delivery_notes = 'DeliveryNotes'
757
+ purchase_invoices = 'PurchaseInvoices'
758
+ self_invoices = 'SelfInvoices'
759
+ invoices = 'Invoices'
760
+ credit_notes = 'CreditNotes'
761
+ payment_drafts = 'PaymentDrafts'
762
+ purchase_credit_notes = 'PurchaseCreditNotes'
763
+ down_payments = 'DownPayments'
764
+ purchase_down_payments = 'PurchaseDownPayments'
765
+ purchase_returns = 'PurchaseReturns'
766
+ purchase_orders = 'PurchaseOrders'
767
+ self_credit_memos = 'SelfCreditMemos'
768
+ quotations = 'Quotations'
769
+ returns = 'Returns'
770
+ goods_return_request = 'GoodsReturnRequest'
771
+ correction_purchase_invoice_reversal = 'CorrectionPurchaseInvoiceReversal'
772
+ incoming_payments = 'IncomingPayments'
773
+ purchase_requests = 'PurchaseRequests'
774
+
775
+ class CampaignFields(StrEnum):
776
+ campaign_number = 'CampaignNumber'
777
+ campaign_name = 'CampaignName'
778
+ campaign_type = 'CampaignType'
779
+ target_group = 'TargetGroup'
780
+ owner = 'Owner'
781
+ status = 'Status'
782
+ start_date = 'StartDate'
783
+ finish_date = 'FinishDate'
784
+ remarks = 'Remarks'
785
+ generated_by_wizard = 'GeneratedByWizard'
786
+ attachements_entry = 'AttachementsEntry'
787
+ target_group_type = 'TargetGroupType'
788
+ campaign_business_partners = 'CampaignBusinessPartners'
789
+ campaign_items = 'CampaignItems'
790
+ campaign_partners = 'CampaignPartners'
791
+ target_group2 = 'TargetGroup2'
792
+ employee_info = 'EmployeeInfo'
793
+ attachments2 = 'Attachments2'
794
+ business_partners = 'BusinessPartners'
795
+
796
+ class CampaignResponseTypeFields(StrEnum):
797
+ response_type_description = 'ResponseTypeDescription'
798
+ response_type = 'ResponseType'
799
+ is_active = 'IsActive'
800
+
801
+ class CashDiscountFields(StrEnum):
802
+ code = 'Code'
803
+ name = 'Name'
804
+ by_date = 'ByDate'
805
+ freight = 'Freight'
806
+ tax = 'Tax'
807
+ discount_lines = 'DiscountLines'
808
+ payment_terms_types = 'PaymentTermsTypes'
809
+
810
+ class CashFlowLineItemFields(StrEnum):
811
+ line_item_id = 'LineItemID'
812
+ line_item_name = 'LineItemName'
813
+ active_line_item = 'ActiveLineItem'
814
+ parent_article = 'ParentArticle'
815
+ level = 'Level'
816
+ drawer = 'Drawer'
817
+
818
+ class CentralBankIndicatorFields(StrEnum):
819
+ indicator = 'Indicator'
820
+ description = 'Description'
821
+ purchase_quotations = 'PurchaseQuotations'
822
+ correction_invoice_reversal = 'CorrectionInvoiceReversal'
823
+ correction_invoice = 'CorrectionInvoice'
824
+ purchase_delivery_notes = 'PurchaseDeliveryNotes'
825
+ correction_purchase_invoice = 'CorrectionPurchaseInvoice'
826
+ inventory_gen_entries = 'InventoryGenEntries'
827
+ orders = 'Orders'
828
+ inventory_gen_exits = 'InventoryGenExits'
829
+ drafts = 'Drafts'
830
+ return_request = 'ReturnRequest'
831
+ delivery_notes = 'DeliveryNotes'
832
+ purchase_invoices = 'PurchaseInvoices'
833
+ self_invoices = 'SelfInvoices'
834
+ invoices = 'Invoices'
835
+ credit_notes = 'CreditNotes'
836
+ purchase_credit_notes = 'PurchaseCreditNotes'
837
+ down_payments = 'DownPayments'
838
+ purchase_down_payments = 'PurchaseDownPayments'
839
+ purchase_returns = 'PurchaseReturns'
840
+ purchase_orders = 'PurchaseOrders'
841
+ self_credit_memos = 'SelfCreditMemos'
842
+ quotations = 'Quotations'
843
+ returns = 'Returns'
844
+ goods_return_request = 'GoodsReturnRequest'
845
+ correction_purchase_invoice_reversal = 'CorrectionPurchaseInvoiceReversal'
846
+ purchase_requests = 'PurchaseRequests'
847
+
848
+ class CertificateSeriesFields(StrEnum):
849
+ abs_entry = 'AbsEntry'
850
+ code = 'Code'
851
+ section = 'Section'
852
+ location = 'Location'
853
+ default_series = 'DefaultSeries'
854
+ series_lines = 'SeriesLines'
855
+ section2 = 'Section2'
856
+ warehouse_location = 'WarehouseLocation'
857
+
858
+ class ChecksforPaymentFields(StrEnum):
859
+ check_key = 'CheckKey'
860
+ check_number = 'CheckNumber'
861
+ bank_code = 'BankCode'
862
+ branch = 'Branch'
863
+ bank_name = 'BankName'
864
+ check_date = 'CheckDate'
865
+ account_number = 'AccountNumber'
866
+ details = 'Details'
867
+ journal_entry_reference = 'JournalEntryReference'
868
+ payment_date = 'PaymentDate'
869
+ payment_no = 'PaymentNo'
870
+ check_amount = 'CheckAmount'
871
+ transferable = 'Transferable'
872
+ vendor_code = 'VendorCode'
873
+ check_currency = 'CheckCurrency'
874
+ canceled = 'Canceled'
875
+ card_or_account = 'CardOrAccount'
876
+ printed = 'Printed'
877
+ vendor_name = 'VendorName'
878
+ signature = 'Signature'
879
+ customer_account_code = 'CustomerAccountCode'
880
+ transaction_number = 'TransactionNumber'
881
+ address = 'Address'
882
+ create_journal_entry = 'CreateJournalEntry'
883
+ update_date = 'UpdateDate'
884
+ creation_date = 'CreationDate'
885
+ tax_total = 'TaxTotal'
886
+ tax_date = 'TaxDate'
887
+ deduction_refund_amount = 'DeductionRefundAmount'
888
+ printed_by = 'PrintedBy'
889
+ country_code = 'CountryCode'
890
+ totalin_words = 'TotalinWords'
891
+ address_name = 'AddressName'
892
+ manual_check = 'ManualCheck'
893
+ attachment_entry = 'AttachmentEntry'
894
+ e_check = 'ECheck'
895
+ print_confirm = 'PrintConfirm'
896
+ checksfor_payment_lines = 'ChecksforPaymentLines'
897
+ checksfor_payment_print_status = 'ChecksforPaymentPrintStatus'
898
+ checksfor_payment_document_references = 'ChecksforPaymentDocumentReferences'
899
+ journal_entry = 'JournalEntry'
900
+ country = 'Country'
901
+ attachments2 = 'Attachments2'
902
+
903
+ class ChooseFromListFields(StrEnum):
904
+ object_name = 'ObjectName'
905
+ choose_from_list_lines = 'ChooseFromList_Lines'
906
+
907
+ class ClosingDateProcedureFields(StrEnum):
908
+ closing_date_num = 'ClosingDateNum'
909
+ closing_date_code = 'ClosingDateCode'
910
+ baseline_date = 'BaselineDate'
911
+ due_month = 'DueMonth'
912
+ extra_month = 'ExtraMonth'
913
+ extra_day = 'ExtraDay'
914
+ business_partners = 'BusinessPartners'
915
+
916
+ class CockpitFields(StrEnum):
917
+ abs_entry = 'AbsEntry'
918
+ code = 'Code'
919
+ name = 'Name'
920
+ description = 'Description'
921
+ user_signature = 'UserSignature'
922
+ date = 'Date'
923
+ time = 'Time'
924
+ manufacturer = 'Manufacturer'
925
+ publisher = 'Publisher'
926
+ cockpit_type = 'CockpitType'
927
+ user = 'User'
928
+
929
+ class ColumnPreferencesFields(StrEnum):
930
+ user = 'User'
931
+ form_id = 'FormID'
932
+ item_number = 'ItemNumber'
933
+ column = 'Column'
934
+ width = 'Width'
935
+ visible_in_form = 'VisibleInForm'
936
+ tabs_layout = 'TabsLayout'
937
+ editable_in_form = 'EditableInForm'
938
+ visible_in_expanded = 'VisibleInExpanded'
939
+ expanded_index = 'ExpandedIndex'
940
+ editable_in_expanded = 'EditableInExpanded'
941
+ user2 = 'User2'
942
+
943
+ class CommissionGroupFields(StrEnum):
944
+ commission_group_code = 'CommissionGroupCode'
945
+ commission_group_name = 'CommissionGroupName'
946
+ commission_percentage = 'CommissionPercentage'
947
+ sales_persons = 'SalesPersons'
948
+ items = 'Items'
949
+ business_partners = 'BusinessPartners'
950
+
951
+ class ContactFields(StrEnum):
952
+ card_code = 'CardCode'
953
+ notes = 'Notes'
954
+ contact_date = 'ContactDate'
955
+ contact_time = 'ContactTime'
956
+ recontact = 'Recontact'
957
+ closed = 'Closed'
958
+ close_date = 'CloseDate'
959
+ phone = 'Phone'
960
+ fax = 'Fax'
961
+ subject = 'Subject'
962
+ doc_type = 'DocType'
963
+ doc_num = 'DocNum'
964
+ doc_entry = 'DocEntry'
965
+ contact_code = 'ContactCode'
966
+ priority = 'Priority'
967
+ details = 'Details'
968
+ activity = 'Activity'
969
+ activity_type = 'ActivityType'
970
+ location = 'Location'
971
+ start_time = 'StartTime'
972
+ end_time = 'EndTime'
973
+ duration = 'Duration'
974
+ duration_type = 'DurationType'
975
+ sales_employee = 'SalesEmployee'
976
+ contact_person_code = 'ContactPersonCode'
977
+ handled_by = 'HandledBy'
978
+ reminder = 'Reminder'
979
+ reminder_period = 'ReminderPeriod'
980
+ reminder_type = 'ReminderType'
981
+ city = 'City'
982
+ personalflag = 'Personalflag'
983
+ street = 'Street'
984
+ parentobject_id = 'ParentobjectId'
985
+ parentobjecttype = 'Parentobjecttype'
986
+ room = 'Room'
987
+ inactiveflag = 'Inactiveflag'
988
+ state = 'State'
989
+ previous_activity = 'PreviousActivity'
990
+ country = 'Country'
991
+ status = 'Status'
992
+ tentativeflag = 'Tentativeflag'
993
+ end_duedate = 'EndDuedate'
994
+ doc_type_ex = 'DocTypeEx'
995
+ attachment_entry = 'AttachmentEntry'
996
+ start_date = 'StartDate'
997
+ user_signature = 'UserSignature'
998
+ user_signature2 = 'UserSignature2'
999
+ business_partner = 'BusinessPartner'
1000
+ activity_subject = 'ActivitySubject'
1001
+ activity_type2 = 'ActivityType2'
1002
+ activity_location = 'ActivityLocation'
1003
+ sales_person = 'SalesPerson'
1004
+ user = 'User'
1005
+ country2 = 'Country2'
1006
+ activity_status = 'ActivityStatus'
1007
+
1008
+ class CostElementFields(StrEnum):
1009
+ code = 'Code'
1010
+ description = 'Description'
1011
+ is_active = 'IsActive'
1012
+ chart_of_accounts = 'ChartOfAccounts'
1013
+
1014
+ class CountryFields(StrEnum):
1015
+ code = 'Code'
1016
+ name = 'Name'
1017
+ code_for_reports = 'CodeForReports'
1018
+ address_format = 'AddressFormat'
1019
+ eu = 'EU'
1020
+ number_of_digits_for_tax_id = 'NumberOfDigitsForTaxID'
1021
+ bank_code_digits = 'BankCodeDigits'
1022
+ bank_branch_digits = 'BankBranchDigits'
1023
+ bank_account_digits = 'BankAccountDigits'
1024
+ bank_control_key_digits = 'BankControlKeyDigits'
1025
+ domestic_account_validation = 'DomesticAccountValidation'
1026
+ iban_validation = 'IbanValidation'
1027
+ blacklisted = 'Blacklisted'
1028
+ uic_country_code = 'UICCountryCode'
1029
+ eaeu = 'EAEU'
1030
+ iso_alpha2_code = 'ISOAlpha2Code'
1031
+ iso_alpha3_code = 'ISOAlpha3Code'
1032
+ iso_numeric = 'ISONumeric'
1033
+ user_default_groups = 'UserDefaultGroups'
1034
+ warehouses = 'Warehouses'
1035
+ checksfor_payment = 'ChecksforPayment'
1036
+ purchase_quotations = 'PurchaseQuotations'
1037
+ vendor_payments = 'VendorPayments'
1038
+ correction_invoice_reversal = 'CorrectionInvoiceReversal'
1039
+ customer_equipment_cards = 'CustomerEquipmentCards'
1040
+ correction_invoice = 'CorrectionInvoice'
1041
+ purchase_delivery_notes = 'PurchaseDeliveryNotes'
1042
+ correction_purchase_invoice = 'CorrectionPurchaseInvoice'
1043
+ inventory_gen_entries = 'InventoryGenEntries'
1044
+ warehouse_locations = 'WarehouseLocations'
1045
+ service_calls = 'ServiceCalls'
1046
+ employees_info = 'EmployeesInfo'
1047
+ orders = 'Orders'
1048
+ wizard_payment_methods = 'WizardPaymentMethods'
1049
+ gl_account_advanced_rules = 'GLAccountAdvancedRules'
1050
+ inventory_gen_exits = 'InventoryGenExits'
1051
+ drafts = 'Drafts'
1052
+ export_determinations = 'ExportDeterminations'
1053
+ return_request = 'ReturnRequest'
1054
+ delivery_notes = 'DeliveryNotes'
1055
+ purchase_invoices = 'PurchaseInvoices'
1056
+ self_invoices = 'SelfInvoices'
1057
+ invoices = 'Invoices'
1058
+ states = 'States'
1059
+ credit_notes = 'CreditNotes'
1060
+ payment_drafts = 'PaymentDrafts'
1061
+ banks = 'Banks'
1062
+ contacts = 'Contacts'
1063
+ purchase_credit_notes = 'PurchaseCreditNotes'
1064
+ business_partners = 'BusinessPartners'
1065
+ down_payments = 'DownPayments'
1066
+ purchase_down_payments = 'PurchaseDownPayments'
1067
+ purchase_returns = 'PurchaseReturns'
1068
+ activities = 'Activities'
1069
+ purchase_orders = 'PurchaseOrders'
1070
+ self_credit_memos = 'SelfCreditMemos'
1071
+ quotations = 'Quotations'
1072
+ returns = 'Returns'
1073
+ house_bank_accounts = 'HouseBankAccounts'
1074
+ goods_return_request = 'GoodsReturnRequest'
1075
+ correction_purchase_invoice_reversal = 'CorrectionPurchaseInvoiceReversal'
1076
+ incoming_payments = 'IncomingPayments'
1077
+ purchase_requests = 'PurchaseRequests'
1078
+ business_places = 'BusinessPlaces'
1079
+ credit_cards = 'CreditCards'
1080
+
1081
+ class CountyFields(StrEnum):
1082
+ abs_id = 'AbsId'
1083
+ code = 'Code'
1084
+ country = 'Country'
1085
+ state = 'State'
1086
+ name = 'Name'
1087
+ ibge_code = 'IbgeCode'
1088
+ gia_code = 'GiaCode'
1089
+ tax_zone = 'TaxZone'
1090
+ warehouses = 'Warehouses'
1091
+ business_places = 'BusinessPlaces'
1092
+
1093
+ class CreditCardFields(StrEnum):
1094
+ credit_card_code = 'CreditCardCode'
1095
+ credit_card_name = 'CreditCardName'
1096
+ gl_account = 'GLAccount'
1097
+ telephone = 'Telephone'
1098
+ company_id = 'CompanyID'
1099
+ country_code = 'CountryCode'
1100
+ credit_payment_methods = 'CreditPaymentMethods'
1101
+ business_partners = 'BusinessPartners'
1102
+ chart_of_account = 'ChartOfAccount'
1103
+ country = 'Country'
1104
+
1105
+ class CreditCardPaymentFields(StrEnum):
1106
+ due_date_code = 'DueDateCode'
1107
+ due_date_name = 'DueDateName'
1108
+ due_dates_type = 'DueDatesType'
1109
+ payment_after_days = 'PaymentAfterDays'
1110
+ payment_after_months = 'PaymentAfterMonths'
1111
+ from_day1 = 'FromDay1'
1112
+ to_day1 = 'ToDay1'
1113
+ payment_day1 = 'PaymentDay1'
1114
+ no_of_months1 = 'NoOfMonths1'
1115
+ from_day2 = 'FromDay2'
1116
+ to_day2 = 'ToDay2'
1117
+ payment_day2 = 'PaymentDay2'
1118
+ no_of_months2 = 'NoOfMonths2'
1119
+ from_day3 = 'FromDay3'
1120
+ to_day3 = 'ToDay3'
1121
+ payment_day3 = 'PaymentDay3'
1122
+ no_of_months3 = 'NoOfMonths3'
1123
+ from_day4 = 'FromDay4'
1124
+ to_day4 = 'ToDay4'
1125
+ payment_day4 = 'PaymentDay4'
1126
+ no_of_months4 = 'NoOfMonths4'
1127
+ credit_payment_methods = 'CreditPaymentMethods'
1128
+
1129
+ class CreditPaymentMethodFields(StrEnum):
1130
+ payment_method_code = 'PaymentMethodCode'
1131
+ name = 'Name'
1132
+ assignedto_credit_card = 'AssignedtoCreditCard'
1133
+ payment_code = 'PaymentCode'
1134
+ minimum_credit_amount = 'MinimumCreditAmount'
1135
+ minimum_payment_amount = 'MinimumPaymentAmount'
1136
+ max_qty_without_approval = 'MaxQtyWithoutApproval'
1137
+ installment_payments_possible = 'InstallmentPaymentsPossible'
1138
+ credit_card = 'CreditCard'
1139
+ credit_card_payment = 'CreditCardPayment'
1140
+
1141
+ class CustomerEquipmentCardFields(StrEnum):
1142
+ equipment_card_num = 'EquipmentCardNum'
1143
+ customer_code = 'CustomerCode'
1144
+ customer_name = 'CustomerName'
1145
+ contact_employee_code = 'ContactEmployeeCode'
1146
+ direct_customer_code = 'DirectCustomerCode'
1147
+ direct_customer_name = 'DirectCustomerName'
1148
+ manufacturer_serial_num = 'ManufacturerSerialNum'
1149
+ internal_serial_num = 'InternalSerialNum'
1150
+ required_resolution_time = 'RequiredResolutionTime'
1151
+ required_resolution_unit = 'RequiredResolutionUnit'
1152
+ item_code = 'ItemCode'
1153
+ item_description = 'ItemDescription'
1154
+ invoice_code = 'InvoiceCode'
1155
+ invoice_number = 'InvoiceNumber'
1156
+ delivery_date = 'DeliveryDate'
1157
+ contact_phone = 'ContactPhone'
1158
+ street = 'Street'
1159
+ block = 'Block'
1160
+ zip_code = 'ZipCode'
1161
+ city = 'City'
1162
+ county = 'County'
1163
+ country_code = 'CountryCode'
1164
+ state_code = 'StateCode'
1165
+ install_location = 'InstallLocation'
1166
+ contract_code = 'ContractCode'
1167
+ contract_start_date = 'ContractStartDate'
1168
+ contract_end_date = 'ContractEndDate'
1169
+ delivery_code = 'DeliveryCode'
1170
+ delivery_number = 'DeliveryNumber'
1171
+ status_of_serial_number = 'StatusOfSerialNumber'
1172
+ replace_sn = 'ReplaceSN'
1173
+ default_technician = 'DefaultTechnician'
1174
+ replaced_by_sn = 'ReplacedBySN'
1175
+ defaultterritory = 'Defaultterritory'
1176
+ building_floor_room = 'BuildingFloorRoom'
1177
+ attachment_entry = 'AttachmentEntry'
1178
+ street_no = 'StreetNo'
1179
+ service_bp_type = 'ServiceBPType'
1180
+ customer_equipment_card_business_partners = 'CustomerEquipmentCardBusinessPartners'
1181
+ business_partner = 'BusinessPartner'
1182
+ item = 'Item'
1183
+ country = 'Country'
1184
+ service_contract = 'ServiceContract'
1185
+ employee_info = 'EmployeeInfo'
1186
+ territory = 'Territory'
1187
+ attachments2 = 'Attachments2'
1188
+
1189
+ class CustomsDeclarationFields(StrEnum):
1190
+ ccd_num = 'CCDNum'
1191
+ date = 'Date'
1192
+ customs_broker = 'CustomsBroker'
1193
+ doc_num = 'DocNum'
1194
+ doc_date = 'DocDate'
1195
+ supply_num = 'SupplyNum'
1196
+ supply_date = 'SupplyDate'
1197
+ customs_terminal = 'CustomsTerminal'
1198
+ payment_key = 'PaymentKey'
1199
+
1200
+ class CustomsGroupFields(StrEnum):
1201
+ code = 'Code'
1202
+ name = 'Name'
1203
+ number = 'Number'
1204
+ customs = 'Customs'
1205
+ purchase = 'Purchase'
1206
+ other = 'Other'
1207
+ total = 'Total'
1208
+ locked = 'Locked'
1209
+ customs_allocation_account = 'CustomsAllocationAccount'
1210
+ customs_expense_account = 'CustomsExpenseAccount'
1211
+ port_address = 'PortAddress'
1212
+ port_state = 'PortState'
1213
+ items = 'Items'
1214
+ chart_of_account = 'ChartOfAccount'
1215
+
1216
+ class DNFCodeSetupFields(StrEnum):
1217
+ abs_entry = 'AbsEntry'
1218
+ ncm_code = 'NCMCode'
1219
+ dnf_code = 'DNFCode'
1220
+ uo_m = 'UoM'
1221
+ factor = 'Factor'
1222
+ items = 'Items'
1223
+ ncm_code_setup = 'NCMCodeSetup'
1224
+
1225
+ class DeductibleTaxFields(StrEnum):
1226
+ code = 'Code'
1227
+ name = 'Name'
1228
+ inactive = 'Inactive'
1229
+ category = 'Category'
1230
+ deductible_tax_rate = 'DeductibleTaxRate'
1231
+
1232
+ class DeductionTaxGroupFields(StrEnum):
1233
+ group_key = 'GroupKey'
1234
+ group_code = 'GroupCode'
1235
+ group_name = 'GroupName'
1236
+ max_redin = 'MaxRedin'
1237
+ group_extended_code = 'GroupExtendedCode'
1238
+ business_partners = 'BusinessPartners'
1239
+ deduction_tax_sub_group = 'DeductionTaxSubGroup'
1240
+
1241
+ class DeductionTaxHierarchyFields(StrEnum):
1242
+ abs_entry = 'AbsEntry'
1243
+ bp_code = 'BPCode'
1244
+ hierarchy_code = 'HierarchyCode'
1245
+ hierarchy_name = 'HierarchyName'
1246
+ valid_from = 'ValidFrom'
1247
+ valid_until = 'ValidUntil'
1248
+ deduction_percent = 'DeductionPercent'
1249
+ maximum_total = 'MaximumTotal'
1250
+ last_updated = 'LastUpdated'
1251
+ deduction_tax_hierarchies_lines = 'DeductionTaxHierarchies_Lines'
1252
+ business_partner = 'BusinessPartner'
1253
+
1254
+ class DeductionTaxSubGroupFields(StrEnum):
1255
+ group_code = 'GroupCode'
1256
+ group_name = 'GroupName'
1257
+ deduction_tax_groups = 'DeductionTaxGroups'
1258
+
1259
+ class DefaultElementsforCRFields(StrEnum):
1260
+ code = 'Code'
1261
+ name = 'Name'
1262
+
1263
+ class DepartmentFields(StrEnum):
1264
+ code = 'Code'
1265
+ name = 'Name'
1266
+ description = 'Description'
1267
+ purchase_quotations = 'PurchaseQuotations'
1268
+ correction_invoice_reversal = 'CorrectionInvoiceReversal'
1269
+ correction_invoice = 'CorrectionInvoice'
1270
+ purchase_delivery_notes = 'PurchaseDeliveryNotes'
1271
+ correction_purchase_invoice = 'CorrectionPurchaseInvoice'
1272
+ inventory_gen_entries = 'InventoryGenEntries'
1273
+ employees_info = 'EmployeesInfo'
1274
+ orders = 'Orders'
1275
+ inventory_gen_exits = 'InventoryGenExits'
1276
+ drafts = 'Drafts'
1277
+ return_request = 'ReturnRequest'
1278
+ delivery_notes = 'DeliveryNotes'
1279
+ users = 'Users'
1280
+ purchase_invoices = 'PurchaseInvoices'
1281
+ self_invoices = 'SelfInvoices'
1282
+ invoices = 'Invoices'
1283
+ credit_notes = 'CreditNotes'
1284
+ purchase_credit_notes = 'PurchaseCreditNotes'
1285
+ down_payments = 'DownPayments'
1286
+ purchase_down_payments = 'PurchaseDownPayments'
1287
+ purchase_returns = 'PurchaseReturns'
1288
+ purchase_orders = 'PurchaseOrders'
1289
+ self_credit_memos = 'SelfCreditMemos'
1290
+ quotations = 'Quotations'
1291
+ returns = 'Returns'
1292
+ goods_return_request = 'GoodsReturnRequest'
1293
+ correction_purchase_invoice_reversal = 'CorrectionPurchaseInvoiceReversal'
1294
+ purchase_requests = 'PurchaseRequests'
1295
+
1296
+ class DepositFields(StrEnum):
1297
+ deposit_number = 'DepositNumber'
1298
+ abs_entry = 'AbsEntry'
1299
+ deposit_type = 'DepositType'
1300
+ deposit_date = 'DepositDate'
1301
+ deposit_currency = 'DepositCurrency'
1302
+ deposit_account = 'DepositAccount'
1303
+ depositor_name = 'DepositorName'
1304
+ bank = 'Bank'
1305
+ bank_account_num = 'BankAccountNum'
1306
+ bank_branch = 'BankBranch'
1307
+ bank_reference = 'BankReference'
1308
+ journal_remarks = 'JournalRemarks'
1309
+ total_lc = 'TotalLC'
1310
+ total_fc = 'TotalFC'
1311
+ total_sc = 'TotalSC'
1312
+ allocation_account = 'AllocationAccount'
1313
+ doc_rate = 'DocRate'
1314
+ tax_account = 'TaxAccount'
1315
+ tax_amount = 'TaxAmount'
1316
+ commission_account = 'CommissionAccount'
1317
+ commission = 'Commission'
1318
+ commission_date = 'CommissionDate'
1319
+ tax_code = 'TaxCode'
1320
+ deposit_account_type = 'DepositAccountType'
1321
+ reconcile_after_deposit = 'ReconcileAfterDeposit'
1322
+ voucher_account = 'VoucherAccount'
1323
+ series = 'Series'
1324
+ project = 'Project'
1325
+ distribution_rule = 'DistributionRule'
1326
+ distribution_rule2 = 'DistributionRule2'
1327
+ distribution_rule3 = 'DistributionRule3'
1328
+ distribution_rule4 = 'DistributionRule4'
1329
+ distribution_rule5 = 'DistributionRule5'
1330
+ commission_currency = 'CommissionCurrency'
1331
+ commission_sc = 'CommissionSC'
1332
+ commission_fc = 'CommissionFC'
1333
+ tax_amount_sc = 'TaxAmountSC'
1334
+ tax_amount_fc = 'TaxAmountFC'
1335
+ bplid = 'BPLID'
1336
+ check_deposit_type = 'CheckDepositType'
1337
+ attachment_entry = 'AttachmentEntry'
1338
+ income_tax_account = 'IncomeTaxAccount'
1339
+ income_tax_amount = 'IncomeTaxAmount'
1340
+ income_tax_amount_sc = 'IncomeTaxAmountSC'
1341
+ income_tax_amount_fc = 'IncomeTaxAmountFC'
1342
+ check_lines = 'CheckLines'
1343
+ credit_lines = 'CreditLines'
1344
+ boe_lines = 'BOELines'
1345
+ vat_group = 'VatGroup'
1346
+ project2 = 'Project2'
1347
+ distribution_rule6 = 'DistributionRule6'
1348
+ business_place = 'BusinessPlace'
1349
+ attachments2 = 'Attachments2'
1350
+
1351
+ class DepreciationAreaFields(StrEnum):
1352
+ code = 'Code'
1353
+ description = 'Description'
1354
+ posting_of_depreciation = 'PostingOfDepreciation'
1355
+ retirement_method = 'RetirementMethod'
1356
+ area_type = 'AreaType'
1357
+ derived_area = 'DerivedArea'
1358
+ main_booking_area = 'MainBookingArea'
1359
+ direct_revenue_posting = 'DirectRevenuePosting'
1360
+ tax_credit_control = 'TaxCreditControl'
1361
+ tax_type = 'TaxType'
1362
+ bp_for_tax_correction = 'BPForTaxCorrection'
1363
+ item_for_tax_correction = 'ItemForTaxCorrection'
1364
+ usage_for_tax_correction = 'UsageForTaxCorrection'
1365
+ asset_retirement = 'AssetRetirement'
1366
+ asset_transfer = 'AssetTransfer'
1367
+ asset_revaluations = 'AssetRevaluations'
1368
+ asset_manual_depreciation = 'AssetManualDepreciation'
1369
+ asset_capitalization = 'AssetCapitalization'
1370
+ asset_capitalization_credit_memo = 'AssetCapitalizationCreditMemo'
1371
+ sales_tax_authorities_type = 'SalesTaxAuthoritiesType'
1372
+ business_partner = 'BusinessPartner'
1373
+ item = 'Item'
1374
+ nota_fiscal_usage = 'NotaFiscalUsage'
1375
+
1376
+ class DepreciationTypeFields(StrEnum):
1377
+ code = 'Code'
1378
+ description = 'Description'
1379
+ depreciation_method = 'DepreciationMethod'
1380
+ minimum_depreciated_value = 'MinimumDepreciatedValue'
1381
+ round_year_end_book_value = 'RoundYearEndBookValue'
1382
+ include_salvage_in_depreciation = 'IncludeSalvageInDepreciation'
1383
+ salvage_percentage = 'SalvagePercentage'
1384
+ acquisition_period_control = 'AcquisitionPeriodControl'
1385
+ subsequent_acquisition_period_control = 'SubsequentAcquisitionPeriodControl'
1386
+ retirement_period_control = 'RetirementPeriodControl'
1387
+ acquisition_pro_rata_type = 'AcquisitionProRataType'
1388
+ subsequent_acquisition_pro_rata_type = 'SubsequentAcquisitionProRataType'
1389
+ retirement_pro_rata_type = 'RetirementProRataType'
1390
+ percentage_of_depreciation_reversed_in_retirement_year = 'PercentageOfDepreciationReversedInRetirementYear'
1391
+ valid_from = 'ValidFrom'
1392
+ valid_to = 'ValidTo'
1393
+ straight_line_calculation_method = 'StraightLineCalculationMethod'
1394
+ straight_line_percentage = 'StraightLinePercentage'
1395
+ straight_line_period_control_depreciation_periods = 'StraightLinePeriodControlDepreciationPeriods'
1396
+ straight_line_period_control_factor = 'StraightLinePeriodControlFactor'
1397
+ declining_percentage = 'DecliningPercentage'
1398
+ declining_factor = 'DecliningFactor'
1399
+ declining_change_to = 'DecliningChangeTo'
1400
+ special_depreciation_calculation_method = 'SpecialDepreciationCalculationMethod'
1401
+ special_depreciation_concession_period_years = 'SpecialDepreciationConcessionPeriodYears'
1402
+ special_depreciation_maximum_percentage = 'SpecialDepreciationMaximumPercentage'
1403
+ special_depreciation_normal_depreciation = 'SpecialDepreciationNormalDepreciation'
1404
+ special_depreciation_alternative_depreciation = 'SpecialDepreciationAlternativeDepreciation'
1405
+ depreciation_type_pool = 'DepreciationTypePool'
1406
+ manual_depreciation_reduce_depreciation_base = 'ManualDepreciationReduceDepreciationBase'
1407
+ special_depreciation_maximum_amount = 'SpecialDepreciationMaximumAmount'
1408
+ special_depreciation_maximum_flag = 'SpecialDepreciationMaximumFlag'
1409
+ calculation_base = 'CalculationBase'
1410
+ depreciation_end_at_last_full_year = 'DepreciationEndAtLastFullYear'
1411
+ include_previous_depreciation_in_capitalization_period = 'IncludePreviousDepreciationInCapitalizationPeriod'
1412
+ delta_coefficient = 'DeltaCoefficient'
1413
+ maximum_depreciable_value = 'MaximumDepreciableValue'
1414
+ factor_only_relevant_to_first_fiscal_year = 'FactorOnlyRelevantToFirstFiscalYear'
1415
+ transfer_source_period_control = 'TransferSourcePeriodControl'
1416
+ transfer_target_period_control = 'TransferTargetPeriodControl'
1417
+ transfer_source_pro_rata_type = 'TransferSourceProRataType'
1418
+ transfer_target_pro_rata_type = 'TransferTargetProRataType'
1419
+ rounding_method = 'RoundingMethod'
1420
+ depreciation_level_collection = 'DepreciationLevelCollection'
1421
+ asset_retirement = 'AssetRetirement'
1422
+ asset_transfer = 'AssetTransfer'
1423
+ asset_manual_depreciation = 'AssetManualDepreciation'
1424
+ asset_capitalization = 'AssetCapitalization'
1425
+ depreciation_type_pool2 = 'DepreciationTypePool2'
1426
+ asset_capitalization_credit_memo = 'AssetCapitalizationCreditMemo'
1427
+
1428
+ class DepreciationTypePoolFields(StrEnum):
1429
+ code = 'Code'
1430
+ description = 'Description'
1431
+ depreciation_types = 'DepreciationTypes'
1432
+
1433
+ class DeterminationCriteriaFields(StrEnum):
1434
+ dmc_id = 'DmcId'
1435
+ determination_criteria_property = 'DeterminationCriteriaProperty'
1436
+ is_active = 'IsActive'
1437
+ priority = 'Priority'
1438
+
1439
+ class DimensionFields(StrEnum):
1440
+ dimension_code = 'DimensionCode'
1441
+ dimension_name = 'DimensionName'
1442
+ is_active = 'IsActive'
1443
+ dimension_description = 'DimensionDescription'
1444
+ distribution_rules = 'DistributionRules'
1445
+ profit_centers = 'ProfitCenters'
1446
+
1447
+ class DistributionRuleFields(StrEnum):
1448
+ factor_code = 'FactorCode'
1449
+ factor_description = 'FactorDescription'
1450
+ total_factor = 'TotalFactor'
1451
+ direct = 'Direct'
1452
+ in_which_dimension = 'InWhichDimension'
1453
+ active = 'Active'
1454
+ is_fixed_amount = 'IsFixedAmount'
1455
+ distribution_rule_lines = 'DistributionRuleLines'
1456
+ product_trees = 'ProductTrees'
1457
+ dimension = 'Dimension'
1458
+ additional_expenses = 'AdditionalExpenses'
1459
+ chart_of_accounts = 'ChartOfAccounts'
1460
+ production_orders = 'ProductionOrders'
1461
+ budget_scenarios = 'BudgetScenarios'
1462
+ deposits = 'Deposits'
1463
+
1464
+ class DocumentFields(StrEnum):
1465
+ doc_entry = 'DocEntry'
1466
+ doc_num = 'DocNum'
1467
+ doc_type = 'DocType'
1468
+ hand_written = 'HandWritten'
1469
+ printed = 'Printed'
1470
+ doc_date = 'DocDate'
1471
+ doc_due_date = 'DocDueDate'
1472
+ card_code = 'CardCode'
1473
+ card_name = 'CardName'
1474
+ address = 'Address'
1475
+ num_at_card = 'NumAtCard'
1476
+ doc_total = 'DocTotal'
1477
+ attachment_entry = 'AttachmentEntry'
1478
+ doc_currency = 'DocCurrency'
1479
+ doc_rate = 'DocRate'
1480
+ reference1 = 'Reference1'
1481
+ reference2 = 'Reference2'
1482
+ comments = 'Comments'
1483
+ journal_memo = 'JournalMemo'
1484
+ payment_group_code = 'PaymentGroupCode'
1485
+ doc_time = 'DocTime'
1486
+ sales_person_code = 'SalesPersonCode'
1487
+ transportation_code = 'TransportationCode'
1488
+ confirmed = 'Confirmed'
1489
+ import_file_num = 'ImportFileNum'
1490
+ summery_type = 'SummeryType'
1491
+ contact_person_code = 'ContactPersonCode'
1492
+ show_scn = 'ShowSCN'
1493
+ series = 'Series'
1494
+ tax_date = 'TaxDate'
1495
+ partial_supply = 'PartialSupply'
1496
+ doc_object_code = 'DocObjectCode'
1497
+ ship_to_code = 'ShipToCode'
1498
+ indicator = 'Indicator'
1499
+ federal_tax_id = 'FederalTaxID'
1500
+ discount_percent = 'DiscountPercent'
1501
+ payment_reference = 'PaymentReference'
1502
+ creation_date = 'CreationDate'
1503
+ update_date = 'UpdateDate'
1504
+ financial_period = 'FinancialPeriod'
1505
+ user_sign = 'UserSign'
1506
+ trans_num = 'TransNum'
1507
+ vat_sum = 'VatSum'
1508
+ vat_sum_sys = 'VatSumSys'
1509
+ vat_sum_fc = 'VatSumFc'
1510
+ net_procedure = 'NetProcedure'
1511
+ doc_total_fc = 'DocTotalFc'
1512
+ doc_total_sys = 'DocTotalSys'
1513
+ form1099 = 'Form1099'
1514
+ box1099 = 'Box1099'
1515
+ revision_po = 'RevisionPo'
1516
+ requried_date = 'RequriedDate'
1517
+ cancel_date = 'CancelDate'
1518
+ block_dunning = 'BlockDunning'
1519
+ submitted = 'Submitted'
1520
+ segment = 'Segment'
1521
+ pick_status = 'PickStatus'
1522
+ pick = 'Pick'
1523
+ payment_method = 'PaymentMethod'
1524
+ payment_block = 'PaymentBlock'
1525
+ payment_block_entry = 'PaymentBlockEntry'
1526
+ central_bank_indicator = 'CentralBankIndicator'
1527
+ maximum_cash_discount = 'MaximumCashDiscount'
1528
+ reserve = 'Reserve'
1529
+ project = 'Project'
1530
+ exemption_validity_date_from = 'ExemptionValidityDateFrom'
1531
+ exemption_validity_date_to = 'ExemptionValidityDateTo'
1532
+ ware_house_update_type = 'WareHouseUpdateType'
1533
+ rounding = 'Rounding'
1534
+ external_corrected_doc_num = 'ExternalCorrectedDocNum'
1535
+ internal_corrected_doc_num = 'InternalCorrectedDocNum'
1536
+ next_correcting_document = 'NextCorrectingDocument'
1537
+ deferred_tax = 'DeferredTax'
1538
+ tax_exemption_letter_num = 'TaxExemptionLetterNum'
1539
+ wt_applied = 'WTApplied'
1540
+ wt_applied_fc = 'WTAppliedFC'
1541
+ bill_of_exchange_reserved = 'BillOfExchangeReserved'
1542
+ agent_code = 'AgentCode'
1543
+ wt_applied_sc = 'WTAppliedSC'
1544
+ total_equalization_tax = 'TotalEqualizationTax'
1545
+ total_equalization_tax_fc = 'TotalEqualizationTaxFC'
1546
+ total_equalization_tax_sc = 'TotalEqualizationTaxSC'
1547
+ number_of_installments = 'NumberOfInstallments'
1548
+ apply_tax_on_first_installment = 'ApplyTaxOnFirstInstallment'
1549
+ tax_on_installments = 'TaxOnInstallments'
1550
+ wt_non_subject_amount = 'WTNonSubjectAmount'
1551
+ wt_non_subject_amount_sc = 'WTNonSubjectAmountSC'
1552
+ wt_non_subject_amount_fc = 'WTNonSubjectAmountFC'
1553
+ wt_exempted_amount = 'WTExemptedAmount'
1554
+ wt_exempted_amount_sc = 'WTExemptedAmountSC'
1555
+ wt_exempted_amount_fc = 'WTExemptedAmountFC'
1556
+ base_amount = 'BaseAmount'
1557
+ base_amount_sc = 'BaseAmountSC'
1558
+ base_amount_fc = 'BaseAmountFC'
1559
+ wt_amount = 'WTAmount'
1560
+ wt_amount_sc = 'WTAmountSC'
1561
+ wt_amount_fc = 'WTAmountFC'
1562
+ vat_date = 'VatDate'
1563
+ documents_owner = 'DocumentsOwner'
1564
+ folio_prefix_string = 'FolioPrefixString'
1565
+ folio_number = 'FolioNumber'
1566
+ document_sub_type = 'DocumentSubType'
1567
+ bp_channel_code = 'BPChannelCode'
1568
+ bp_channel_contact = 'BPChannelContact'
1569
+ address2 = 'Address2'
1570
+ document_status = 'DocumentStatus'
1571
+ period_indicator = 'PeriodIndicator'
1572
+ pay_to_code = 'PayToCode'
1573
+ manual_number = 'ManualNumber'
1574
+ use_shpd_goods_act = 'UseShpdGoodsAct'
1575
+ is_pay_to_bank = 'IsPayToBank'
1576
+ pay_to_bank_country = 'PayToBankCountry'
1577
+ pay_to_bank_code = 'PayToBankCode'
1578
+ pay_to_bank_account_no = 'PayToBankAccountNo'
1579
+ pay_to_bank_branch = 'PayToBankBranch'
1580
+ bpl_id_assigned_to_invoice = 'BPL_IDAssignedToInvoice'
1581
+ down_payment = 'DownPayment'
1582
+ reserve_invoice = 'ReserveInvoice'
1583
+ language_code = 'LanguageCode'
1584
+ tracking_number = 'TrackingNumber'
1585
+ pick_remark = 'PickRemark'
1586
+ closing_date = 'ClosingDate'
1587
+ sequence_code = 'SequenceCode'
1588
+ sequence_serial = 'SequenceSerial'
1589
+ series_string = 'SeriesString'
1590
+ sub_series_string = 'SubSeriesString'
1591
+ sequence_model = 'SequenceModel'
1592
+ use_correction_vat_group = 'UseCorrectionVATGroup'
1593
+ total_discount = 'TotalDiscount'
1594
+ down_payment_amount = 'DownPaymentAmount'
1595
+ down_payment_percentage = 'DownPaymentPercentage'
1596
+ down_payment_type = 'DownPaymentType'
1597
+ down_payment_amount_sc = 'DownPaymentAmountSC'
1598
+ down_payment_amount_fc = 'DownPaymentAmountFC'
1599
+ vat_percent = 'VatPercent'
1600
+ service_gross_profit_percent = 'ServiceGrossProfitPercent'
1601
+ opening_remarks = 'OpeningRemarks'
1602
+ closing_remarks = 'ClosingRemarks'
1603
+ rounding_diff_amount = 'RoundingDiffAmount'
1604
+ rounding_diff_amount_fc = 'RoundingDiffAmountFC'
1605
+ rounding_diff_amount_sc = 'RoundingDiffAmountSC'
1606
+ cancelled = 'Cancelled'
1607
+ signature_input_message = 'SignatureInputMessage'
1608
+ signature_digest = 'SignatureDigest'
1609
+ certification_number = 'CertificationNumber'
1610
+ private_key_version = 'PrivateKeyVersion'
1611
+ control_account = 'ControlAccount'
1612
+ insurance_operation347 = 'InsuranceOperation347'
1613
+ archive_nonremovable_sales_quotation = 'ArchiveNonremovableSalesQuotation'
1614
+ gts_checker = 'GTSChecker'
1615
+ gts_payee = 'GTSPayee'
1616
+ extra_month = 'ExtraMonth'
1617
+ extra_days = 'ExtraDays'
1618
+ cash_discount_date_offset = 'CashDiscountDateOffset'
1619
+ start_from = 'StartFrom'
1620
+ nts_approved = 'NTSApproved'
1621
+ e_tax_web_site = 'ETaxWebSite'
1622
+ e_tax_number = 'ETaxNumber'
1623
+ nts_approved_number = 'NTSApprovedNumber'
1624
+ e_doc_generation_type = 'EDocGenerationType'
1625
+ e_doc_series = 'EDocSeries'
1626
+ e_doc_num = 'EDocNum'
1627
+ e_doc_export_format = 'EDocExportFormat'
1628
+ e_doc_status = 'EDocStatus'
1629
+ e_doc_error_code = 'EDocErrorCode'
1630
+ e_doc_error_message = 'EDocErrorMessage'
1631
+ down_payment_status = 'DownPaymentStatus'
1632
+ group_series = 'GroupSeries'
1633
+ group_number = 'GroupNumber'
1634
+ group_hand_written = 'GroupHandWritten'
1635
+ reopen_original_document = 'ReopenOriginalDocument'
1636
+ reopen_manually_closed_or_canceled_document = 'ReopenManuallyClosedOrCanceledDocument'
1637
+ create_online_quotation = 'CreateOnlineQuotation'
1638
+ pos_equipment_number = 'POSEquipmentNumber'
1639
+ pos_manufacturer_serial_number = 'POSManufacturerSerialNumber'
1640
+ pos_cashier_number = 'POSCashierNumber'
1641
+ apply_current_vat_rates_for_down_payments_to_draw = 'ApplyCurrentVATRatesForDownPaymentsToDraw'
1642
+ closing_option = 'ClosingOption'
1643
+ specified_closing_date = 'SpecifiedClosingDate'
1644
+ open_for_landed_costs = 'OpenForLandedCosts'
1645
+ authorization_status = 'AuthorizationStatus'
1646
+ total_discount_fc = 'TotalDiscountFC'
1647
+ total_discount_sc = 'TotalDiscountSC'
1648
+ relevant_to_gts = 'RelevantToGTS'
1649
+ bpl_name = 'BPLName'
1650
+ vat_reg_num = 'VATRegNum'
1651
+ annual_invoice_declaration_reference = 'AnnualInvoiceDeclarationReference'
1652
+ supplier = 'Supplier'
1653
+ releaser = 'Releaser'
1654
+ receiver = 'Receiver'
1655
+ blanket_agreement_number = 'BlanketAgreementNumber'
1656
+ is_alteration = 'IsAlteration'
1657
+ cancel_status = 'CancelStatus'
1658
+ asset_value_date = 'AssetValueDate'
1659
+ requester = 'Requester'
1660
+ requester_name = 'RequesterName'
1661
+ requester_branch = 'RequesterBranch'
1662
+ requester_department = 'RequesterDepartment'
1663
+ requester_email = 'RequesterEmail'
1664
+ send_notification = 'SendNotification'
1665
+ req_type = 'ReqType'
1666
+ req_code = 'ReqCode'
1667
+ invoice_payment = 'InvoicePayment'
1668
+ document_delivery = 'DocumentDelivery'
1669
+ authorization_code = 'AuthorizationCode'
1670
+ start_delivery_date = 'StartDeliveryDate'
1671
+ start_delivery_time = 'StartDeliveryTime'
1672
+ end_delivery_date = 'EndDeliveryDate'
1673
+ end_delivery_time = 'EndDeliveryTime'
1674
+ vehicle_plate = 'VehiclePlate'
1675
+ at_document_type = 'ATDocumentType'
1676
+ elec_comm_status = 'ElecCommStatus'
1677
+ elec_comm_message = 'ElecCommMessage'
1678
+ reuse_document_num = 'ReuseDocumentNum'
1679
+ reuse_nota_fiscal_num = 'ReuseNotaFiscalNum'
1680
+ print_sepa_direct = 'PrintSEPADirect'
1681
+ fiscal_doc_num = 'FiscalDocNum'
1682
+ pos_daily_summary_no = 'POSDailySummaryNo'
1683
+ pos_receipt_no = 'POSReceiptNo'
1684
+ point_of_issue_code = 'PointOfIssueCode'
1685
+ letter = 'Letter'
1686
+ folio_number_from = 'FolioNumberFrom'
1687
+ folio_number_to = 'FolioNumberTo'
1688
+ interim_type = 'InterimType'
1689
+ related_type = 'RelatedType'
1690
+ related_entry = 'RelatedEntry'
1691
+ sap_passport = 'SAPPassport'
1692
+ document_tax_id = 'DocumentTaxID'
1693
+ date_of_reporting_control_statement_vat = 'DateOfReportingControlStatementVAT'
1694
+ reporting_section_control_statement_vat = 'ReportingSectionControlStatementVAT'
1695
+ exclude_from_tax_report_control_statement_vat = 'ExcludeFromTaxReportControlStatementVAT'
1696
+ update_time = 'UpdateTime'
1697
+ create_qr_code_from = 'CreateQRCodeFrom'
1698
+ price_mode = 'PriceMode'
1699
+ down_payment_trasaction_id = 'DownPaymentTrasactionID'
1700
+ original_ref_no = 'OriginalRefNo'
1701
+ original_ref_date = 'OriginalRefDate'
1702
+ revision = 'Revision'
1703
+ gst_transaction_type = 'GSTTransactionType'
1704
+ original_credit_or_debit_no = 'OriginalCreditOrDebitNo'
1705
+ original_credit_or_debit_date = 'OriginalCreditOrDebitDate'
1706
+ e_commerce_operator = 'ECommerceOperator'
1707
+ e_commerce_gstin = 'ECommerceGSTIN'
1708
+ tax_invoice_no = 'TaxInvoiceNo'
1709
+ tax_invoice_date = 'TaxInvoiceDate'
1710
+ ship_from = 'ShipFrom'
1711
+ commission_trade = 'CommissionTrade'
1712
+ commission_trade_return = 'CommissionTradeReturn'
1713
+ use_bill_to_addr_to_determine_tax = 'UseBillToAddrToDetermineTax'
1714
+ issuing_reason = 'IssuingReason'
1715
+ cig = 'Cig'
1716
+ cup = 'Cup'
1717
+ e_doc_type = 'EDocType'
1718
+ fce_as_payment_means = 'FCEAsPaymentMeans'
1719
+ paid_to_date = 'PaidToDate'
1720
+ paid_to_date_fc = 'PaidToDateFC'
1721
+ paid_to_date_sys = 'PaidToDateSys'
1722
+ father_card = 'FatherCard'
1723
+ father_type = 'FatherType'
1724
+ ship_state = 'ShipState'
1725
+ ship_place = 'ShipPlace'
1726
+ cust_office = 'CustOffice'
1727
+ fci = 'FCI'
1728
+ add_leg_in = 'AddLegIn'
1729
+ leg_text_f = 'LegTextF'
1730
+ danfe_lg_txt = 'DANFELgTxt'
1731
+ data_version = 'DataVersion'
1732
+ last_page_folio_number = 'LastPageFolioNumber'
1733
+ inventory_status = 'InventoryStatus'
1734
+ plastic_packaging_tax_relevant = 'PlasticPackagingTaxRelevant'
1735
+ not_relevant_for_monthly_invoice = 'NotRelevantForMonthlyInvoice'
1736
+ end_at = 'EndAt'
1737
+ ship_to_code_for_return = 'ShipToCodeForReturn'
1738
+ address_for_return = 'AddressForReturn'
1739
+ document_approval_requests = 'Document_ApprovalRequests'
1740
+ document_lines = 'DocumentLines'
1741
+ e_way_bill_details = 'EWayBillDetails'
1742
+ electronic_protocols = 'ElectronicProtocols'
1743
+ document_additional_expenses = 'DocumentAdditionalExpenses'
1744
+ document_distributed_expenses = 'DocumentDistributedExpenses'
1745
+ withholding_tax_data_wtx_collection = 'WithholdingTaxDataWTXCollection'
1746
+ withholding_tax_data_collection = 'WithholdingTaxDataCollection'
1747
+ document_packages = 'DocumentPackages'
1748
+ document_special_lines = 'DocumentSpecialLines'
1749
+ document_installments = 'DocumentInstallments'
1750
+ down_payments_to_draw = 'DownPaymentsToDraw'
1751
+ tax_extension = 'TaxExtension'
1752
+ address_extension = 'AddressExtension'
1753
+ document_references = 'DocumentReferences'
1754
+ document_additional_intrastat_expenses = 'DocumentAdditionalIntrastatExpenses'
1755
+ base_type = 'BaseType'
1756
+ base_entry = 'BaseEntry'
1757
+ ind_final = 'IndFinal'
1758
+ allocation_number_il = 'AllocationNumberIL'
1759
+ digital_pay_to_address = 'DigitalPayToAddress'
1760
+ digital_payments = 'DigitalPayments'
1761
+ soi_wizard_id = 'SOIWizardId'
1762
+ business_partner = 'BusinessPartner'
1763
+ currency = 'Currency'
1764
+ payment_terms_type = 'PaymentTermsType'
1765
+ sales_person = 'SalesPerson'
1766
+ shipping_type = 'ShippingType'
1767
+ factoring_indicator = 'FactoringIndicator'
1768
+ user = 'User'
1769
+ forms1099 = 'Forms1099'
1770
+ wizard_payment_method = 'WizardPaymentMethod'
1771
+ payment_block2 = 'PaymentBlock2'
1772
+ central_bank_indicator2 = 'CentralBankIndicator2'
1773
+ project2 = 'Project2'
1774
+ employee_info = 'EmployeeInfo'
1775
+ country = 'Country'
1776
+ business_place = 'BusinessPlace'
1777
+ user_language = 'UserLanguage'
1778
+ nf_model = 'NFModel'
1779
+ chart_of_account = 'ChartOfAccount'
1780
+ tax_web_site = 'TaxWebSite'
1781
+ branch = 'Branch'
1782
+ department = 'Department'
1783
+ pos_daily_summary = 'POSDailySummary'
1784
+ cig_code = 'CIGCode'
1785
+ cup_code = 'CUPCode'
1786
+ journal_entry = 'JournalEntry'
1787
+ landed_cost = 'LandedCost'
1788
+
1789
+ class DunningLetterFields(StrEnum):
1790
+ fee_currency = 'FeeCurrency'
1791
+ row_number = 'RowNumber'
1792
+ letter_format = 'LetterFormat'
1793
+ effectiveafter = 'Effectiveafter'
1794
+ minimum_balance_currency = 'MinimumBalanceCurrency'
1795
+ feeperletter = 'Feeperletter'
1796
+ calc_interest = 'CalcInterest'
1797
+ minimum_balance = 'MinimumBalance'
1798
+ business_partners = 'BusinessPartners'
1799
+
1800
+ class DunningTermFields(StrEnum):
1801
+ code = 'Code'
1802
+ name = 'Name'
1803
+ grouping_method = 'GroupingMethod'
1804
+ days_in_year = 'DaysInYear'
1805
+ days_in_month = 'DaysInMonth'
1806
+ calculate_interest_method = 'CalculateInterestMethod'
1807
+ exchange_rate_select = 'ExchangeRateSelect'
1808
+ yearly_interest_rate = 'YearlyInterestRate'
1809
+ letter_fee = 'LetterFee'
1810
+ letter_fee_currency = 'LetterFeeCurrency'
1811
+ minimum_balance = 'MinimumBalance'
1812
+ minimum_balance_currency = 'MinimumBalanceCurrency'
1813
+ include_interest = 'IncludeInterest'
1814
+ apply_highest_letter_template = 'ApplyHighestLetterTemplate'
1815
+ automatic_posting = 'AutomaticPosting'
1816
+ interest_account = 'InterestAccount'
1817
+ fee_account = 'FeeAccount'
1818
+ base_date_select = 'BaseDateSelect'
1819
+ dunning_term_lines = 'DunningTermLines'
1820
+ chart_of_account = 'ChartOfAccount'
1821
+ business_partners = 'BusinessPartners'
1822
+
1823
+ class DynamicSystemStringFields(StrEnum):
1824
+ form_id = 'FormID'
1825
+ item_id = 'ItemID'
1826
+ column_id = 'ColumnID'
1827
+ item_string = 'ItemString'
1828
+ is_bold = 'IsBold'
1829
+ is_italics = 'IsItalics'
1830
+
1831
+ class EBooksFields(StrEnum):
1832
+ abs_entry = 'AbsEntry'
1833
+ mark = 'MARK'
1834
+ cancel_mark = 'CancelMARK'
1835
+ uid = 'UID'
1836
+ issuer_vatid = 'IssuerVATID'
1837
+ cpvatid = 'CPVATID'
1838
+ series = 'Series'
1839
+ aa = 'AA'
1840
+ issue_date = 'IssueDate'
1841
+ invoice_type = 'InvoiceType'
1842
+ currency = 'Currency'
1843
+ total_net_value = 'TotalNetValue'
1844
+ total_vat_amount = 'TotalVatAmount'
1845
+ total_withheld_amount = 'TotalWithheldAmount'
1846
+ total_gross_value = 'TotalGrossValue'
1847
+ linked_doc_type = 'LinkedDocType'
1848
+ linked_doc_entry = 'LinkedDocEntry'
1849
+ is_negative_mark = 'IsNegativeMark'
1850
+ e_books_lines = 'EBooksLines'
1851
+
1852
+ class EWBTransporterFields(StrEnum):
1853
+ abs_entry = 'AbsEntry'
1854
+ transporter_code = 'TransporterCode'
1855
+ transporter_name = 'TransporterName'
1856
+ transporter_id = 'TransporterID'
1857
+ ewb_transporter_lines = 'EWBTransporter_Lines'
1858
+ business_partners = 'BusinessPartners'
1859
+
1860
+ class ElectronicFileFormatFields(StrEnum):
1861
+ format_id = 'FormatID'
1862
+ name = 'Name'
1863
+ description = 'Description'
1864
+ version = 'Version'
1865
+ schema_version = 'SchemaVersion'
1866
+ output_file_path = 'OutputFilePath'
1867
+ menu_name = 'MenuName'
1868
+ menu_path = 'MenuPath'
1869
+ import_determinations = 'ImportDeterminations'
1870
+ export_determinations = 'ExportDeterminations'
1871
+
1872
+ class EmailGroupFields(StrEnum):
1873
+ email_group_code = 'EmailGroupCode'
1874
+ email_group_name = 'EmailGroupName'
1875
+
1876
+ class EmployeeIDTypeFields(StrEnum):
1877
+ id_type = 'IDType'
1878
+ employees_info = 'EmployeesInfo'
1879
+
1880
+ class EmployeeImageFields(StrEnum):
1881
+ employee_no = 'EmployeeNo'
1882
+ picture = 'Picture'
1883
+
1884
+ class EmployeeInfoFields(StrEnum):
1885
+ employee_id = 'EmployeeID'
1886
+ last_name = 'LastName'
1887
+ first_name = 'FirstName'
1888
+ middle_name = 'MiddleName'
1889
+ gender = 'Gender'
1890
+ job_title = 'JobTitle'
1891
+ employee_type = 'EmployeeType'
1892
+ department = 'Department'
1893
+ branch = 'Branch'
1894
+ work_street = 'WorkStreet'
1895
+ work_block = 'WorkBlock'
1896
+ work_zip_code = 'WorkZipCode'
1897
+ work_city = 'WorkCity'
1898
+ work_county = 'WorkCounty'
1899
+ work_country_code = 'WorkCountryCode'
1900
+ work_state_code = 'WorkStateCode'
1901
+ manager = 'Manager'
1902
+ application_user_id = 'ApplicationUserID'
1903
+ sales_person_code = 'SalesPersonCode'
1904
+ office_phone = 'OfficePhone'
1905
+ office_extension = 'OfficeExtension'
1906
+ mobile_phone = 'MobilePhone'
1907
+ pager = 'Pager'
1908
+ home_phone = 'HomePhone'
1909
+ fax = 'Fax'
1910
+ e_mail = 'eMail'
1911
+ start_date = 'StartDate'
1912
+ status_code = 'StatusCode'
1913
+ salary = 'Salary'
1914
+ salary_unit = 'SalaryUnit'
1915
+ employee_costs = 'EmployeeCosts'
1916
+ employee_cost_unit = 'EmployeeCostUnit'
1917
+ termination_date = 'TerminationDate'
1918
+ tremination_reason = 'TreminationReason'
1919
+ bank_code = 'BankCode'
1920
+ bank_branch = 'BankBranch'
1921
+ bank_branch_num = 'BankBranchNum'
1922
+ bank_account = 'BankAccount'
1923
+ home_street = 'HomeStreet'
1924
+ home_block = 'HomeBlock'
1925
+ home_zip_code = 'HomeZipCode'
1926
+ home_city = 'HomeCity'
1927
+ home_county = 'HomeCounty'
1928
+ home_country = 'HomeCountry'
1929
+ home_state = 'HomeState'
1930
+ date_of_birth = 'DateOfBirth'
1931
+ country_of_birth = 'CountryOfBirth'
1932
+ martial_status = 'MartialStatus'
1933
+ num_of_children = 'NumOfChildren'
1934
+ id_number = 'IdNumber'
1935
+ citizenship_country_code = 'CitizenshipCountryCode'
1936
+ passport_number = 'PassportNumber'
1937
+ passport_expiration_date = 'PassportExpirationDate'
1938
+ picture = 'Picture'
1939
+ remarks = 'Remarks'
1940
+ salary_currency = 'SalaryCurrency'
1941
+ employee_costs_currency = 'EmployeeCostsCurrency'
1942
+ work_building_floor_room = 'WorkBuildingFloorRoom'
1943
+ home_building_floor_room = 'HomeBuildingFloorRoom'
1944
+ position = 'Position'
1945
+ attachment_entry = 'AttachmentEntry'
1946
+ cost_center_code = 'CostCenterCode'
1947
+ company_number = 'CompanyNumber'
1948
+ vacation_previous_year = 'VacationPreviousYear'
1949
+ vacation_current_year = 'VacationCurrentYear'
1950
+ municipality_key = 'MunicipalityKey'
1951
+ tax_class = 'TaxClass'
1952
+ income_tax_liability = 'IncomeTaxLiability'
1953
+ religion = 'Religion'
1954
+ partner_religion = 'PartnerReligion'
1955
+ exemption_amount = 'ExemptionAmount'
1956
+ exemption_unit = 'ExemptionUnit'
1957
+ exemption_currency = 'ExemptionCurrency'
1958
+ additional_amount = 'AdditionalAmount'
1959
+ additional_unit = 'AdditionalUnit'
1960
+ additional_currency = 'AdditionalCurrency'
1961
+ tax_office_name = 'TaxOfficeName'
1962
+ tax_office_number = 'TaxOfficeNumber'
1963
+ health_insurance_name = 'HealthInsuranceName'
1964
+ health_insurance_code = 'HealthInsuranceCode'
1965
+ health_insurance_type = 'HealthInsuranceType'
1966
+ social_insurance_number = 'SocialInsuranceNumber'
1967
+ profession_status = 'ProfessionStatus'
1968
+ education_status = 'EducationStatus'
1969
+ person_group = 'PersonGroup'
1970
+ job_title_code = 'JobTitleCode'
1971
+ bank_code_for_datev = 'BankCodeForDATEV'
1972
+ deviating_bank_account_owner = 'DeviatingBankAccountOwner'
1973
+ spouse_first_name = 'SpouseFirstName'
1974
+ spouse_surname = 'SpouseSurname'
1975
+ external_employee_number = 'ExternalEmployeeNumber'
1976
+ birth_place = 'BirthPlace'
1977
+ payment_method = 'PaymentMethod'
1978
+ std_code = 'STDCode'
1979
+ cpf = 'CPF'
1980
+ crc_number = 'CRCNumber'
1981
+ accountant_responsible = 'AccountantResponsible'
1982
+ legal_representative = 'LegalRepresentative'
1983
+ dirf_responsible = 'DIRFResponsible'
1984
+ crc_state = 'CRCState'
1985
+ active = 'Active'
1986
+ id_type = 'IDType'
1987
+ bplid = 'BPLID'
1988
+ passport_issue_date = 'PassportIssueDate'
1989
+ passport_issuer = 'PassportIssuer'
1990
+ qualification_code = 'QualificationCode'
1991
+ pr_web_access = 'PRWebAccess'
1992
+ previous_pr_web_access = 'PreviousPRWebAccess'
1993
+ work_street_number = 'WorkStreetNumber'
1994
+ home_street_number = 'HomeStreetNumber'
1995
+ linked_vendor = 'LinkedVendor'
1996
+ create_date = 'CreateDate'
1997
+ create_time = 'CreateTime'
1998
+ update_date = 'UpdateDate'
1999
+ update_time = 'UpdateTime'
2000
+ employee_code = 'EmployeeCode'
2001
+ a_ret_sefaz = 'ARetSEFAZ'
2002
+ gender_ex = 'GenderEx'
2003
+ employee_absence_info_lines = 'EmployeeAbsenceInfoLines'
2004
+ employee_education_info_lines = 'EmployeeEducationInfoLines'
2005
+ employee_reviews_info_lines = 'EmployeeReviewsInfoLines'
2006
+ employee_previous_empoyment_info_lines = 'EmployeePreviousEmpoymentInfoLines'
2007
+ employee_roles_info_lines = 'EmployeeRolesInfoLines'
2008
+ employee_savings_payment_info_lines = 'EmployeeSavingsPaymentInfoLines'
2009
+ employee_branch_assignment = 'EmployeeBranchAssignment'
2010
+ sales_opportunities = 'SalesOpportunities'
2011
+ warehouses = 'Warehouses'
2012
+ profit_centers = 'ProfitCenters'
2013
+ purchase_quotations = 'PurchaseQuotations'
2014
+ correction_invoice_reversal = 'CorrectionInvoiceReversal'
2015
+ customer_equipment_cards = 'CustomerEquipmentCards'
2016
+ correction_invoice = 'CorrectionInvoice'
2017
+ purchase_delivery_notes = 'PurchaseDeliveryNotes'
2018
+ correction_purchase_invoice = 'CorrectionPurchaseInvoice'
2019
+ inventory_gen_entries = 'InventoryGenEntries'
2020
+ service_calls = 'ServiceCalls'
2021
+ items = 'Items'
2022
+ employee_role_setup = 'EmployeeRoleSetup'
2023
+ department2 = 'Department2'
2024
+ branch2 = 'Branch2'
2025
+ country = 'Country'
2026
+ user = 'User'
2027
+ sales_person = 'SalesPerson'
2028
+ employee_status = 'EmployeeStatus'
2029
+ termination_reason = 'TerminationReason'
2030
+ bank = 'Bank'
2031
+ employee_position = 'EmployeePosition'
2032
+ profit_center = 'ProfitCenter'
2033
+ employee_id_type = 'EmployeeIDType'
2034
+ business_place = 'BusinessPlace'
2035
+ business_partner = 'BusinessPartner'
2036
+ gender2 = 'Gender2'
2037
+ orders = 'Orders'
2038
+ inventory_gen_exits = 'InventoryGenExits'
2039
+ drafts = 'Drafts'
2040
+ return_request = 'ReturnRequest'
2041
+ delivery_notes = 'DeliveryNotes'
2042
+ purchase_invoices = 'PurchaseInvoices'
2043
+ self_invoices = 'SelfInvoices'
2044
+ blanket_agreements = 'BlanketAgreements'
2045
+ invoices = 'Invoices'
2046
+ campaigns = 'Campaigns'
2047
+ credit_notes = 'CreditNotes'
2048
+ purchase_credit_notes = 'PurchaseCreditNotes'
2049
+ business_partners = 'BusinessPartners'
2050
+ down_payments = 'DownPayments'
2051
+ purchase_down_payments = 'PurchaseDownPayments'
2052
+ project_management_time_sheet = 'ProjectManagementTimeSheet'
2053
+ purchase_returns = 'PurchaseReturns'
2054
+ activities = 'Activities'
2055
+ purchase_orders = 'PurchaseOrders'
2056
+ self_credit_memos = 'SelfCreditMemos'
2057
+ quotations = 'Quotations'
2058
+ returns = 'Returns'
2059
+ project_managements = 'ProjectManagements'
2060
+ goods_return_request = 'GoodsReturnRequest'
2061
+ correction_purchase_invoice_reversal = 'CorrectionPurchaseInvoiceReversal'
2062
+ purchase_requests = 'PurchaseRequests'
2063
+
2064
+ class EmployeePositionFields(StrEnum):
2065
+ position_id = 'PositionID'
2066
+ name = 'Name'
2067
+ description = 'Description'
2068
+ employees_info = 'EmployeesInfo'
2069
+
2070
+ class EmployeeRoleSetupFields(StrEnum):
2071
+ type_id = 'TypeID'
2072
+ name = 'Name'
2073
+ description = 'Description'
2074
+ employees_info = 'EmployeesInfo'
2075
+
2076
+ class EmployeeStatusFields(StrEnum):
2077
+ status_id = 'StatusId'
2078
+ name = 'Name'
2079
+ description = 'Description'
2080
+ employees_info = 'EmployeesInfo'
2081
+
2082
+ class EmployeeTransferFields(StrEnum):
2083
+ transfer_id = 'TransferID'
2084
+ trans_start_date = 'TransStartDate'
2085
+ trans_start_time = 'TransStartTime'
2086
+ trans_end_date = 'TransEndDate'
2087
+ trans_end_time = 'TransEndTime'
2088
+ status = 'Status'
2089
+ comment = 'Comment'
2090
+ employee_transfer_details = 'EmployeeTransferDetails'
2091
+
2092
+ class EmploymentCategoryFields(StrEnum):
2093
+ code = 'Code'
2094
+ description = 'Description'
2095
+
2096
+ class EnhancedDiscountGroupFields(StrEnum):
2097
+ abs_entry = 'AbsEntry'
2098
+ type = 'Type'
2099
+ object_code = 'ObjectCode'
2100
+ discount_relations = 'DiscountRelations'
2101
+ active = 'Active'
2102
+ valid_from = 'ValidFrom'
2103
+ valid_to = 'ValidTo'
2104
+ discount_group_line_collection = 'DiscountGroupLineCollection'
2105
+
2106
+ class ExceptionalEventFields(StrEnum):
2107
+ code = 'Code'
2108
+ description = 'Description'
2109
+
2110
+ class ExpenseTypeDataFields(StrEnum):
2111
+ expense_type = 'ExpenseType'
2112
+ expense_name = 'ExpenseName'
2113
+ expense_account = 'ExpenseAccount'
2114
+ paid_by_company = 'PaidByCompany'
2115
+ vat_group = 'VatGroup'
2116
+ chart_of_account = 'ChartOfAccount'
2117
+ sales_tax_code = 'SalesTaxCode'
2118
+
2119
+ class ExportDeterminationFields(StrEnum):
2120
+ abs_entry = 'AbsEntry'
2121
+ code = 'Code'
2122
+ priority = 'Priority'
2123
+ business_partner = 'BusinessPartner'
2124
+ country = 'Country'
2125
+ series = 'Series'
2126
+ document_type = 'DocumentType'
2127
+ export_format = 'ExportFormat'
2128
+ path_file_name = 'PathFileName'
2129
+ document_sub_type = 'DocumentSubType'
2130
+ version_number = 'VersionNumber'
2131
+ business_partner2 = 'BusinessPartner2'
2132
+ country2 = 'Country2'
2133
+ electronic_file_format = 'ElectronicFileFormat'
2134
+
2135
+ class ExtendedTranslationFields(StrEnum):
2136
+ doc_entry = 'DocEntry'
2137
+ category = 'Category'
2138
+ id = 'ID'
2139
+ secondary_id = 'SecondaryID'
2140
+ source_language = 'SourceLanguage'
2141
+ update_date = 'UpdateDate'
2142
+ create_date = 'CreateDate'
2143
+ extended_translation_item_lines = 'ExtendedTranslation_ItemLines'
2144
+
2145
+ class FAAccountDeterminationFields(StrEnum):
2146
+ code = 'Code'
2147
+ description = 'Description'
2148
+ asset_balance_sheet_account = 'AssetBalanceSheetAccount'
2149
+ clearing_account_acquisition = 'ClearingAccountAcquisition'
2150
+ revaluation_reserve_account = 'RevaluationReserveAccount'
2151
+ revaluation_reserve_clearing = 'RevaluationReserveClearing'
2152
+ ordinary_depreciation = 'OrdinaryDepreciation'
2153
+ accumulated_ordinary_depr = 'AccumulatedOrdinaryDepr'
2154
+ unplanned_depreciation = 'UnplannedDepreciation'
2155
+ accumulated_unplanned_depr = 'AccumulatedUnplannedDepr'
2156
+ special_depreciation = 'SpecialDepreciation'
2157
+ accumulated_special_depr = 'AccumulatedSpecialDepr'
2158
+ revenuefrom_asset_sales_net = 'RevenuefromAssetSalesNet'
2159
+ retirementwith_expense_net = 'RetirementwithExpenseNet'
2160
+ retirementwith_revenue_net = 'RetirementwithRevenueNet'
2161
+ leavewith_expense_nbv_gross = 'LeavewithExpenseNBVGross'
2162
+ leavewith_revenue_nbv_gross = 'LeavewithRevenueNBVGross'
2163
+ revenue_accountfor_retirement = 'RevenueAccountforRetirement'
2164
+ revenue_clearing_account = 'RevenueClearingAccount'
2165
+ revaluation_account = 'RevaluationAccount'
2166
+ revaluation_loss_acct = 'RevaluationLossAcct'
2167
+ chart_of_account = 'ChartOfAccount'
2168
+
2169
+ class FactoringIndicatorFields(StrEnum):
2170
+ indicator_code = 'IndicatorCode'
2171
+ indicator_name = 'IndicatorName'
2172
+ purchase_quotations = 'PurchaseQuotations'
2173
+ correction_invoice_reversal = 'CorrectionInvoiceReversal'
2174
+ correction_invoice = 'CorrectionInvoice'
2175
+ purchase_delivery_notes = 'PurchaseDeliveryNotes'
2176
+ correction_purchase_invoice = 'CorrectionPurchaseInvoice'
2177
+ journal_entries = 'JournalEntries'
2178
+ inventory_gen_entries = 'InventoryGenEntries'
2179
+ orders = 'Orders'
2180
+ inventory_gen_exits = 'InventoryGenExits'
2181
+ drafts = 'Drafts'
2182
+ return_request = 'ReturnRequest'
2183
+ delivery_notes = 'DeliveryNotes'
2184
+ purchase_invoices = 'PurchaseInvoices'
2185
+ self_invoices = 'SelfInvoices'
2186
+ invoices = 'Invoices'
2187
+ credit_notes = 'CreditNotes'
2188
+ purchase_credit_notes = 'PurchaseCreditNotes'
2189
+ business_partners = 'BusinessPartners'
2190
+ down_payments = 'DownPayments'
2191
+ purchase_down_payments = 'PurchaseDownPayments'
2192
+ purchase_returns = 'PurchaseReturns'
2193
+ purchase_orders = 'PurchaseOrders'
2194
+ self_credit_memos = 'SelfCreditMemos'
2195
+ quotations = 'Quotations'
2196
+ returns = 'Returns'
2197
+ goods_return_request = 'GoodsReturnRequest'
2198
+ correction_purchase_invoice_reversal = 'CorrectionPurchaseInvoiceReversal'
2199
+ purchase_requests = 'PurchaseRequests'
2200
+
2201
+ class FinancialYearFields(StrEnum):
2202
+ abs_entry = 'AbsEntry'
2203
+ code = 'Code'
2204
+ description = 'Description'
2205
+ start_date = 'StartDate'
2206
+ end_date = 'EndDate'
2207
+ assess_year = 'AssessYear'
2208
+ tcs_accumulation_base = 'TCSAccumulationBase'
2209
+
2210
+ class FiscalPrinterFields(StrEnum):
2211
+ equipment_no = 'EquipmentNo'
2212
+ model = 'Model'
2213
+ manufacturer_serial_n = 'ManufacturerSerialN'
2214
+ register_no = 'RegisterNo'
2215
+ fiscal_document_model = 'FiscalDocumentModel'
2216
+ fiscal_printers_params = 'FiscalPrintersParams'
2217
+ nf_model = 'NFModel'
2218
+ pos_daily_summary = 'POSDailySummary'
2219
+
2220
+ class FormattedSearchFields(StrEnum):
2221
+ form_id = 'FormID'
2222
+ item_id = 'ItemID'
2223
+ column_id = 'ColumnID'
2224
+ action = 'Action'
2225
+ query_id = 'QueryID'
2226
+ index = 'Index'
2227
+ refresh = 'Refresh'
2228
+ field_id = 'FieldID'
2229
+ force_refresh = 'ForceRefresh'
2230
+ by_field = 'ByField'
2231
+ by_field_ex = 'ByFieldEx'
2232
+ user_valid_values = 'UserValidValues'
2233
+ field_i_ds = 'FieldIDs'
2234
+
2235
+ class Forms1099Fields(StrEnum):
2236
+ form_code = 'FormCode'
2237
+ form1099 = 'Form1099'
2238
+ boxes1099 = 'Boxes1099'
2239
+ purchase_quotations = 'PurchaseQuotations'
2240
+ correction_invoice_reversal = 'CorrectionInvoiceReversal'
2241
+ correction_invoice = 'CorrectionInvoice'
2242
+ purchase_delivery_notes = 'PurchaseDeliveryNotes'
2243
+ correction_purchase_invoice = 'CorrectionPurchaseInvoice'
2244
+ inventory_gen_entries = 'InventoryGenEntries'
2245
+ orders = 'Orders'
2246
+ inventory_gen_exits = 'InventoryGenExits'
2247
+ drafts = 'Drafts'
2248
+ return_request = 'ReturnRequest'
2249
+ delivery_notes = 'DeliveryNotes'
2250
+ purchase_invoices = 'PurchaseInvoices'
2251
+ self_invoices = 'SelfInvoices'
2252
+ invoices = 'Invoices'
2253
+ credit_notes = 'CreditNotes'
2254
+ purchase_credit_notes = 'PurchaseCreditNotes'
2255
+ business_partners = 'BusinessPartners'
2256
+ down_payments = 'DownPayments'
2257
+ purchase_down_payments = 'PurchaseDownPayments'
2258
+ purchase_returns = 'PurchaseReturns'
2259
+ purchase_orders = 'PurchaseOrders'
2260
+ self_credit_memos = 'SelfCreditMemos'
2261
+ quotations = 'Quotations'
2262
+ returns = 'Returns'
2263
+ goods_return_request = 'GoodsReturnRequest'
2264
+ correction_purchase_invoice_reversal = 'CorrectionPurchaseInvoiceReversal'
2265
+ purchase_requests = 'PurchaseRequests'
2266
+
2267
+ class GLAccountAdvancedRuleFields(StrEnum):
2268
+ absolute_entry = 'AbsoluteEntry'
2269
+ period = 'Period'
2270
+ beginningof_financial_year = 'BeginningofFinancialYear'
2271
+ financial_year = 'FinancialYear'
2272
+ period_name = 'PeriodName'
2273
+ sub_period_type = 'SubPeriodType'
2274
+ number_of_periods = 'NumberOfPeriods'
2275
+ from_posting_date = 'FromPostingDate'
2276
+ to_posting_date = 'ToPostingDate'
2277
+ from_due_date = 'FromDueDate'
2278
+ to_due_date = 'ToDueDate'
2279
+ from_document_date = 'FromDocumentDate'
2280
+ to_document_date = 'ToDocumentDate'
2281
+ item_code = 'ItemCode'
2282
+ item_group = 'ItemGroup'
2283
+ warehouse = 'Warehouse'
2284
+ bp_group = 'BPGroup'
2285
+ federal_tax_id = 'FederalTaxID'
2286
+ ship_to_country = 'ShipToCountry'
2287
+ ship_to_state = 'ShipToState'
2288
+ description = 'Description'
2289
+ code = 'Code'
2290
+ get_gl_account_by = 'GetGLAccountBy'
2291
+ from_date = 'FromDate'
2292
+ to_date = 'ToDate'
2293
+ expenses_account = 'ExpensesAccount'
2294
+ revenues_account = 'RevenuesAccount'
2295
+ exempt_income_acc = 'ExemptIncomeAcc'
2296
+ inventory_account = 'InventoryAccount'
2297
+ cost_account = 'CostAccount'
2298
+ transfer_account = 'TransferAccount'
2299
+ varience_account = 'VarienceAccount'
2300
+ price_difference_acc = 'PriceDifferenceAcc'
2301
+ negative_inventory_adjustment_account = 'NegativeInventoryAdjustmentAccount'
2302
+ decreasing_account = 'DecreasingAccount'
2303
+ increasing_account = 'IncreasingAccount'
2304
+ returning_account = 'ReturningAccount'
2305
+ eu_expenses_account = 'EUExpensesAccount'
2306
+ foreign_revenue_acc = 'ForeignRevenueAcc'
2307
+ foreign_expens_acc = 'ForeignExpensAcc'
2308
+ purchase_acct = 'PurchaseAcct'
2309
+ pa_return_acct = 'PAReturnAcct'
2310
+ purchase_offset_acct = 'PurchaseOffsetAcct'
2311
+ exchange_rate_differences_acct = 'ExchangeRateDifferencesAcct'
2312
+ goods_clearing_acct = 'GoodsClearingAcct'
2313
+ gl_decrease_acct = 'GLDecreaseAcct'
2314
+ gl_increase_acct = 'GLIncreaseAcct'
2315
+ wip_account = 'WipAccount'
2316
+ wip_variance_account = 'WipVarianceAccount'
2317
+ wip_offset_profit_and_loss_account = 'WipOffsetProfitAndLossAccount'
2318
+ inventory_offset_profit_and_loss_account = 'InventoryOffsetProfitAndLossAccount'
2319
+ stock_inflation_adjust_account = 'StockInflationAdjustAccount'
2320
+ stock_inflation_offset_account = 'StockInflationOffsetAccount'
2321
+ cost_inflation_account = 'CostInflationAccount'
2322
+ cost_inflation_offset_account = 'CostInflationOffsetAccount'
2323
+ expense_clearing_act = 'ExpenseClearingAct'
2324
+ expense_offsetting_account = 'ExpenseOffsettingAccount'
2325
+ stock_in_transit_account = 'StockInTransitAccount'
2326
+ shipped_goods_account = 'ShippedGoodsAccount'
2327
+ vat_in_revenue_account = 'VATInRevenueAccount'
2328
+ sales_credit_acc = 'SalesCreditAcc'
2329
+ purchase_credit_acc = 'PurchaseCreditAcc'
2330
+ exempted_credits = 'ExemptedCredits'
2331
+ sales_credit_foreign_acc = 'SalesCreditForeignAcc'
2332
+ foreign_purchase_credit_acc = 'ForeignPurchaseCreditAcc'
2333
+ sales_credit_eu_acc = 'SalesCreditEUAcc'
2334
+ eu_purchase_credit_acc = 'EUPurchaseCreditAcc'
2335
+ purchase_balance_account = 'PurchaseBalanceAccount'
2336
+ wh_incoming_cenvat_account = 'WHIncomingCenvatAccount'
2337
+ wh_outgoing_cenvat_account = 'WHOutgoingCenvatAccount'
2338
+ is_active = 'IsActive'
2339
+ business_partner_type = 'BusinessPartnerType'
2340
+ vat_group = 'VATGroup'
2341
+ bp_code = 'BPCode'
2342
+ usage = 'Usage'
2343
+ udf1 = 'UDF1'
2344
+ udf2 = 'UDF2'
2345
+ udf3 = 'UDF3'
2346
+ udf4 = 'UDF4'
2347
+ udf5 = 'UDF5'
2348
+ item = 'Item'
2349
+ item_groups = 'ItemGroups'
2350
+ warehouse2 = 'Warehouse2'
2351
+ business_partner_group = 'BusinessPartnerGroup'
2352
+ country = 'Country'
2353
+ chart_of_account = 'ChartOfAccount'
2354
+ business_partner = 'BusinessPartner'
2355
+ nota_fiscal_usage = 'NotaFiscalUsage'
2356
+
2357
+ class GenderFields(StrEnum):
2358
+ code = 'Code'
2359
+ description = 'Description'
2360
+ employees_info = 'EmployeesInfo'
2361
+
2362
+ class GovPayCodeFields(StrEnum):
2363
+ abs_id = 'AbsId'
2364
+ code = 'Code'
2365
+ descr = 'Descr'
2366
+ state_tax = 'StateTax'
2367
+ prdcity = 'Prdcity'
2368
+ gov_pay_code_authorities = 'GovPayCodeAuthorities'
2369
+ nf_tax_categories = 'NFTaxCategories'
2370
+
2371
+ class HolidayFields(StrEnum):
2372
+ holiday_code = 'HolidayCode'
2373
+ weekend_from = 'WeekendFrom'
2374
+ weekend_to = 'WeekendTO'
2375
+ valid_for_one_year_only = 'ValidForOneYearOnly'
2376
+ set_weekends_as_work_days = 'SetWeekendsAsWorkDays'
2377
+ week_no_rule = 'WeekNoRule'
2378
+ holiday_dates = 'HolidayDates'
2379
+
2380
+ class HouseBankAccountFields(StrEnum):
2381
+ bank_code = 'BankCode'
2382
+ acc_no = 'AccNo'
2383
+ branch = 'Branch'
2384
+ next_check_no = 'NextCheckNo'
2385
+ gl_account = 'GLAccount'
2386
+ dsc1_street_alias = 'DSC1_STREET_ALIAS'
2387
+ block = 'Block'
2388
+ zip_code = 'ZipCode'
2389
+ city = 'City'
2390
+ county = 'County'
2391
+ country = 'Country'
2392
+ state = 'State'
2393
+ bisr = 'BISR'
2394
+ control_key = 'ControlKey'
2395
+ user_no1 = 'UserNo1'
2396
+ user_no2 = 'UserNo2'
2397
+ user_no3 = 'UserNo3'
2398
+ user_no4 = 'UserNo4'
2399
+ iban = 'IBAN'
2400
+ debtof_discounted_billof_exc = 'DebtofDiscountedBillofExc'
2401
+ tolerance_days = 'ToleranceDays'
2402
+ min_amountof_billof_exchang = 'MinAmountofBillofExchang'
2403
+ max_amountof_billof_exchan = 'MaxAmountofBillofExchan'
2404
+ discount_limit = 'DiscountLimit'
2405
+ days_in_advance = 'DaysInAdvance'
2406
+ bankon_collection = 'BankonCollection'
2407
+ bankon_discounted = 'BankonDiscounted'
2408
+ gl_interim_account = 'GLInterimAccount'
2409
+ absolute_entry = 'AbsoluteEntry'
2410
+ bank_key = 'BankKey'
2411
+ lock_checks_printing = 'LockChecksPrinting'
2412
+ template_name = 'TemplateName'
2413
+ maximum_lines = 'MaximumLines'
2414
+ print_on = 'PrintOn'
2415
+ customer_id_number = 'CustomerIdNumber'
2416
+ isr_biller_id = 'ISRBillerID'
2417
+ isr_type = 'ISRType'
2418
+ account_check_digit = 'AccountCheckDigit'
2419
+ our_number = 'OurNumber'
2420
+ agreement_number = 'AgreementNumber'
2421
+ address_type = 'AddressType'
2422
+ street_no = 'StreetNo'
2423
+ building = 'Building'
2424
+ incoming_payment_series = 'IncomingPaymentSeries'
2425
+ outgoing_payment_series = 'OutgoingPaymentSeries'
2426
+ journal_entry_series = 'JournalEntrySeries'
2427
+ import_file_name = 'ImportFileName'
2428
+ account_name = 'AccountName'
2429
+ bic_swift_code = 'BICSwiftCode'
2430
+ fine_account = 'FineAccount'
2431
+ interest_account = 'InterestAccount'
2432
+ discount_account = 'DiscountAccount'
2433
+ service_fee_account = 'ServiceFeeAccount'
2434
+ iof_tax_account = 'IOFTaxAccount'
2435
+ other_expenses_account = 'OtherExpensesAccount'
2436
+ other_incomes_account = 'OtherIncomesAccount'
2437
+ retorno_file_name = 'RetornoFileName'
2438
+ branch_check_digit = 'BranchCheckDigit'
2439
+ collection_code = 'CollectionCode'
2440
+ file_seq_next_number = 'FileSeqNextNumber'
2441
+ no_validation_for_starting_ending_bal = 'NoValidationForStartingEndingBal'
2442
+ e_check = 'ECheck'
2443
+ wizard_payment_methods = 'WizardPaymentMethods'
2444
+ bank_statements = 'BankStatements'
2445
+ chart_of_account = 'ChartOfAccount'
2446
+ country2 = 'Country2'
2447
+ bank = 'Bank'
2448
+
2449
+ class IdentificationCodeFields(StrEnum):
2450
+ abs_entry = 'AbsEntry'
2451
+ codelist = 'Codelist'
2452
+ code = 'Code'
2453
+ description = 'Description'
2454
+ schema_code = 'SchemaCode'
2455
+ schema_desc = 'SchemaDesc'
2456
+ items = 'Items'
2457
+
2458
+ class ImportDeterminationFields(StrEnum):
2459
+ abs_entry = 'AbsEntry'
2460
+ code = 'Code'
2461
+ line_number = 'LineNumber'
2462
+ object_type = 'ObjectType'
2463
+ object_type_x_path = 'ObjectTypeXPath'
2464
+ field_type = 'FieldType'
2465
+ field_type_x_path = 'FieldTypeXPath'
2466
+ import_format = 'ImportFormat'
2467
+ default_digital_series = 'DefaultDigitalSeries'
2468
+ version_number = 'VersionNumber'
2469
+ electronic_file_format = 'ElectronicFileFormat'
2470
+
2471
+ class IndiaHsnFields(StrEnum):
2472
+ abs_entry = 'AbsEntry'
2473
+ chapter = 'Chapter'
2474
+ heading = 'Heading'
2475
+ sub_heading = 'SubHeading'
2476
+ description = 'Description'
2477
+ chapter_id = 'ChapterID'
2478
+ items = 'Items'
2479
+
2480
+ class IndiaSacCodeFields(StrEnum):
2481
+ abs_entry = 'AbsEntry'
2482
+ service_code = 'ServiceCode'
2483
+ service_name = 'ServiceName'
2484
+ items = 'Items'
2485
+
2486
+ class IndustryFields(StrEnum):
2487
+ industry_description = 'IndustryDescription'
2488
+ industry_name = 'IndustryName'
2489
+ industry_code = 'IndustryCode'
2490
+ sales_opportunities = 'SalesOpportunities'
2491
+ business_partners = 'BusinessPartners'
2492
+ project_managements = 'ProjectManagements'
2493
+
2494
+ class IntegrationPackageConfigureFields(StrEnum):
2495
+ abs_entry = 'AbsEntry'
2496
+ code = 'Code'
2497
+ name = 'Name'
2498
+ is_enable = 'IsEnable'
2499
+
2500
+ class InternalReconciliationFields(StrEnum):
2501
+ recon_num = 'ReconNum'
2502
+ recon_date = 'ReconDate'
2503
+ card_or_account = 'CardOrAccount'
2504
+ recon_type = 'ReconType'
2505
+ total = 'Total'
2506
+ cancel_abs = 'CancelAbs'
2507
+ internal_reconciliation_rows = 'InternalReconciliationRows'
2508
+ electronic_protocols = 'ElectronicProtocols'
2509
+
2510
+ class IntrastatConfigurationFields(StrEnum):
2511
+ abs_entry = 'AbsEntry'
2512
+ conf_type = 'ConfType'
2513
+ code = 'Code'
2514
+ descr = 'Descr'
2515
+ prcst_val = 'PrcstVal'
2516
+ supp_unit = 'SuppUnit'
2517
+ export = 'Export'
2518
+ import_ = 'Import'
2519
+ stat_code = 'StatCode'
2520
+ date_from = 'DateFrom'
2521
+ date_to = 'DateTo'
2522
+ country = 'Country'
2523
+ conf_id = 'ConfID'
2524
+ triang_deal = 'TriangDeal'
2525
+
2526
+ class InventoryCyclesFields(StrEnum):
2527
+ cycle_code = 'CycleCode'
2528
+ cycle_name = 'CycleName'
2529
+ frequency = 'Frequency'
2530
+ day = 'Day'
2531
+ hour = 'Hour'
2532
+ next_counting_date = 'NextCountingDate'
2533
+ interval = 'Interval'
2534
+ sunday = 'Sunday'
2535
+ monday = 'Monday'
2536
+ tuesday = 'Tuesday'
2537
+ wednesday = 'Wednesday'
2538
+ thursday = 'Thursday'
2539
+ friday = 'Friday'
2540
+ saturday = 'Saturday'
2541
+ repeat_option = 'RepeatOption'
2542
+ recurrence_sequence_specifier = 'RecurrenceSequenceSpecifier'
2543
+ recurrence_day_in_month = 'RecurrenceDayInMonth'
2544
+ recurrence_month = 'RecurrenceMonth'
2545
+ recurrence_day_of_week = 'RecurrenceDayOfWeek'
2546
+ end_type = 'endType'
2547
+ max_occurrence = 'MaxOccurrence'
2548
+ series_end_date = 'SeriesEndDate'
2549
+ item_groups = 'ItemGroups'
2550
+ items = 'Items'
2551
+
2552
+ class KPIFields(StrEnum):
2553
+ kpi_code = 'KPICode'
2554
+ kpi_name = 'KPIName'
2555
+ kpi_type = 'KPIType'
2556
+ number_of_columns = 'NumberOfColumns'
2557
+ kpi_item_lines = 'KPI_ItemLines'
2558
+
2559
+ class KnowledgeBaseSolutionFields(StrEnum):
2560
+ item_code = 'ItemCode'
2561
+ status = 'Status'
2562
+ owner = 'Owner'
2563
+ created_by = 'CreatedBy'
2564
+ creation_date = 'CreationDate'
2565
+ last_updated_by = 'LastUpdatedBy'
2566
+ last_update_date = 'LastUpdateDate'
2567
+ solution = 'Solution'
2568
+ symptom = 'Symptom'
2569
+ cause = 'Cause'
2570
+ description = 'Description'
2571
+ solution_code = 'SolutionCode'
2572
+ attachment_entry = 'AttachmentEntry'
2573
+ item = 'Item'
2574
+ service_call_solution_status = 'ServiceCallSolutionStatus'
2575
+ user = 'User'
2576
+
2577
+ class LegalDataFields(StrEnum):
2578
+ doc_entry = 'DocEntry'
2579
+ source_object_type = 'SourceObjectType'
2580
+ source_object_entry = 'SourceObjectEntry'
2581
+ date_of_printing = 'DateOfPrinting'
2582
+ time_of_printing = 'TimeOfPrinting'
2583
+ printer_brand = 'PrinterBrand'
2584
+ printer_type = 'PrinterType'
2585
+ printer_model = 'PrinterModel'
2586
+ printer_firmware_version = 'PrinterFirmwareVersion'
2587
+ printer_dll_version = 'PrinterDllVersion'
2588
+ fiscal_series = 'FiscalSeries'
2589
+ fiscal_number = 'FiscalNumber'
2590
+ document_number = 'DocumentNumber'
2591
+ fiscal_user_id = 'FiscalUserID'
2592
+ legal_data_detail_collection = 'LegalDataDetailCollection'
2593
+ user = 'User'
2594
+
2595
+ class LengthMeasureFields(StrEnum):
2596
+ unit_code = 'UnitCode'
2597
+ unit_display = 'UnitDisplay'
2598
+ unit_name = 'UnitName'
2599
+ unit_codefor_quantity_display = 'UnitCodeforQuantityDisplay'
2600
+ unit_lengthinmm = 'UnitLengthinmm'
2601
+
2602
+ class LocalEraFields(StrEnum):
2603
+ era_name = 'EraName'
2604
+ start_date = 'StartDate'
2605
+ code = 'Code'
2606
+
2607
+ class ManufacturerFields(StrEnum):
2608
+ code = 'Code'
2609
+ manufacturer_name = 'ManufacturerName'
2610
+ items = 'Items'
2611
+
2612
+ class MaterialGroupFields(StrEnum):
2613
+ abs_entry = 'AbsEntry'
2614
+ material_group_code = 'MaterialGroupCode'
2615
+ description = 'Description'
2616
+ items = 'Items'
2617
+
2618
+ class MessageFields(StrEnum):
2619
+ code = 'Code'
2620
+ user = 'User'
2621
+ priority = 'Priority'
2622
+ subject = 'Subject'
2623
+ text = 'Text'
2624
+ attachment = 'Attachment'
2625
+ message_data_columns = 'MessageDataColumns'
2626
+ recipient_collection = 'RecipientCollection'
2627
+
2628
+ class MobileAddOnSettingFields(StrEnum):
2629
+ code = 'Code'
2630
+ description = 'Description'
2631
+ url = 'Url'
2632
+ type = 'Type'
2633
+ provider = 'Provider'
2634
+ view_style = 'ViewStyle'
2635
+ logon_method = 'LogonMethod'
2636
+ enable = 'Enable'
2637
+ b1_mobile_app = 'B1MobileApp'
2638
+ b1_sales_app = 'B1SalesApp'
2639
+ b1_service_app = 'B1ServiceApp'
2640
+
2641
+ class MultiLanguageTranslationFields(StrEnum):
2642
+ numerator = 'Numerator'
2643
+ table_name = 'TableName'
2644
+ field_alias = 'FieldAlias'
2645
+ primary_keyofobject = 'PrimaryKeyofobject'
2646
+ translations_in_user_languages = 'TranslationsInUserLanguages'
2647
+
2648
+ class NCMCodeSetupFields(StrEnum):
2649
+ abs_entry = 'AbsEntry'
2650
+ ncm_code = 'NCMCode'
2651
+ description = 'Description'
2652
+ group_code = 'GroupCode'
2653
+ items = 'Items'
2654
+ dnf_code_setup = 'DNFCodeSetup'
2655
+
2656
+ class NFModelFields(StrEnum):
2657
+ abs_entry = 'AbsEntry'
2658
+ nfm_name = 'NFMName'
2659
+ nfm_description = 'NFMDescription'
2660
+ nfm_code = 'NFMCode'
2661
+ purchase_quotations = 'PurchaseQuotations'
2662
+ correction_invoice_reversal = 'CorrectionInvoiceReversal'
2663
+ correction_invoice = 'CorrectionInvoice'
2664
+ purchase_delivery_notes = 'PurchaseDeliveryNotes'
2665
+ correction_purchase_invoice = 'CorrectionPurchaseInvoice'
2666
+ inventory_gen_entries = 'InventoryGenEntries'
2667
+ orders = 'Orders'
2668
+ fiscal_printer = 'FiscalPrinter'
2669
+ inventory_gen_exits = 'InventoryGenExits'
2670
+ drafts = 'Drafts'
2671
+ return_request = 'ReturnRequest'
2672
+ delivery_notes = 'DeliveryNotes'
2673
+ purchase_invoices = 'PurchaseInvoices'
2674
+ self_invoices = 'SelfInvoices'
2675
+ invoices = 'Invoices'
2676
+ credit_notes = 'CreditNotes'
2677
+ purchase_credit_notes = 'PurchaseCreditNotes'
2678
+ down_payments = 'DownPayments'
2679
+ purchase_down_payments = 'PurchaseDownPayments'
2680
+ purchase_returns = 'PurchaseReturns'
2681
+ purchase_orders = 'PurchaseOrders'
2682
+ self_credit_memos = 'SelfCreditMemos'
2683
+ quotations = 'Quotations'
2684
+ returns = 'Returns'
2685
+ goods_return_request = 'GoodsReturnRequest'
2686
+ correction_purchase_invoice_reversal = 'CorrectionPurchaseInvoiceReversal'
2687
+ purchase_requests = 'PurchaseRequests'
2688
+
2689
+ class NFTaxCategoryFields(StrEnum):
2690
+ abs_id = 'AbsId'
2691
+ code = 'Code'
2692
+ locked = 'Locked'
2693
+ gpc_id = 'GPCId'
2694
+ gov_pay_code = 'GovPayCode'
2695
+ nota_fiscal_cst = 'NotaFiscalCST'
2696
+
2697
+ class NatureOfAssesseeFields(StrEnum):
2698
+ abs_entry = 'AbsEntry'
2699
+ code = 'Code'
2700
+ description = 'Description'
2701
+ assessee_type = 'AssesseeType'
2702
+ withholding_tax_codes = 'WithholdingTaxCodes'
2703
+
2704
+ class NotaFiscalCFOPFields(StrEnum):
2705
+ id = 'ID'
2706
+ description = 'Description'
2707
+ code = 'Code'
2708
+ application = 'Application'
2709
+ nota_fiscal_usage = 'NotaFiscalUsage'
2710
+
2711
+ class NotaFiscalCSTFields(StrEnum):
2712
+ id = 'ID'
2713
+ code = 'Code'
2714
+ situation = 'Situation'
2715
+ tax_category = 'TaxCategory'
2716
+ cst_code_outgoing = 'CSTCodeOutgoing'
2717
+ description_outgoing = 'DescriptionOutgoing'
2718
+ withholding_tax_codes = 'WithholdingTaxCodes'
2719
+ nf_tax_category = 'NFTaxCategory'
2720
+
2721
+ class NotaFiscalUsageFields(StrEnum):
2722
+ id = 'ID'
2723
+ usage = 'Usage'
2724
+ incoming_in_state_cfop_code = 'IncomingInStateCFOPCode'
2725
+ incoming_out_state_cfop_code = 'IncomingOutStateCFOPCode'
2726
+ incoming_import_cfop_code = 'IncomingImportCFOPCode'
2727
+ outgoing_in_state_cfop_code = 'OutgoingInStateCFOPCode'
2728
+ outgoing_out_state_cfop_code = 'OutgoingOutStateCFOPCode'
2729
+ outgoing_export_cfop_code = 'OutgoingExportCFOPCode'
2730
+ description = 'Description'
2731
+ gl_account_advanced_rules = 'GLAccountAdvancedRules'
2732
+ depreciation_areas = 'DepreciationAreas'
2733
+ nota_fiscal_cfop = 'NotaFiscalCFOP'
2734
+
2735
+ class OccurenceCodeFields(StrEnum):
2736
+ abs_entry = 'AbsEntry'
2737
+ code = 'Code'
2738
+ description = 'Description'
2739
+ note = 'Note'
2740
+ requested_boe_status = 'RequestedBoeStatus'
2741
+ is_movement = 'IsMovement'
2742
+
2743
+ class PM_ProjectDocumentDataFields(StrEnum):
2744
+ abs_entry = 'AbsEntry'
2745
+ owner = 'Owner'
2746
+ project_name = 'ProjectName'
2747
+ start_date = 'StartDate'
2748
+ finished_percent = 'FinishedPercent'
2749
+ doc_num = 'DocNum'
2750
+ series = 'Series'
2751
+ project_type = 'ProjectType'
2752
+ business_partner = 'BusinessPartner'
2753
+ business_partner_name = 'BusinessPartnerName'
2754
+ contact_person = 'ContactPerson'
2755
+ territory = 'Territory'
2756
+ sales_employee = 'SalesEmployee'
2757
+ allow_subprojects = 'AllowSubprojects'
2758
+ project_status = 'ProjectStatus'
2759
+ due_date = 'DueDate'
2760
+ closing_date = 'ClosingDate'
2761
+ financial_project = 'FinancialProject'
2762
+ risk_level = 'RiskLevel'
2763
+ industry = 'Industry'
2764
+ reason = 'Reason'
2765
+ attachment_entry = 'AttachmentEntry'
2766
+ pm_stages_collection = 'PM_StagesCollection'
2767
+ pm_open_issues_collection = 'PM_OpenIssuesCollection'
2768
+ pm_documents_collection = 'PM_DocumentsCollection'
2769
+ pm_activities_collection = 'PM_ActivitiesCollection'
2770
+ pm_work_orders_collection = 'PM_WorkOrdersCollection'
2771
+ pm_summary_data = 'PM_SummaryData'
2772
+ pm_doc_attachements = 'PM_DocAttachements'
2773
+ pm_stage_attachements = 'PM_StageAttachements'
2774
+ employee_info = 'EmployeeInfo'
2775
+ business_partner2 = 'BusinessPartner2'
2776
+ territory2 = 'Territory2'
2777
+ sales_person = 'SalesPerson'
2778
+ project = 'Project'
2779
+ industry2 = 'Industry2'
2780
+ attachments2 = 'Attachments2'
2781
+
2782
+ class PM_TimeSheetDataFields(StrEnum):
2783
+ abs_entry = 'AbsEntry'
2784
+ doc_number = 'DocNumber'
2785
+ time_sheet_type = 'TimeSheetType'
2786
+ user_id = 'UserID'
2787
+ last_name = 'LastName'
2788
+ first_name = 'FirstName'
2789
+ department = 'Department'
2790
+ owner_code = 'OwnerCode'
2791
+ date_from = 'DateFrom'
2792
+ date_to = 'DateTo'
2793
+ sap_passport = 'SAPPassport'
2794
+ attachment_entry = 'AttachmentEntry'
2795
+ user_code = 'UserCode'
2796
+ pm_time_sheet_line_data_collection = 'PM_TimeSheetLineDataCollection'
2797
+ employee_info = 'EmployeeInfo'
2798
+ attachments2 = 'Attachments2'
2799
+
2800
+ class POSDailySummaryFields(StrEnum):
2801
+ abs_entry = 'AbsEntry'
2802
+ date = 'Date'
2803
+ equipment_no = 'EquipmentNo'
2804
+ counter_position = 'CounterPosition'
2805
+ reset_counter_position = 'ResetCounterPosition'
2806
+ operation_counter = 'OperationCounter'
2807
+ total = 'Total'
2808
+ gross_sales = 'GrossSales'
2809
+ pis_total = 'PISTotal'
2810
+ cofins_total = 'COFINSTotal'
2811
+ pos_totalizer_collection = 'POSTotalizerCollection'
2812
+ purchase_quotations = 'PurchaseQuotations'
2813
+ correction_invoice_reversal = 'CorrectionInvoiceReversal'
2814
+ correction_invoice = 'CorrectionInvoice'
2815
+ purchase_delivery_notes = 'PurchaseDeliveryNotes'
2816
+ correction_purchase_invoice = 'CorrectionPurchaseInvoice'
2817
+ inventory_gen_entries = 'InventoryGenEntries'
2818
+ orders = 'Orders'
2819
+ inventory_gen_exits = 'InventoryGenExits'
2820
+ drafts = 'Drafts'
2821
+ return_request = 'ReturnRequest'
2822
+ delivery_notes = 'DeliveryNotes'
2823
+ purchase_invoices = 'PurchaseInvoices'
2824
+ self_invoices = 'SelfInvoices'
2825
+ invoices = 'Invoices'
2826
+ credit_notes = 'CreditNotes'
2827
+ purchase_credit_notes = 'PurchaseCreditNotes'
2828
+ down_payments = 'DownPayments'
2829
+ purchase_down_payments = 'PurchaseDownPayments'
2830
+ purchase_returns = 'PurchaseReturns'
2831
+ purchase_orders = 'PurchaseOrders'
2832
+ self_credit_memos = 'SelfCreditMemos'
2833
+ quotations = 'Quotations'
2834
+ returns = 'Returns'
2835
+ fiscal_printer = 'FiscalPrinter'
2836
+ goods_return_request = 'GoodsReturnRequest'
2837
+ correction_purchase_invoice_reversal = 'CorrectionPurchaseInvoiceReversal'
2838
+ purchase_requests = 'PurchaseRequests'
2839
+
2840
+ class PackagesTypeFields(StrEnum):
2841
+ type = 'Type'
2842
+ code = 'Code'
2843
+ length1 = 'Length1'
2844
+ length1_unit = 'Length1Unit'
2845
+ length2 = 'Length2'
2846
+ length2_unit = 'Length2Unit'
2847
+ width1 = 'Width1'
2848
+ width1_unit = 'Width1Unit'
2849
+ width2 = 'Width2'
2850
+ width2_unit = 'Width2Unit'
2851
+ height1 = 'Height1'
2852
+ height1_unit = 'Height1Unit'
2853
+ height2 = 'Height2'
2854
+ height2_unit = 'Height2Unit'
2855
+ volume = 'Volume'
2856
+ volume_unit = 'VolumeUnit'
2857
+ weight1 = 'Weight1'
2858
+ weight1_unit = 'Weight1Unit'
2859
+ weight2 = 'Weight2'
2860
+ weight2_unit = 'Weight2Unit'
2861
+
2862
+ class PartnersSetupFields(StrEnum):
2863
+ partner_id = 'PartnerID'
2864
+ name = 'Name'
2865
+ default_relationship = 'DefaultRelationship'
2866
+ related_bp = 'RelatedBP'
2867
+ details = 'Details'
2868
+ relationship = 'Relationship'
2869
+ business_partner = 'BusinessPartner'
2870
+
2871
+ class PaymentFields(StrEnum):
2872
+ doc_num = 'DocNum'
2873
+ doc_type = 'DocType'
2874
+ hand_written = 'HandWritten'
2875
+ printed = 'Printed'
2876
+ doc_date = 'DocDate'
2877
+ card_code = 'CardCode'
2878
+ card_name = 'CardName'
2879
+ address = 'Address'
2880
+ cash_account = 'CashAccount'
2881
+ doc_currency = 'DocCurrency'
2882
+ cash_sum = 'CashSum'
2883
+ check_account = 'CheckAccount'
2884
+ transfer_account = 'TransferAccount'
2885
+ transfer_sum = 'TransferSum'
2886
+ transfer_date = 'TransferDate'
2887
+ transfer_reference = 'TransferReference'
2888
+ local_currency = 'LocalCurrency'
2889
+ doc_rate = 'DocRate'
2890
+ reference1 = 'Reference1'
2891
+ reference2 = 'Reference2'
2892
+ counter_reference = 'CounterReference'
2893
+ payment_reference_no = 'PaymentReferenceNo'
2894
+ remarks = 'Remarks'
2895
+ journal_remarks = 'JournalRemarks'
2896
+ split_transaction = 'SplitTransaction'
2897
+ contact_person_code = 'ContactPersonCode'
2898
+ apply_vat = 'ApplyVAT'
2899
+ tax_date = 'TaxDate'
2900
+ series = 'Series'
2901
+ bank_code = 'BankCode'
2902
+ bank_account = 'BankAccount'
2903
+ discount_percent = 'DiscountPercent'
2904
+ project_code = 'ProjectCode'
2905
+ currency_is_local = 'CurrencyIsLocal'
2906
+ deduction_percent = 'DeductionPercent'
2907
+ deduction_sum = 'DeductionSum'
2908
+ cash_sum_fc = 'CashSumFC'
2909
+ cash_sum_sys = 'CashSumSys'
2910
+ boe_account = 'BoeAccount'
2911
+ bill_of_exchange_amount = 'BillOfExchangeAmount'
2912
+ billof_exchange_status = 'BillofExchangeStatus'
2913
+ bill_of_exchange_amount_fc = 'BillOfExchangeAmountFC'
2914
+ bill_of_exchange_amount_sc = 'BillOfExchangeAmountSC'
2915
+ bill_of_exchange_agent = 'BillOfExchangeAgent'
2916
+ wt_code = 'WTCode'
2917
+ wt_amount = 'WTAmount'
2918
+ wt_amount_fc = 'WTAmountFC'
2919
+ wt_amount_sc = 'WTAmountSC'
2920
+ wt_account = 'WTAccount'
2921
+ wt_taxable_amount = 'WTTaxableAmount'
2922
+ proforma = 'Proforma'
2923
+ pay_to_bank_code = 'PayToBankCode'
2924
+ pay_to_bank_branch = 'PayToBankBranch'
2925
+ pay_to_bank_account_no = 'PayToBankAccountNo'
2926
+ pay_to_code = 'PayToCode'
2927
+ pay_to_bank_country = 'PayToBankCountry'
2928
+ is_pay_to_bank = 'IsPayToBank'
2929
+ doc_entry = 'DocEntry'
2930
+ payment_priority = 'PaymentPriority'
2931
+ tax_group = 'TaxGroup'
2932
+ bank_charge_amount = 'BankChargeAmount'
2933
+ bank_charge_amount_in_fc = 'BankChargeAmountInFC'
2934
+ bank_charge_amount_in_sc = 'BankChargeAmountInSC'
2935
+ under_overpaymentdifference = 'UnderOverpaymentdifference'
2936
+ under_overpaymentdiff_sc = 'UnderOverpaymentdiffSC'
2937
+ wt_base_sum = 'WtBaseSum'
2938
+ wt_base_sum_fc = 'WtBaseSumFC'
2939
+ wt_base_sum_sc = 'WtBaseSumSC'
2940
+ vat_date = 'VatDate'
2941
+ transaction_code = 'TransactionCode'
2942
+ payment_type = 'PaymentType'
2943
+ transfer_real_amount = 'TransferRealAmount'
2944
+ doc_object_code = 'DocObjectCode'
2945
+ doc_typte = 'DocTypte'
2946
+ due_date = 'DueDate'
2947
+ location_code = 'LocationCode'
2948
+ cancelled = 'Cancelled'
2949
+ cancel_status = 'CancelStatus'
2950
+ control_account = 'ControlAccount'
2951
+ under_overpaymentdiff_fc = 'UnderOverpaymentdiffFC'
2952
+ authorization_status = 'AuthorizationStatus'
2953
+ bplid = 'BPLID'
2954
+ bpl_name = 'BPLName'
2955
+ vat_reg_num = 'VATRegNum'
2956
+ blanket_agreement = 'BlanketAgreement'
2957
+ payment_by_wt_certif = 'PaymentByWTCertif'
2958
+ cig = 'Cig'
2959
+ cup = 'Cup'
2960
+ attachment_entry = 'AttachmentEntry'
2961
+ signature_input_message = 'SignatureInputMessage'
2962
+ signature_digest = 'SignatureDigest'
2963
+ certification_number = 'CertificationNumber'
2964
+ private_key_version = 'PrivateKeyVersion'
2965
+ e_doc_export_format = 'EDocExportFormat'
2966
+ elec_comm_status = 'ElecCommStatus'
2967
+ elec_comm_message = 'ElecCommMessage'
2968
+ split_vendor_credit_row = 'SplitVendorCreditRow'
2969
+ digital_payments = 'DigitalPayments'
2970
+ allocation_number_il = 'AllocationNumberIL'
2971
+ payment_checks = 'PaymentChecks'
2972
+ payment_invoices = 'PaymentInvoices'
2973
+ payment_credit_cards = 'PaymentCreditCards'
2974
+ payment_accounts = 'PaymentAccounts'
2975
+ payment_document_references_collection = 'PaymentDocumentReferencesCollection'
2976
+ bill_of_exchange = 'BillOfExchange'
2977
+ withholding_tax_certificates_collection = 'WithholdingTaxCertificatesCollection'
2978
+ electronic_protocols = 'ElectronicProtocols'
2979
+ cash_flow_assignments = 'CashFlowAssignments'
2980
+ payments_approval_requests = 'Payments_ApprovalRequests'
2981
+ withholding_tax_data_wtx_collection = 'WithholdingTaxDataWTXCollection'
2982
+ business_partner = 'BusinessPartner'
2983
+ chart_of_account = 'ChartOfAccount'
2984
+ currency = 'Currency'
2985
+ project = 'Project'
2986
+ withholding_tax_code = 'WithholdingTaxCode'
2987
+ country = 'Country'
2988
+ vat_group = 'VatGroup'
2989
+ transaction_code2 = 'TransactionCode2'
2990
+ warehouse_location = 'WarehouseLocation'
2991
+ business_place = 'BusinessPlace'
2992
+ blanket_agreement2 = 'BlanketAgreement2'
2993
+ cig_code = 'CIGCode'
2994
+ cup_code = 'CUPCode'
2995
+ attachments2 = 'Attachments2'
2996
+
2997
+ class PaymentBlockFields(StrEnum):
2998
+ abs_entry = 'AbsEntry'
2999
+ payment_block_code = 'PaymentBlockCode'
3000
+ purchase_quotations = 'PurchaseQuotations'
3001
+ correction_invoice_reversal = 'CorrectionInvoiceReversal'
3002
+ correction_invoice = 'CorrectionInvoice'
3003
+ purchase_delivery_notes = 'PurchaseDeliveryNotes'
3004
+ correction_purchase_invoice = 'CorrectionPurchaseInvoice'
3005
+ inventory_gen_entries = 'InventoryGenEntries'
3006
+ orders = 'Orders'
3007
+ inventory_gen_exits = 'InventoryGenExits'
3008
+ drafts = 'Drafts'
3009
+ return_request = 'ReturnRequest'
3010
+ delivery_notes = 'DeliveryNotes'
3011
+ purchase_invoices = 'PurchaseInvoices'
3012
+ self_invoices = 'SelfInvoices'
3013
+ invoices = 'Invoices'
3014
+ credit_notes = 'CreditNotes'
3015
+ purchase_credit_notes = 'PurchaseCreditNotes'
3016
+ business_partners = 'BusinessPartners'
3017
+ down_payments = 'DownPayments'
3018
+ purchase_down_payments = 'PurchaseDownPayments'
3019
+ purchase_returns = 'PurchaseReturns'
3020
+ purchase_orders = 'PurchaseOrders'
3021
+ self_credit_memos = 'SelfCreditMemos'
3022
+ quotations = 'Quotations'
3023
+ returns = 'Returns'
3024
+ goods_return_request = 'GoodsReturnRequest'
3025
+ correction_purchase_invoice_reversal = 'CorrectionPurchaseInvoiceReversal'
3026
+ purchase_requests = 'PurchaseRequests'
3027
+
3028
+ class PaymentReasonCodeFields(StrEnum):
3029
+ code = 'Code'
3030
+
3031
+ class PaymentRunExportFields(StrEnum):
3032
+ absolute_entry = 'AbsoluteEntry'
3033
+ run_date = 'RunDate'
3034
+ vendor_num = 'VendorNum'
3035
+ customer_num = 'CustomerNum'
3036
+ payment_method = 'PaymentMethod'
3037
+ doc_num = 'DocNum'
3038
+ fiscal_year = 'FiscalYear'
3039
+ countery = 'Countery'
3040
+ company_tax_num = 'CompanyTaxNum'
3041
+ payee_name = 'PayeeName'
3042
+ payee_postal_code = 'PayeePostalCode'
3043
+ payee_city = 'PayeeCity'
3044
+ payee_street = 'PayeeStreet'
3045
+ payee_country = 'PayeeCountry'
3046
+ payee_state = 'PayeeState'
3047
+ payee_bank_name = 'PayeeBankName'
3048
+ payee_bank_zip = 'PayeeBankZip'
3049
+ payee_bank_city = 'PayeeBankCity'
3050
+ payee_bank_street = 'PayeeBankStreet'
3051
+ payee_bank_country = 'PayeeBankCountry'
3052
+ payee_bank_account = 'PayeeBankAccount'
3053
+ payee_bank_code = 'PayeeBankCode'
3054
+ payee_bank_ctrl_key = 'PayeeBankCtrlKey'
3055
+ payee_bank_swift_num = 'PayeeBankSwiftNum'
3056
+ payee_bank_iban = 'PayeeBankIBAN'
3057
+ posting_date = 'PostingDate'
3058
+ bank_account = 'BankAccount'
3059
+ bank_country = 'BankCountry'
3060
+ bank_code = 'BankCode'
3061
+ bank_iban = 'BankIBAN'
3062
+ gl_account = 'GLAccount'
3063
+ currency = 'Currency'
3064
+ doc_amount_local = 'DocAmountLocal'
3065
+ doc_currnecy = 'DocCurrnecy'
3066
+ doc_amount_forign = 'DocAmountForign'
3067
+ doc_cash_discount = 'DocCashDiscount'
3068
+ doc_cash_discount_forign = 'DocCashDiscountForign'
3069
+ doc_num_offield_paid = 'DocNumOffieldPaid'
3070
+ doc_rate = 'DocRate'
3071
+ wiz_code = 'WizCode'
3072
+ collection_authorization = 'CollectionAuthorization'
3073
+ payee_bank_post_office = 'PayeeBankPostOffice'
3074
+ payee_bank_next_check_number = 'PayeeBankNextCheckNumber'
3075
+ payee_bank_house_bank = 'PayeeBankHouseBank'
3076
+ payee_bank_block = 'PayeeBankBlock'
3077
+ payee_bank_county = 'PayeeBankCounty'
3078
+ payee_bank_state = 'PayeeBankState'
3079
+ payee_bank_bisr = 'PayeeBankBISR'
3080
+ payee_bank_user_num1 = 'PayeeBankUserNum1'
3081
+ payee_bank_user_num2 = 'PayeeBankUserNum2'
3082
+ payee_bank_user_num3 = 'PayeeBankUserNum3'
3083
+ payee_bank_user_num4 = 'PayeeBankUserNum4'
3084
+ instruction_key = 'InstructionKey'
3085
+ payment_format = 'PaymentFormat'
3086
+ company_name = 'CompanyName'
3087
+ company_address = 'CompanyAddress'
3088
+ status = 'Status'
3089
+ comp_isr_biller_id = 'CompIsrBillerID'
3090
+ vendor_isr_biller_id = 'VendorIsrBillerID'
3091
+ additional_id_number = 'AdditionalIdNumber'
3092
+ organization_number = 'OrganizationNumber'
3093
+ payee_bank_branch = 'PayeeBankBranch'
3094
+ payment_bank_branch = 'PaymentBankBranch'
3095
+ user_name = 'UserName'
3096
+ user_e_mail = 'UserEMail'
3097
+ user_mobile_phone_number = 'UserMobilePhoneNumber'
3098
+ user_fax_number = 'UserFaxNumber'
3099
+ user_department = 'UserDepartment'
3100
+ debit_memo = 'DebitMemo'
3101
+ eu_internal_transfer = 'EUInternalTransfer'
3102
+ file_path = 'FilePath'
3103
+ ordering_party = 'OrderingParty'
3104
+ payment_bank_control_key = 'PaymentBankControlKey'
3105
+ payee_tax_number = 'PayeeTaxNumber'
3106
+ payment_key_code = 'PaymentKeyCode'
3107
+ payee_reference_details = 'PayeeReferenceDetails'
3108
+ format_name = 'FormatName'
3109
+ payment_donewith_check = 'PaymentDonewithCheck'
3110
+ company_block = 'CompanyBlock'
3111
+ company_city = 'CompanyCity'
3112
+ company_county = 'CompanyCounty'
3113
+ company_state = 'CompanyState'
3114
+ company_street = 'CompanyStreet'
3115
+ company_zip_code = 'CompanyZipCode'
3116
+ payment_bank_charges = 'PaymentBankCharges'
3117
+ payment_bank_user_no1 = 'PaymentBankUserNo1'
3118
+ payment_bank_user_no2 = 'PaymentBankUserNo2'
3119
+ payment_bank_user_no3 = 'PaymentBankUserNo3'
3120
+ payment_bank_user_no4 = 'PaymentBankUserNo4'
3121
+ payment_bank_charges_allocation_code = 'PaymentBankChargesAllocationCode'
3122
+ payment_order_num = 'PaymentOrderNum'
3123
+ free_text1 = 'FreeText1'
3124
+ free_text2 = 'FreeText2'
3125
+ free_text3 = 'FreeText3'
3126
+ row_type = 'RowType'
3127
+ payment_run_export_lines = 'PaymentRunExport_Lines'
3128
+ bank_charges_allocation_code = 'BankChargesAllocationCode'
3129
+
3130
+ class PaymentTermsTypeFields(StrEnum):
3131
+ group_number = 'GroupNumber'
3132
+ payment_terms_group_name = 'PaymentTermsGroupName'
3133
+ start_from = 'StartFrom'
3134
+ number_of_additional_months = 'NumberOfAdditionalMonths'
3135
+ number_of_additional_days = 'NumberOfAdditionalDays'
3136
+ credit_limit = 'CreditLimit'
3137
+ general_discount = 'GeneralDiscount'
3138
+ interest_on_arrears = 'InterestOnArrears'
3139
+ price_list_no = 'PriceListNo'
3140
+ load_limit = 'LoadLimit'
3141
+ open_receipt = 'OpenReceipt'
3142
+ discount_code = 'DiscountCode'
3143
+ dunning_code = 'DunningCode'
3144
+ baseline_date = 'BaselineDate'
3145
+ number_of_installments = 'NumberOfInstallments'
3146
+ number_of_tolerance_days = 'NumberOfToleranceDays'
3147
+ end_at = 'EndAt'
3148
+ purchase_quotations = 'PurchaseQuotations'
3149
+ correction_invoice_reversal = 'CorrectionInvoiceReversal'
3150
+ correction_invoice = 'CorrectionInvoice'
3151
+ purchase_delivery_notes = 'PurchaseDeliveryNotes'
3152
+ correction_purchase_invoice = 'CorrectionPurchaseInvoice'
3153
+ inventory_gen_entries = 'InventoryGenEntries'
3154
+ orders = 'Orders'
3155
+ wizard_payment_methods = 'WizardPaymentMethods'
3156
+ inventory_gen_exits = 'InventoryGenExits'
3157
+ drafts = 'Drafts'
3158
+ inventory_transfer_requests = 'InventoryTransferRequests'
3159
+ return_request = 'ReturnRequest'
3160
+ delivery_notes = 'DeliveryNotes'
3161
+ purchase_invoices = 'PurchaseInvoices'
3162
+ stock_transfer_drafts = 'StockTransferDrafts'
3163
+ self_invoices = 'SelfInvoices'
3164
+ blanket_agreements = 'BlanketAgreements'
3165
+ invoices = 'Invoices'
3166
+ credit_notes = 'CreditNotes'
3167
+ purchase_credit_notes = 'PurchaseCreditNotes'
3168
+ business_partners = 'BusinessPartners'
3169
+ down_payments = 'DownPayments'
3170
+ purchase_down_payments = 'PurchaseDownPayments'
3171
+ purchase_returns = 'PurchaseReturns'
3172
+ purchase_orders = 'PurchaseOrders'
3173
+ self_credit_memos = 'SelfCreditMemos'
3174
+ quotations = 'Quotations'
3175
+ returns = 'Returns'
3176
+ goods_return_request = 'GoodsReturnRequest'
3177
+ price_list = 'PriceList'
3178
+ cash_discount = 'CashDiscount'
3179
+ correction_purchase_invoice_reversal = 'CorrectionPurchaseInvoiceReversal'
3180
+ purchase_requests = 'PurchaseRequests'
3181
+
3182
+ class PickListFields(StrEnum):
3183
+ absoluteentry = 'Absoluteentry'
3184
+ name = 'Name'
3185
+ owner_code = 'OwnerCode'
3186
+ owner_name = 'OwnerName'
3187
+ pick_date = 'PickDate'
3188
+ remarks = 'Remarks'
3189
+ status = 'Status'
3190
+ object_type = 'ObjectType'
3191
+ use_base_units = 'UseBaseUnits'
3192
+ pick_lists_lines = 'PickListsLines'
3193
+ user = 'User'
3194
+
3195
+ class PictureFields(StrEnum):
3196
+ picture_name = 'PictureName'
3197
+ picture_path = 'PicturePath'
3198
+ picture_size = 'PictureSize'
3199
+ picture_create_date = 'PictureCreateDate'
3200
+ picture_modify_date = 'PictureModifyDate'
3201
+
3202
+ class PostingTemplatesFields(StrEnum):
3203
+ code = 'Code'
3204
+ description = 'Description'
3205
+ stamp_tax = 'StampTax'
3206
+ automatic_vat = 'AutomaticVAT'
3207
+ manage_w_tax = 'ManageWTax'
3208
+ deferred_tax = 'DeferredTax'
3209
+ posting_templates_line_collection = 'PostingTemplatesLineCollection'
3210
+
3211
+ class PredefinedTextFields(StrEnum):
3212
+ numerator = 'Numerator'
3213
+ text_code = 'TextCode'
3214
+ text = 'Text'
3215
+
3216
+ class PriceListFields(StrEnum):
3217
+ rounding_method = 'RoundingMethod'
3218
+ group_num = 'GroupNum'
3219
+ base_price_list = 'BasePriceList'
3220
+ factor = 'Factor'
3221
+ price_list_no = 'PriceListNo'
3222
+ price_list_name = 'PriceListName'
3223
+ is_gross_price = 'IsGrossPrice'
3224
+ active = 'Active'
3225
+ valid_from = 'ValidFrom'
3226
+ valid_to = 'ValidTo'
3227
+ default_prime_currency = 'DefaultPrimeCurrency'
3228
+ default_additional_currency1 = 'DefaultAdditionalCurrency1'
3229
+ default_additional_currency2 = 'DefaultAdditionalCurrency2'
3230
+ rounding_rule = 'RoundingRule'
3231
+ fixed_amount = 'FixedAmount'
3232
+ stock_transfers = 'StockTransfers'
3233
+ product_trees = 'ProductTrees'
3234
+ blanket_agreements = 'BlanketAgreements'
3235
+ business_partners = 'BusinessPartners'
3236
+ special_prices = 'SpecialPrices'
3237
+ payment_terms_types = 'PaymentTermsTypes'
3238
+
3239
+ class ProjectFields(StrEnum):
3240
+ code = 'Code'
3241
+ name = 'Name'
3242
+ valid_from = 'ValidFrom'
3243
+ valid_to = 'ValidTo'
3244
+ active = 'Active'
3245
+ sales_opportunities = 'SalesOpportunities'
3246
+ product_trees = 'ProductTrees'
3247
+ purchase_quotations = 'PurchaseQuotations'
3248
+ vendor_payments = 'VendorPayments'
3249
+ correction_invoice_reversal = 'CorrectionInvoiceReversal'
3250
+ correction_invoice = 'CorrectionInvoice'
3251
+ purchase_delivery_notes = 'PurchaseDeliveryNotes'
3252
+ correction_purchase_invoice = 'CorrectionPurchaseInvoice'
3253
+ journal_entries = 'JournalEntries'
3254
+ inventory_gen_entries = 'InventoryGenEntries'
3255
+ service_calls = 'ServiceCalls'
3256
+ orders = 'Orders'
3257
+ inventory_gen_exits = 'InventoryGenExits'
3258
+ drafts = 'Drafts'
3259
+ additional_expenses = 'AdditionalExpenses'
3260
+ chart_of_accounts = 'ChartOfAccounts'
3261
+ return_request = 'ReturnRequest'
3262
+ delivery_notes = 'DeliveryNotes'
3263
+ purchase_invoices = 'PurchaseInvoices'
3264
+ self_invoices = 'SelfInvoices'
3265
+ blanket_agreements = 'BlanketAgreements'
3266
+ invoices = 'Invoices'
3267
+ credit_notes = 'CreditNotes'
3268
+ payment_drafts = 'PaymentDrafts'
3269
+ purchase_credit_notes = 'PurchaseCreditNotes'
3270
+ business_partners = 'BusinessPartners'
3271
+ production_orders = 'ProductionOrders'
3272
+ down_payments = 'DownPayments'
3273
+ purchase_down_payments = 'PurchaseDownPayments'
3274
+ purchase_returns = 'PurchaseReturns'
3275
+ purchase_orders = 'PurchaseOrders'
3276
+ self_credit_memos = 'SelfCreditMemos'
3277
+ quotations = 'Quotations'
3278
+ returns = 'Returns'
3279
+ project_managements = 'ProjectManagements'
3280
+ goods_return_request = 'GoodsReturnRequest'
3281
+ budget_scenarios = 'BudgetScenarios'
3282
+ correction_purchase_invoice_reversal = 'CorrectionPurchaseInvoiceReversal'
3283
+ incoming_payments = 'IncomingPayments'
3284
+ deposits = 'Deposits'
3285
+ purchase_requests = 'PurchaseRequests'
3286
+
3287
+ class PurchaseTaxInvoiceFields(StrEnum):
3288
+ doc_entry = 'DocEntry'
3289
+ doc_num = 'DocNum'
3290
+ doc_type = 'DocType'
3291
+ printed = 'Printed'
3292
+ doc_date = 'DocDate'
3293
+ card_code = 'CardCode'
3294
+ creation_date = 'CreationDate'
3295
+ update_date = 'UpdateDate'
3296
+ doc_due_date = 'DocDueDate'
3297
+ series = 'Series'
3298
+ segment = 'Segment'
3299
+ contact_person_code = 'ContactPersonCode'
3300
+ tax_date = 'TaxDate'
3301
+ comments = 'Comments'
3302
+ ship_to_code = 'ShipToCode'
3303
+ address = 'Address'
3304
+ address2 = 'Address2'
3305
+ currency_source = 'CurrencySource'
3306
+ doc_currency = 'DocCurrency'
3307
+ customer_or_vendor_ref_no = 'CustomerOrVendorRefNo'
3308
+ customer_or_vendor_name = 'CustomerOrVendorName'
3309
+ cancel_date = 'CancelDate'
3310
+ document_total = 'DocumentTotal'
3311
+ tax_total = 'TaxTotal'
3312
+ payment_ref_no = 'PaymentRefNo'
3313
+ payment_ref_date = 'PaymentRefDate'
3314
+ alteration_revision = 'AlterationRevision'
3315
+ purchase_tax_invoice_lines = 'PurchaseTaxInvoiceLines'
3316
+ purchase_tax_invoice_operation_codes = 'PurchaseTaxInvoiceOperationCodes'
3317
+ purchase_tax_invoice_document_references = 'PurchaseTaxInvoiceDocumentReferences'
3318
+ purchase_tax_invoice_linked_down_payments = 'PurchaseTaxInvoiceLinkedDownPayments'
3319
+ business_partner = 'BusinessPartner'
3320
+
3321
+ class QueryAuthGroupFields(StrEnum):
3322
+ auth_group_code = 'AuthGroupCode'
3323
+ auth_group_des = 'AuthGroupDes'
3324
+ auth_group_id = 'AuthGroupId'
3325
+ category_group_collection = 'CategoryGroupCollection'
3326
+
3327
+ class QueryCategoryFields(StrEnum):
3328
+ code = 'Code'
3329
+ name = 'Name'
3330
+ permissions = 'Permissions'
3331
+ user_queries = 'UserQueries'
3332
+
3333
+ class QueueFields(StrEnum):
3334
+ queue_id = 'QueueID'
3335
+ description = 'Description'
3336
+ inactive = 'Inactive'
3337
+ queue_manager = 'QueueManager'
3338
+ queue_email = 'QueueEmail'
3339
+ queue_members = 'QueueMembers'
3340
+ service_calls = 'ServiceCalls'
3341
+ user = 'User'
3342
+
3343
+ class RecurringPostingsFields(StrEnum):
3344
+ code = 'Code'
3345
+ description = 'Description'
3346
+ instance = 'Instance'
3347
+ reference1 = 'Reference1'
3348
+ reference2 = 'Reference2'
3349
+ reference3 = 'Reference3'
3350
+ transaction_code = 'TransactionCode'
3351
+ remarks = 'Remarks'
3352
+ frequency = 'Frequency'
3353
+ sub_frequency = 'SubFrequency'
3354
+ next_execution = 'NextExecution'
3355
+ stamp_tax = 'StampTax'
3356
+ automatic_vat = 'AutomaticVAT'
3357
+ manage_w_tax = 'ManageWTax'
3358
+ deferred_tax = 'DeferredTax'
3359
+ valid_until = 'ValidUntil'
3360
+ valid_until_date = 'ValidUntilDate'
3361
+ recurring_postings_line_collection = 'RecurringPostingsLineCollection'
3362
+ recurring_postings_document_reference_collection = 'RecurringPostingsDocumentReferenceCollection'
3363
+
3364
+ class RelationshipFields(StrEnum):
3365
+ relationship_description = 'RelationshipDescription'
3366
+ relationship_code = 'RelationshipCode'
3367
+ partners_setups = 'PartnersSetups'
3368
+
3369
+ class ReportTypeFields(StrEnum):
3370
+ type_code = 'TypeCode'
3371
+ type_name = 'TypeName'
3372
+ default_report_layout = 'DefaultReportLayout'
3373
+ addon_name = 'AddonName'
3374
+ addon_form_type = 'AddonFormType'
3375
+ menu_id = 'MenuID'
3376
+
3377
+ class RetornoCodeFields(StrEnum):
3378
+ abs_entry = 'AbsEntry'
3379
+ occurence_code = 'OccurenceCode'
3380
+ movement_code = 'MovementCode'
3381
+ boe_status = 'BoeStatus'
3382
+ description = 'Description'
3383
+ color = 'Color'
3384
+ file_format = 'FileFormat'
3385
+ bank_code = 'BankCode'
3386
+
3387
+ class RouteStageFields(StrEnum):
3388
+ internal_number = 'InternalNumber'
3389
+ code = 'Code'
3390
+ description = 'Description'
3391
+ creation_date = 'CreationDate'
3392
+ generation_time = 'GenerationTime'
3393
+ date_of_update = 'DateOfUpdate'
3394
+
3395
+ class SQLQueryFields(StrEnum):
3396
+ sql_code = 'SqlCode'
3397
+ sql_name = 'SqlName'
3398
+ sql_text = 'SqlText'
3399
+ param_list = 'ParamList'
3400
+ create_date = 'CreateDate'
3401
+ update_date = 'UpdateDate'
3402
+
3403
+ class SQLViewFields(StrEnum):
3404
+ name = 'Name'
3405
+ db_type = 'DBType'
3406
+ schema_name = 'SchemaName'
3407
+ create_date = 'CreateDate'
3408
+
3409
+ class SalesForecastFields(StrEnum):
3410
+ forecast_start_date = 'ForecastStartDate'
3411
+ forecast_end_date = 'ForecastEndDate'
3412
+ forecast_code = 'ForecastCode'
3413
+ forecast_name = 'ForecastName'
3414
+ numerator = 'Numerator'
3415
+ view = 'View'
3416
+ sales_forecast_lines = 'SalesForecastLines'
3417
+
3418
+ class SalesOpportunitiesFields(StrEnum):
3419
+ sequential_no = 'SequentialNo'
3420
+ card_code = 'CardCode'
3421
+ sales_person = 'SalesPerson'
3422
+ contact_person = 'ContactPerson'
3423
+ source = 'Source'
3424
+ interest_field1 = 'InterestField1'
3425
+ interest_field2 = 'InterestField2'
3426
+ interest_field3 = 'InterestField3'
3427
+ interest_level = 'InterestLevel'
3428
+ start_date = 'StartDate'
3429
+ predicted_closing_date = 'PredictedClosingDate'
3430
+ max_local_total = 'MaxLocalTotal'
3431
+ max_system_total = 'MaxSystemTotal'
3432
+ weighted_sum_lc = 'WeightedSumLC'
3433
+ weighted_sum_sc = 'WeightedSumSC'
3434
+ gross_profit = 'GrossProfit'
3435
+ gross_profit_total_local = 'GrossProfitTotalLocal'
3436
+ gross_profit_total_system = 'GrossProfitTotalSystem'
3437
+ remarks = 'Remarks'
3438
+ status = 'Status'
3439
+ reason_for_closing = 'ReasonForClosing'
3440
+ total_amount_local = 'TotalAmountLocal'
3441
+ total_amoun_system = 'TotalAmounSystem'
3442
+ closing_gross_profit_local = 'ClosingGrossProfitLocal'
3443
+ closing_gross_profit_system = 'ClosingGrossProfitSystem'
3444
+ closing_percentage = 'ClosingPercentage'
3445
+ current_stage_no = 'CurrentStageNo'
3446
+ current_stage_number = 'CurrentStageNumber'
3447
+ opportunity_name = 'OpportunityName'
3448
+ industry = 'Industry'
3449
+ linked_document_type = 'LinkedDocumentType'
3450
+ data_ownershipfield = 'DataOwnershipfield'
3451
+ status_remarks = 'StatusRemarks'
3452
+ project_code = 'ProjectCode'
3453
+ bp_chanel_name = 'BPChanelName'
3454
+ user_signature = 'UserSignature'
3455
+ customer_name = 'CustomerName'
3456
+ document_checkbox = 'DocumentCheckbox'
3457
+ linked_document_number = 'LinkedDocumentNumber'
3458
+ territory = 'Territory'
3459
+ closing_date = 'ClosingDate'
3460
+ bp_channel_contact = 'BPChannelContact'
3461
+ bp_chanel_code = 'BPChanelCode'
3462
+ closing_type = 'ClosingType'
3463
+ attachment_entry = 'AttachmentEntry'
3464
+ opportunity_type = 'OpportunityType'
3465
+ update_date = 'UpdateDate'
3466
+ update_time = 'UpdateTime'
3467
+ sales_opportunities_lines = 'SalesOpportunitiesLines'
3468
+ sales_opportunities_competition = 'SalesOpportunitiesCompetition'
3469
+ sales_opportunities_partners = 'SalesOpportunitiesPartners'
3470
+ sales_opportunities_interests = 'SalesOpportunitiesInterests'
3471
+ sales_opportunities_reasons = 'SalesOpportunitiesReasons'
3472
+ business_partner = 'BusinessPartner'
3473
+ sales_person2 = 'SalesPerson2'
3474
+ sales_opportunity_source_setup = 'SalesOpportunitySourceSetup'
3475
+ sales_opportunity_interest_setup = 'SalesOpportunityInterestSetup'
3476
+ sales_opportunity_reason_setup = 'SalesOpportunityReasonSetup'
3477
+ sales_stage = 'SalesStage'
3478
+ industry2 = 'Industry2'
3479
+ employee_info = 'EmployeeInfo'
3480
+ project = 'Project'
3481
+ user = 'User'
3482
+ territory2 = 'Territory2'
3483
+
3484
+ class SalesOpportunityCompetitorSetupFields(StrEnum):
3485
+ sequence_no = 'SequenceNo'
3486
+ name = 'Name'
3487
+ threat_level = 'ThreatLevel'
3488
+ details = 'Details'
3489
+
3490
+ class SalesOpportunityInterestSetupFields(StrEnum):
3491
+ sequence_no = 'SequenceNo'
3492
+ description = 'Description'
3493
+ sort = 'Sort'
3494
+ sales_opportunities = 'SalesOpportunities'
3495
+
3496
+ class SalesOpportunityReasonSetupFields(StrEnum):
3497
+ sequence_no = 'SequenceNo'
3498
+ description = 'Description'
3499
+ sort = 'Sort'
3500
+ sales_opportunities = 'SalesOpportunities'
3501
+
3502
+ class SalesOpportunitySourceSetupFields(StrEnum):
3503
+ sequence_no = 'SequenceNo'
3504
+ description = 'Description'
3505
+ sort = 'Sort'
3506
+ sales_opportunities = 'SalesOpportunities'
3507
+
3508
+ class SalesPersonFields(StrEnum):
3509
+ sales_employee_code = 'SalesEmployeeCode'
3510
+ sales_employee_name = 'SalesEmployeeName'
3511
+ remarks = 'Remarks'
3512
+ commission_for_sales_employee = 'CommissionForSalesEmployee'
3513
+ commission_group = 'CommissionGroup'
3514
+ locked = 'Locked'
3515
+ employee_id = 'EmployeeID'
3516
+ active = 'Active'
3517
+ telephone = 'Telephone'
3518
+ mobile = 'Mobile'
3519
+ fax = 'Fax'
3520
+ email = 'Email'
3521
+ sales_opportunities = 'SalesOpportunities'
3522
+ user_default_groups = 'UserDefaultGroups'
3523
+ stock_transfers = 'StockTransfers'
3524
+ purchase_quotations = 'PurchaseQuotations'
3525
+ commission_group2 = 'CommissionGroup2'
3526
+ correction_invoice_reversal = 'CorrectionInvoiceReversal'
3527
+ correction_invoice = 'CorrectionInvoice'
3528
+ purchase_delivery_notes = 'PurchaseDeliveryNotes'
3529
+ correction_purchase_invoice = 'CorrectionPurchaseInvoice'
3530
+ inventory_gen_entries = 'InventoryGenEntries'
3531
+ employees_info = 'EmployeesInfo'
3532
+ orders = 'Orders'
3533
+ inventory_gen_exits = 'InventoryGenExits'
3534
+ drafts = 'Drafts'
3535
+ inventory_transfer_requests = 'InventoryTransferRequests'
3536
+ return_request = 'ReturnRequest'
3537
+ delivery_notes = 'DeliveryNotes'
3538
+ purchase_invoices = 'PurchaseInvoices'
3539
+ stock_transfer_drafts = 'StockTransferDrafts'
3540
+ self_invoices = 'SelfInvoices'
3541
+ invoices = 'Invoices'
3542
+ credit_notes = 'CreditNotes'
3543
+ contacts = 'Contacts'
3544
+ purchase_credit_notes = 'PurchaseCreditNotes'
3545
+ business_partners = 'BusinessPartners'
3546
+ down_payments = 'DownPayments'
3547
+ purchase_down_payments = 'PurchaseDownPayments'
3548
+ purchase_returns = 'PurchaseReturns'
3549
+ activities = 'Activities'
3550
+ purchase_orders = 'PurchaseOrders'
3551
+ self_credit_memos = 'SelfCreditMemos'
3552
+ quotations = 'Quotations'
3553
+ returns = 'Returns'
3554
+ project_managements = 'ProjectManagements'
3555
+ goods_return_request = 'GoodsReturnRequest'
3556
+ correction_purchase_invoice_reversal = 'CorrectionPurchaseInvoiceReversal'
3557
+ purchase_requests = 'PurchaseRequests'
3558
+
3559
+ class SalesStageFields(StrEnum):
3560
+ sequence_no = 'SequenceNo'
3561
+ name = 'Name'
3562
+ stageno = 'Stageno'
3563
+ closing_percentage = 'ClosingPercentage'
3564
+ cancelled = 'Cancelled'
3565
+ is_sales = 'IsSales'
3566
+ is_purchasing = 'IsPurchasing'
3567
+ sales_opportunities = 'SalesOpportunities'
3568
+
3569
+ class SalesTaxAuthoritiesTypeFields(StrEnum):
3570
+ user_signature = 'UserSignature'
3571
+ name = 'Name'
3572
+ vat = 'VAT'
3573
+ numerator = 'Numerator'
3574
+ tax_credit_control = 'TaxCreditControl'
3575
+ sales_tax_authorities = 'SalesTaxAuthorities'
3576
+ user = 'User'
3577
+ depreciation_areas = 'DepreciationAreas'
3578
+
3579
+ class SalesTaxAuthorityFields(StrEnum):
3580
+ use_tax_account = 'UseTaxAccount'
3581
+ user_signature = 'UserSignature'
3582
+ type = 'Type'
3583
+ a_or_r_tax_account = 'AOrRTaxAccount'
3584
+ rate = 'Rate'
3585
+ a_or_p_tax_account = 'AOrPTaxAccount'
3586
+ non_deductible_precent = 'NonDeductiblePrecent'
3587
+ non_deductible_account = 'NonDeductibleAccount'
3588
+ name = 'Name'
3589
+ deferred_tax_account = 'DeferredTaxAccount'
3590
+ code = 'Code'
3591
+ min_taxable_amount = 'MinTaxableAmount'
3592
+ max_taxable_amount = 'MaxTaxableAmount'
3593
+ flat_tax_amount = 'FlatTaxAmount'
3594
+ incl_in_price = 'InclInPrice'
3595
+ exempt = 'Exempt'
3596
+ ap_exp_account = 'APExpAccount'
3597
+ ar_exp_account = 'ARExpAccount'
3598
+ incl_in_gross_revenue = 'InclInGrossRevenue'
3599
+ text_code = 'TextCode'
3600
+ incl_in_first_installment = 'InclInFirstInstallment'
3601
+ reverse_charge_percent = 'ReverseChargePercent'
3602
+ sales_tax_rcm_account = 'SalesTaxRCMAccount'
3603
+ sales_tax_rcm_clr_account = 'SalesTaxRCMClrAccount'
3604
+ vat_exemption = 'VATExemption'
3605
+ vat_exemption_base_percent = 'VATExemptionBasePercent'
3606
+ vat_exemption_percent = 'VATExemptionPercent'
3607
+ tax_definitions = 'TaxDefinitions'
3608
+ chart_of_account = 'ChartOfAccount'
3609
+ user = 'User'
3610
+ sales_tax_authorities_type = 'SalesTaxAuthoritiesType'
3611
+
3612
+ class SalesTaxCodeFields(StrEnum):
3613
+ valid_for_ar = 'ValidForAR'
3614
+ valid_for_ap = 'ValidForAP'
3615
+ user_signature = 'UserSignature'
3616
+ rate = 'Rate'
3617
+ name = 'Name'
3618
+ freight = 'Freight'
3619
+ code = 'Code'
3620
+ is_item_level = 'IsItemLevel'
3621
+ inactive = 'Inactive'
3622
+ fa_debit = 'FADebit'
3623
+ sales_tax_codes_lines = 'SalesTaxCodes_Lines'
3624
+ user_default_groups = 'UserDefaultGroups'
3625
+ warehouses = 'Warehouses'
3626
+ items = 'Items'
3627
+ business_partners = 'BusinessPartners'
3628
+ user = 'User'
3629
+ expense_types = 'ExpenseTypes'
3630
+
3631
+ class SalesTaxInvoiceFields(StrEnum):
3632
+ doc_entry = 'DocEntry'
3633
+ doc_num = 'DocNum'
3634
+ doc_type = 'DocType'
3635
+ printed = 'Printed'
3636
+ doc_date = 'DocDate'
3637
+ card_code = 'CardCode'
3638
+ creation_date = 'CreationDate'
3639
+ update_date = 'UpdateDate'
3640
+ doc_due_date = 'DocDueDate'
3641
+ series = 'Series'
3642
+ segment = 'Segment'
3643
+ contact_person_code = 'ContactPersonCode'
3644
+ tax_date = 'TaxDate'
3645
+ comments = 'Comments'
3646
+ ship_to_code = 'ShipToCode'
3647
+ address = 'Address'
3648
+ address2 = 'Address2'
3649
+ currency_source = 'CurrencySource'
3650
+ doc_currency = 'DocCurrency'
3651
+ customer_or_vendor_ref_no = 'CustomerOrVendorRefNo'
3652
+ customer_or_vendor_name = 'CustomerOrVendorName'
3653
+ cancel_date = 'CancelDate'
3654
+ document_total = 'DocumentTotal'
3655
+ tax_total = 'TaxTotal'
3656
+ payment_ref_no = 'PaymentRefNo'
3657
+ payment_ref_date = 'PaymentRefDate'
3658
+ alteration_revision = 'AlterationRevision'
3659
+ sales_tax_invoice_lines = 'SalesTaxInvoiceLines'
3660
+ sales_tax_invoice_operation_codes = 'SalesTaxInvoiceOperationCodes'
3661
+ sales_tax_invoice_document_references = 'SalesTaxInvoiceDocumentReferences'
3662
+ sales_tax_invoice_linked_down_payments = 'SalesTaxInvoiceLinkedDownPayments'
3663
+ business_partner = 'BusinessPartner'
3664
+
3665
+ class SectionFields(StrEnum):
3666
+ abs_entry = 'AbsEntry'
3667
+ code = 'Code'
3668
+ description = 'Description'
3669
+ e_code = 'ECode'
3670
+ withholding_tax_codes = 'WithholdingTaxCodes'
3671
+ certificate_series = 'CertificateSeries'
3672
+
3673
+ class SerialNumberDetailFields(StrEnum):
3674
+ doc_entry = 'DocEntry'
3675
+ item_code = 'ItemCode'
3676
+ item_description = 'ItemDescription'
3677
+ mfr_serial_no = 'MfrSerialNo'
3678
+ serial_number = 'SerialNumber'
3679
+ lot_number = 'LotNumber'
3680
+ system_number = 'SystemNumber'
3681
+ admission_date = 'AdmissionDate'
3682
+ manufacturing_date = 'ManufacturingDate'
3683
+ expiration_date = 'ExpirationDate'
3684
+ mfr_warranty_start = 'MfrWarrantyStart'
3685
+ m_fr_warranty_end = 'MFrWarrantyEnd'
3686
+ location = 'Location'
3687
+ details = 'Details'
3688
+ item = 'Item'
3689
+
3690
+ class ServiceContractFields(StrEnum):
3691
+ contract_id = 'ContractID'
3692
+ customer_code = 'CustomerCode'
3693
+ customer_name = 'CustomerName'
3694
+ contact_code = 'ContactCode'
3695
+ owner = 'Owner'
3696
+ status = 'Status'
3697
+ contract_template = 'ContractTemplate'
3698
+ contract_type = 'ContractType'
3699
+ renewal = 'Renewal'
3700
+ reminder_time = 'ReminderTime'
3701
+ remind_unit = 'RemindUnit'
3702
+ duration_of_coverage = 'DurationOfCoverage'
3703
+ start_date = 'StartDate'
3704
+ end_date = 'EndDate'
3705
+ resolution_time = 'ResolutionTime'
3706
+ resolution_unit = 'ResolutionUnit'
3707
+ description = 'Description'
3708
+ monday_enabled = 'MondayEnabled'
3709
+ tuesday_enabled = 'TuesdayEnabled'
3710
+ wednesday_enabled = 'WednesdayEnabled'
3711
+ thursday_enabled = 'ThursdayEnabled'
3712
+ friday_enabled = 'FridayEnabled'
3713
+ saturday_enabled = 'SaturdayEnabled'
3714
+ sunday_enabled = 'SundayEnabled'
3715
+ monday_start = 'MondayStart'
3716
+ monday_end = 'MondayEnd'
3717
+ tuesday_start = 'TuesdayStart'
3718
+ tuesday_end = 'TuesdayEnd'
3719
+ wednesday_start = 'WednesdayStart'
3720
+ wednesday_end = 'WednesdayEnd'
3721
+ thursday_start = 'ThursdayStart'
3722
+ thursday_end = 'ThursdayEnd'
3723
+ friday_start = 'FridayStart'
3724
+ friday_end = 'FridayEnd'
3725
+ saturday_start = 'SaturdayStart'
3726
+ saturday_end = 'SaturdayEnd'
3727
+ sunday_start = 'SundayStart'
3728
+ sunday_end = 'SundayEnd'
3729
+ include_parts = 'IncludeParts'
3730
+ include_labor = 'IncludeLabor'
3731
+ include_travel = 'IncludeTravel'
3732
+ template_remarks = 'TemplateRemarks'
3733
+ remarks = 'Remarks'
3734
+ include_holidays = 'IncludeHolidays'
3735
+ service_type = 'ServiceType'
3736
+ response_unit = 'ResponseUnit'
3737
+ response_time = 'ResponseTime'
3738
+ termination_date = 'TerminationDate'
3739
+ attachment_entry = 'AttachmentEntry'
3740
+ service_bp_type = 'ServiceBPType'
3741
+ service_contract_lines = 'ServiceContract_Lines'
3742
+ customer_equipment_cards = 'CustomerEquipmentCards'
3743
+ service_calls = 'ServiceCalls'
3744
+ business_partner = 'BusinessPartner'
3745
+ user = 'User'
3746
+ contract_template2 = 'ContractTemplate2'
3747
+ attachments2 = 'Attachments2'
3748
+
3749
+ class ServiceGroupFields(StrEnum):
3750
+ abs_entry = 'AbsEntry'
3751
+ service_group_code = 'ServiceGroupCode'
3752
+ description = 'Description'
3753
+ items = 'Items'
3754
+
3755
+ class ShippingTypeFields(StrEnum):
3756
+ code = 'Code'
3757
+ name = 'Name'
3758
+ website = 'Website'
3759
+ landed_costs = 'LandedCosts'
3760
+ purchase_quotations = 'PurchaseQuotations'
3761
+ correction_invoice_reversal = 'CorrectionInvoiceReversal'
3762
+ correction_invoice = 'CorrectionInvoice'
3763
+ purchase_delivery_notes = 'PurchaseDeliveryNotes'
3764
+ correction_purchase_invoice = 'CorrectionPurchaseInvoice'
3765
+ inventory_gen_entries = 'InventoryGenEntries'
3766
+ items = 'Items'
3767
+ orders = 'Orders'
3768
+ inventory_gen_exits = 'InventoryGenExits'
3769
+ drafts = 'Drafts'
3770
+ return_request = 'ReturnRequest'
3771
+ delivery_notes = 'DeliveryNotes'
3772
+ purchase_invoices = 'PurchaseInvoices'
3773
+ self_invoices = 'SelfInvoices'
3774
+ blanket_agreements = 'BlanketAgreements'
3775
+ invoices = 'Invoices'
3776
+ credit_notes = 'CreditNotes'
3777
+ purchase_credit_notes = 'PurchaseCreditNotes'
3778
+ business_partners = 'BusinessPartners'
3779
+ down_payments = 'DownPayments'
3780
+ purchase_down_payments = 'PurchaseDownPayments'
3781
+ purchase_returns = 'PurchaseReturns'
3782
+ purchase_orders = 'PurchaseOrders'
3783
+ self_credit_memos = 'SelfCreditMemos'
3784
+ quotations = 'Quotations'
3785
+ returns = 'Returns'
3786
+ goods_return_request = 'GoodsReturnRequest'
3787
+ correction_purchase_invoice_reversal = 'CorrectionPurchaseInvoiceReversal'
3788
+ purchase_requests = 'PurchaseRequests'
3789
+
3790
+ class ShortLinkMappingFields(StrEnum):
3791
+ guid = 'Guid'
3792
+ origin = 'Origin'
3793
+ src_link = 'SrcLink'
3794
+ owner_code = 'OwnerCode'
3795
+ create_date = 'CreateDate'
3796
+ create_time = 'CreateTime'
3797
+
3798
+ class SingleUserConnectionFields(StrEnum):
3799
+ code = 'Code'
3800
+ action = 'Action'
3801
+
3802
+ class SpecialPriceFields(StrEnum):
3803
+ item_code = 'ItemCode'
3804
+ card_code = 'CardCode'
3805
+ price = 'Price'
3806
+ currency = 'Currency'
3807
+ discount_percent = 'DiscountPercent'
3808
+ price_list_num = 'PriceListNum'
3809
+ auto_update = 'AutoUpdate'
3810
+ source_price = 'SourcePrice'
3811
+ valid = 'Valid'
3812
+ valid_from = 'ValidFrom'
3813
+ valid_to = 'ValidTo'
3814
+ special_price_data_areas = 'SpecialPriceDataAreas'
3815
+ item = 'Item'
3816
+ business_partner = 'BusinessPartner'
3817
+ price_list = 'PriceList'
3818
+
3819
+ class StateFields(StrEnum):
3820
+ code = 'Code'
3821
+ country = 'Country'
3822
+ name = 'Name'
3823
+ gst_code = 'GSTCode'
3824
+ is_union_territory = 'IsUnionTerritory'
3825
+ country2 = 'Country2'
3826
+
3827
+ class StockTakingFields(StrEnum):
3828
+ item_code = 'ItemCode'
3829
+ warehouse_code = 'WarehouseCode'
3830
+ counted = 'Counted'
3831
+ item = 'Item'
3832
+ warehouse = 'Warehouse'
3833
+
3834
+ class TSRExceptionalEventFields(StrEnum):
3835
+ code = 'Code'
3836
+ description = 'Description'
3837
+
3838
+ class TargetGroupFields(StrEnum):
3839
+ target_group_code = 'TargetGroupCode'
3840
+ target_group_name = 'TargetGroupName'
3841
+ target_group_type = 'TargetGroupType'
3842
+ target_groups_details = 'TargetGroupsDetails'
3843
+ campaigns = 'Campaigns'
3844
+
3845
+ class TaxCodeDeterminationFields(StrEnum):
3846
+ doc_entry = 'DocEntry'
3847
+ line_number = 'LineNumber'
3848
+ document_type = 'DocumentType'
3849
+ business_area = 'BusinessArea'
3850
+ condition1 = 'Condition1'
3851
+ udf_table1 = 'UDFTable1'
3852
+ number_value1 = 'NumberValue1'
3853
+ string_value1 = 'StringValue1'
3854
+ money_value1 = 'MoneyValue1'
3855
+ condition2 = 'Condition2'
3856
+ udf_table2 = 'UDFTable2'
3857
+ number_value2 = 'NumberValue2'
3858
+ string_value2 = 'StringValue2'
3859
+ money_value2 = 'MoneyValue2'
3860
+ condition3 = 'Condition3'
3861
+ udf_table3 = 'UDFTable3'
3862
+ number_value3 = 'NumberValue3'
3863
+ string_value3 = 'StringValue3'
3864
+ money_value3 = 'MoneyValue3'
3865
+ condition4 = 'Condition4'
3866
+ udf_table4 = 'UDFTable4'
3867
+ number_value4 = 'NumberValue4'
3868
+ string_value4 = 'StringValue4'
3869
+ money_value4 = 'MoneyValue4'
3870
+ condition5 = 'Condition5'
3871
+ udf_table5 = 'UDFTable5'
3872
+ number_value5 = 'NumberValue5'
3873
+ string_value5 = 'StringValue5'
3874
+ money_value5 = 'MoneyValue5'
3875
+ description = 'Description'
3876
+ tax_code = 'TaxCode'
3877
+ freight_row_tax = 'FreightRowTax'
3878
+ freight_header_tax = 'FreightHeaderTax'
3879
+ udf_alias1 = 'UDFAlias1'
3880
+ udf_alias2 = 'UDFAlias2'
3881
+ udf_alias3 = 'UDFAlias3'
3882
+ udf_alias4 = 'UDFAlias4'
3883
+ udf_alias5 = 'UDFAlias5'
3884
+
3885
+ class TaxCodeDeterminationTCDFields(StrEnum):
3886
+ abs_id = 'AbsId'
3887
+ tcd_type = 'TcdType'
3888
+ dft_ar_code = 'DftArCode'
3889
+ dft_ap_code = 'DftApCode'
3890
+ tax_code_determination_tcd_default_w_ts = 'TaxCodeDeterminationTCDDefaultWTs'
3891
+ tax_code_determination_tcd_by_usages = 'TaxCodeDeterminationTCDByUsages'
3892
+ tax_code_determination_tcd_key_fields = 'TaxCodeDeterminationTCDKeyFields'
3893
+
3894
+ class TaxExemptReasonFields(StrEnum):
3895
+ code = 'Code'
3896
+ description = 'Description'
3897
+ vat_groups = 'VatGroups'
3898
+
3899
+ class TaxInvoiceReportFields(StrEnum):
3900
+ nts_approval = 'NTSApproval'
3901
+ e_tax_web_site = 'ETaxWebSite'
3902
+ e_tax_no = 'ETaxNo'
3903
+ nts_approval_no = 'NTSApprovalNo'
3904
+ original_nts_approval_no = 'OriginalNTSApprovalNo'
3905
+ remarks = 'Remarks'
3906
+ tax_invoice_report_number = 'TaxInvoiceReportNumber'
3907
+ date = 'Date'
3908
+ business_place = 'BusinessPlace'
3909
+ bp_code = 'BPCode'
3910
+ bp_name = 'BPName'
3911
+ base_amount = 'BaseAmount'
3912
+ tax_amount = 'TaxAmount'
3913
+ canceled = 'Canceled'
3914
+ report_type = 'ReportType'
3915
+ tax_invoice_report_line_collection = 'TaxInvoiceReportLineCollection'
3916
+ tax_web_site = 'TaxWebSite'
3917
+
3918
+ class TaxReplStateSubDataFields(StrEnum):
3919
+ state = 'State'
3920
+ iest = 'IEST'
3921
+
3922
+ class TaxReportFilterFields(StrEnum):
3923
+ code = 'Code'
3924
+ name = 'Name'
3925
+ report_layout = 'ReportLayout'
3926
+ first_printed_number = 'FirstPrintedNumber'
3927
+ from_date = 'FromDate'
3928
+ to_date = 'ToDate'
3929
+ tax_date = 'TaxDate'
3930
+ round_amount = 'RoundAmount'
3931
+ declaration_type = 'DeclarationType'
3932
+ filter_type = 'FilterType'
3933
+ exclude_wt = 'ExcludeWT'
3934
+ include_customers = 'IncludeCustomers'
3935
+ include_vendors = 'IncludeVendors'
3936
+ period = 'Period'
3937
+ quarter = 'Quarter'
3938
+ year = 'Year'
3939
+ document_type = 'DocumentType'
3940
+ first_register_number = 'FirstRegisterNumber'
3941
+ include_gl_accounts = 'IncludeGLAccounts'
3942
+ appendix_oor_p_selection = 'AppendixOorPSelection'
3943
+ opening_and_closing_balance = 'OpeningAndClosingBalance'
3944
+ from_series = 'FromSeries'
3945
+ to_series = 'ToSeries'
3946
+ cancellation = 'Cancellation'
3947
+ hide_tax_without_transaction = 'HideTaxWithoutTransaction'
3948
+ include_series_filter = 'IncludeSeriesFilter'
3949
+ include_document_type = 'IncludeDocumentType'
3950
+ diplay_credit_memos_in_separate_column = 'DiplayCreditMemosInSeparateColumn'
3951
+ show_payments_with_deferred_tax = 'ShowPaymentsWithDeferredTax'
3952
+ quarter_or_dates = 'QuarterOrDates'
3953
+ tax_report_groups = 'TaxReportGroups'
3954
+ tax_report_business_partners = 'TaxReportBusinessPartners'
3955
+ tax_report_documents = 'TaxReportDocuments'
3956
+ tax_report_series_collection = 'TaxReportSeriesCollection'
3957
+ tax_report_accounts = 'TaxReportAccounts'
3958
+
3959
+ class TaxWebSiteFields(StrEnum):
3960
+ abs_entry = 'AbsEntry'
3961
+ web_site_name = 'WebSiteName'
3962
+ web_site_url = 'WebSiteURL'
3963
+ description = 'Description'
3964
+ purchase_quotations = 'PurchaseQuotations'
3965
+ correction_invoice_reversal = 'CorrectionInvoiceReversal'
3966
+ correction_invoice = 'CorrectionInvoice'
3967
+ purchase_delivery_notes = 'PurchaseDeliveryNotes'
3968
+ correction_purchase_invoice = 'CorrectionPurchaseInvoice'
3969
+ inventory_gen_entries = 'InventoryGenEntries'
3970
+ orders = 'Orders'
3971
+ inventory_gen_exits = 'InventoryGenExits'
3972
+ drafts = 'Drafts'
3973
+ tax_invoice_report = 'TaxInvoiceReport'
3974
+ return_request = 'ReturnRequest'
3975
+ delivery_notes = 'DeliveryNotes'
3976
+ purchase_invoices = 'PurchaseInvoices'
3977
+ self_invoices = 'SelfInvoices'
3978
+ invoices = 'Invoices'
3979
+ credit_notes = 'CreditNotes'
3980
+ purchase_credit_notes = 'PurchaseCreditNotes'
3981
+ business_partners = 'BusinessPartners'
3982
+ down_payments = 'DownPayments'
3983
+ purchase_down_payments = 'PurchaseDownPayments'
3984
+ purchase_returns = 'PurchaseReturns'
3985
+ purchase_orders = 'PurchaseOrders'
3986
+ self_credit_memos = 'SelfCreditMemos'
3987
+ quotations = 'Quotations'
3988
+ returns = 'Returns'
3989
+ goods_return_request = 'GoodsReturnRequest'
3990
+ correction_purchase_invoice_reversal = 'CorrectionPurchaseInvoiceReversal'
3991
+ purchase_requests = 'PurchaseRequests'
3992
+
3993
+ class TeamFields(StrEnum):
3994
+ team_id = 'TeamID'
3995
+ team_name = 'TeamName'
3996
+ description = 'Description'
3997
+ team_members = 'TeamMembers'
3998
+
3999
+ class TerminationReasonFields(StrEnum):
4000
+ reason_id = 'ReasonID'
4001
+ name = 'Name'
4002
+ description = 'Description'
4003
+ employees_info = 'EmployeesInfo'
4004
+
4005
+ class TerritoryFields(StrEnum):
4006
+ territory_id = 'TerritoryID'
4007
+ description = 'Description'
4008
+ location_index = 'LocationIndex'
4009
+ inactive = 'Inactive'
4010
+ parent = 'Parent'
4011
+ sales_opportunities = 'SalesOpportunities'
4012
+ customer_equipment_cards = 'CustomerEquipmentCards'
4013
+ business_partners = 'BusinessPartners'
4014
+ project_managements = 'ProjectManagements'
4015
+
4016
+ class TrackingNoteFields(StrEnum):
4017
+ tracking_note_number = 'TrackingNoteNumber'
4018
+ ccd_number = 'CCDNumber'
4019
+ date = 'Date'
4020
+ customs_terminal = 'CustomsTerminal'
4021
+ country_of_origin = 'CountryOfOrigin'
4022
+ is_direct_import = 'IsDirectImport'
4023
+ tracking_note_item_collection = 'TrackingNoteItemCollection'
4024
+ tracking_note_broker_collection = 'TrackingNoteBrokerCollection'
4025
+
4026
+ class TransactionCodeFields(StrEnum):
4027
+ code = 'Code'
4028
+ description = 'Description'
4029
+ vendor_payments = 'VendorPayments'
4030
+ journal_entries = 'JournalEntries'
4031
+ chart_of_accounts = 'ChartOfAccounts'
4032
+ payment_drafts = 'PaymentDrafts'
4033
+ incoming_payments = 'IncomingPayments'
4034
+
4035
+ class TransportationDocumentDataFields(StrEnum):
4036
+ transp_doc_number = 'TranspDocNumber'
4037
+ next_number = 'NextNumber'
4038
+ post_date = 'PostDate'
4039
+ el_doc_gen_type = 'ElDocGenType'
4040
+ el_doc_export_format = 'ElDocExportFormat'
4041
+ transportation_number = 'TransportationNumber'
4042
+ expiration_date = 'ExpirationDate'
4043
+ vehicle_id = 'VehicleID'
4044
+ trailer_id = 'TrailerID'
4045
+ carrier_code = 'CarrierCode'
4046
+ issue_gate = 'IssueGate'
4047
+ attachment_entry = 'AttachmentEntry'
4048
+ canceled = 'Canceled'
4049
+ weight = 'Weight'
4050
+ weight_unit = 'WeightUnit'
4051
+ transported_total_lc = 'TransportedTotalLC'
4052
+ warehouse_code = 'WarehouseCode'
4053
+ cot_code = 'COTCode'
4054
+ transportation_document_line_data_collection = 'TransportationDocumentLineDataCollection'
4055
+ electronic_protocols = 'ElectronicProtocols'
4056
+
4057
+ class UnitOfMeasurementFields(StrEnum):
4058
+ abs_entry = 'AbsEntry'
4059
+ code = 'Code'
4060
+ name = 'Name'
4061
+ length1 = 'Length1'
4062
+ length1_unit = 'Length1Unit'
4063
+ length2 = 'Length2'
4064
+ length2_unit = 'Length2Unit'
4065
+ width1 = 'Width1'
4066
+ width1_unit = 'Width1Unit'
4067
+ width2 = 'Width2'
4068
+ width2_unit = 'Width2Unit'
4069
+ height1 = 'Height1'
4070
+ height1_unit = 'Height1Unit'
4071
+ height2 = 'Height2'
4072
+ height2_unit = 'Height2Unit'
4073
+ volume = 'Volume'
4074
+ volume_unit = 'VolumeUnit'
4075
+ weight1 = 'Weight1'
4076
+ weight1_unit = 'Weight1Unit'
4077
+ weight2 = 'Weight2'
4078
+ weight2_unit = 'Weight2Unit'
4079
+ international_symbol = 'InternationalSymbol'
4080
+ ewb_unit_entry = 'EWBUnitEntry'
4081
+ pp_weight1 = 'PPWeight1'
4082
+ pp_we1_unit = 'PPWe1Unit'
4083
+ pp_weight2 = 'PPWeight2'
4084
+ pp_we2_unit = 'PPWe2Unit'
4085
+ item_groups = 'ItemGroups'
4086
+ items = 'Items'
4087
+ bin_locations = 'BinLocations'
4088
+ bar_codes = 'BarCodes'
4089
+ unit_of_measurement_groups = 'UnitOfMeasurementGroups'
4090
+ production_orders = 'ProductionOrders'
4091
+
4092
+ class UnitOfMeasurementGroupFields(StrEnum):
4093
+ abs_entry = 'AbsEntry'
4094
+ code = 'Code'
4095
+ name = 'Name'
4096
+ base_uo_m = 'BaseUoM'
4097
+ uo_m_group_definition_collection = 'UoMGroupDefinitionCollection'
4098
+ item_groups = 'ItemGroups'
4099
+ items = 'Items'
4100
+ bin_locations = 'BinLocations'
4101
+ unit_of_measurement = 'UnitOfMeasurement'
4102
+
4103
+ class UserFields(StrEnum):
4104
+ internal_key = 'InternalKey'
4105
+ user_password = 'UserPassword'
4106
+ user_code = 'UserCode'
4107
+ user_name = 'UserName'
4108
+ superuser = 'Superuser'
4109
+ e_mail = 'eMail'
4110
+ mobile_phone_number = 'MobilePhoneNumber'
4111
+ defaults = 'Defaults'
4112
+ fax_number = 'FaxNumber'
4113
+ branch = 'Branch'
4114
+ department = 'Department'
4115
+ language_code = 'LanguageCode'
4116
+ locked = 'Locked'
4117
+ group = 'Group'
4118
+ max_discount_general = 'MaxDiscountGeneral'
4119
+ max_discount_sales = 'MaxDiscountSales'
4120
+ max_discount_purchase = 'MaxDiscountPurchase'
4121
+ cash_limit = 'CashLimit'
4122
+ max_cash_amt_for_incmng_payts = 'MaxCashAmtForIncmngPayts'
4123
+ last_logout_date = 'LastLogoutDate'
4124
+ last_login_time = 'LastLoginTime'
4125
+ last_logout_time = 'LastLogoutTime'
4126
+ last_password_change_time = 'LastPasswordChangeTime'
4127
+ last_password_changed_by = 'LastPasswordChangedBy'
4128
+ user_permission = 'UserPermission'
4129
+ user_action_record = 'UserActionRecord'
4130
+ user_group_by_user = 'UserGroupByUser'
4131
+ user_branch_assignment = 'UserBranchAssignment'
4132
+ sales_opportunities = 'SalesOpportunities'
4133
+ user_default_groups = 'UserDefaultGroups'
4134
+ legal_data = 'LegalData'
4135
+ purchase_quotations = 'PurchaseQuotations'
4136
+ bank_pages = 'BankPages'
4137
+ correction_invoice_reversal = 'CorrectionInvoiceReversal'
4138
+ correction_invoice = 'CorrectionInvoice'
4139
+ purchase_delivery_notes = 'PurchaseDeliveryNotes'
4140
+ correction_purchase_invoice = 'CorrectionPurchaseInvoice'
4141
+ pick_lists = 'PickLists'
4142
+ inventory_gen_entries = 'InventoryGenEntries'
4143
+ service_calls = 'ServiceCalls'
4144
+ employees_info = 'EmployeesInfo'
4145
+ orders = 'Orders'
4146
+ wizard_payment_methods = 'WizardPaymentMethods'
4147
+ service_contracts = 'ServiceContracts'
4148
+ inventory_gen_exits = 'InventoryGenExits'
4149
+ material_revaluation = 'MaterialRevaluation'
4150
+ drafts = 'Drafts'
4151
+ approval_requests = 'ApprovalRequests'
4152
+ queue = 'Queue'
4153
+ return_request = 'ReturnRequest'
4154
+ delivery_notes = 'DeliveryNotes'
4155
+ branch2 = 'Branch2'
4156
+ department2 = 'Department2'
4157
+ purchase_invoices = 'PurchaseInvoices'
4158
+ self_invoices = 'SelfInvoices'
4159
+ sales_tax_authorities = 'SalesTaxAuthorities'
4160
+ invoices = 'Invoices'
4161
+ credit_notes = 'CreditNotes'
4162
+ sales_tax_authorities_types = 'SalesTaxAuthoritiesTypes'
4163
+ knowledge_base_solutions = 'KnowledgeBaseSolutions'
4164
+ contacts = 'Contacts'
4165
+ purchase_credit_notes = 'PurchaseCreditNotes'
4166
+ production_orders = 'ProductionOrders'
4167
+ down_payments = 'DownPayments'
4168
+ purchase_down_payments = 'PurchaseDownPayments'
4169
+ purchase_returns = 'PurchaseReturns'
4170
+ cockpits = 'Cockpits'
4171
+ user_permission_tree = 'UserPermissionTree'
4172
+ activities = 'Activities'
4173
+ purchase_orders = 'PurchaseOrders'
4174
+ self_credit_memos = 'SelfCreditMemos'
4175
+ quotations = 'Quotations'
4176
+ returns = 'Returns'
4177
+ goods_return_request = 'GoodsReturnRequest'
4178
+ sales_tax_codes = 'SalesTaxCodes'
4179
+ correction_purchase_invoice_reversal = 'CorrectionPurchaseInvoiceReversal'
4180
+ purchase_requests = 'PurchaseRequests'
4181
+ form_preferences = 'FormPreferences'
4182
+
4183
+ class UserDefaultGroupFields(StrEnum):
4184
+ code = 'Code'
4185
+ name = 'Name'
4186
+ warehouse = 'Warehouse'
4187
+ sales_employee = 'SalesEmployee'
4188
+ b_pfor_invoice_payment = 'BPforInvoicePayment'
4189
+ cash_account = 'CashAccount'
4190
+ checking_acct = 'CheckingAcct'
4191
+ print_receipt = 'PrintReceipt'
4192
+ print_invoiceand_paymentin_s = 'PrintInvoiceandPaymentinS'
4193
+ windows_color = 'WindowsColor'
4194
+ address = 'Address'
4195
+ country = 'Country'
4196
+ printing_header = 'PrintingHeader'
4197
+ phone_number1 = 'PhoneNumber1'
4198
+ phone_number2 = 'PhoneNumber2'
4199
+ fax_number = 'FaxNumber'
4200
+ e_mail = 'eMail'
4201
+ addressin_foreign_language = 'AddressinForeignLanguage'
4202
+ printing_header_in_foreign_langu = 'PrintingHeaderInForeignLangu'
4203
+ phone_number1_foreign_lang = 'PhoneNumber1ForeignLang'
4204
+ phone_number2_foreign_lang = 'PhoneNumber2ForeignLang'
4205
+ fax_number_foreign_lang = 'FaxNumberForeignLang'
4206
+ default_tax_code = 'DefaultTaxCode'
4207
+ additional_id_number = 'AdditionalIdNumber'
4208
+ user_signature = 'UserSignature'
4209
+ use_tax = 'UseTax'
4210
+ use_warehouse_addressin_apd = 'UseWarehouseAddressinAPD'
4211
+ bplid = 'BPLID'
4212
+ asset_in_doc = 'AssetInDoc'
4213
+ language_code = 'LanguageCode'
4214
+ default_documents = 'DefaultDocuments'
4215
+ default_credit_cards = 'DefaultCreditCards'
4216
+ warehouse2 = 'Warehouse2'
4217
+ sales_person = 'SalesPerson'
4218
+ business_partner = 'BusinessPartner'
4219
+ country2 = 'Country2'
4220
+ sales_tax_code = 'SalesTaxCode'
4221
+ user = 'User'
4222
+ business_place = 'BusinessPlace'
4223
+ user_language = 'UserLanguage'
4224
+
4225
+ class UserFieldMDFields(StrEnum):
4226
+ name = 'Name'
4227
+ type = 'Type'
4228
+ size = 'Size'
4229
+ description = 'Description'
4230
+ sub_type = 'SubType'
4231
+ linked_table = 'LinkedTable'
4232
+ default_value = 'DefaultValue'
4233
+ table_name = 'TableName'
4234
+ field_id = 'FieldID'
4235
+ edit_size = 'EditSize'
4236
+ mandatory = 'Mandatory'
4237
+ linked_udo = 'LinkedUDO'
4238
+ linked_system_object = 'LinkedSystemObject'
4239
+ valid_values_md = 'ValidValuesMD'
4240
+ user_tables_md = 'UserTablesMD'
4241
+
4242
+ class UserGroupFields(StrEnum):
4243
+ user_group_id = 'UserGroupId'
4244
+ user_group_name = 'UserGroupName'
4245
+ user_group_dec = 'UserGroupDec'
4246
+ tpl_id = 'TPLId'
4247
+ start_date = 'StartDate'
4248
+ due_date = 'DueDate'
4249
+ user_group_type = 'UserGroupType'
4250
+
4251
+ class UserKeysMDFields(StrEnum):
4252
+ table_name = 'TableName'
4253
+ key_index = 'KeyIndex'
4254
+ key_name = 'KeyName'
4255
+ unique = 'Unique'
4256
+ user_keys_md_elements = 'UserKeysMD_Elements'
4257
+
4258
+ class UserLanguageFields(StrEnum):
4259
+ code = 'Code'
4260
+ language_short_name = 'LanguageShortName'
4261
+ language_full_name = 'LanguageFullName'
4262
+ related_system_language = 'RelatedSystemLanguage'
4263
+ user_default_groups = 'UserDefaultGroups'
4264
+ purchase_quotations = 'PurchaseQuotations'
4265
+ correction_invoice_reversal = 'CorrectionInvoiceReversal'
4266
+ correction_invoice = 'CorrectionInvoice'
4267
+ purchase_delivery_notes = 'PurchaseDeliveryNotes'
4268
+ correction_purchase_invoice = 'CorrectionPurchaseInvoice'
4269
+ inventory_gen_entries = 'InventoryGenEntries'
4270
+ orders = 'Orders'
4271
+ inventory_gen_exits = 'InventoryGenExits'
4272
+ drafts = 'Drafts'
4273
+ return_request = 'ReturnRequest'
4274
+ delivery_notes = 'DeliveryNotes'
4275
+ purchase_invoices = 'PurchaseInvoices'
4276
+ self_invoices = 'SelfInvoices'
4277
+ invoices = 'Invoices'
4278
+ credit_notes = 'CreditNotes'
4279
+ purchase_credit_notes = 'PurchaseCreditNotes'
4280
+ business_partners = 'BusinessPartners'
4281
+ down_payments = 'DownPayments'
4282
+ purchase_down_payments = 'PurchaseDownPayments'
4283
+ purchase_returns = 'PurchaseReturns'
4284
+ purchase_orders = 'PurchaseOrders'
4285
+ self_credit_memos = 'SelfCreditMemos'
4286
+ quotations = 'Quotations'
4287
+ returns = 'Returns'
4288
+ goods_return_request = 'GoodsReturnRequest'
4289
+ correction_purchase_invoice_reversal = 'CorrectionPurchaseInvoiceReversal'
4290
+ purchase_requests = 'PurchaseRequests'
4291
+
4292
+ class UserObjectsMDFields(StrEnum):
4293
+ table_name = 'TableName'
4294
+ code = 'Code'
4295
+ log_table_name = 'LogTableName'
4296
+ can_create_default_form = 'CanCreateDefaultForm'
4297
+ object_type = 'ObjectType'
4298
+ extension_name = 'ExtensionName'
4299
+ can_cancel = 'CanCancel'
4300
+ can_delete = 'CanDelete'
4301
+ can_log = 'CanLog'
4302
+ manage_series = 'ManageSeries'
4303
+ can_find = 'CanFind'
4304
+ can_year_transfer = 'CanYearTransfer'
4305
+ name = 'Name'
4306
+ can_close = 'CanClose'
4307
+ overwrite_dllfile = 'OverwriteDllfile'
4308
+ use_unique_form_type = 'UseUniqueFormType'
4309
+ can_archive = 'CanArchive'
4310
+ menu_item = 'MenuItem'
4311
+ menu_caption = 'MenuCaption'
4312
+ father_menu_id = 'FatherMenuID'
4313
+ position = 'Position'
4314
+ menu_uid = 'MenuUID'
4315
+ enable_enhanced_form = 'EnableEnhancedForm'
4316
+ rebuild_enhanced_form = 'RebuildEnhancedForm'
4317
+ form_srf = 'FormSRF'
4318
+ apply_authorization = 'ApplyAuthorization'
4319
+ personal_data_protection = 'PersonalDataProtection'
4320
+ user_object_md_child_tables = 'UserObjectMD_ChildTables'
4321
+ user_object_md_find_columns = 'UserObjectMD_FindColumns'
4322
+ user_object_md_form_columns = 'UserObjectMD_FormColumns'
4323
+ user_object_md_enhanced_form_columns = 'UserObjectMD_EnhancedFormColumns'
4324
+ user_tables_md = 'UserTablesMD'
4325
+
4326
+ class UserPermissionTreeFields(StrEnum):
4327
+ user_signature = 'UserSignature'
4328
+ display_order = 'DisplayOrder'
4329
+ permission_id = 'PermissionID'
4330
+ options = 'Options'
4331
+ name = 'Name'
4332
+ levels = 'Levels'
4333
+ is_item = 'IsItem'
4334
+ parent_id = 'ParentID'
4335
+ user_permission_forms = 'UserPermissionForms'
4336
+ user = 'User'
4337
+
4338
+ class UserQueryFields(StrEnum):
4339
+ internal_key = 'InternalKey'
4340
+ query_category = 'QueryCategory'
4341
+ query_description = 'QueryDescription'
4342
+ query = 'Query'
4343
+ procedure_alias = 'ProcedureAlias'
4344
+ procedure_name = 'ProcedureName'
4345
+ query_type = 'QueryType'
4346
+ menu_caption = 'MenuCaption'
4347
+ parent_menu_id = 'ParentMenuID'
4348
+ menu_position = 'MenuPosition'
4349
+ menu_unique_id = 'MenuUniqueID'
4350
+ enable_menu_entry = 'EnableMenuEntry'
4351
+ query_category2 = 'QueryCategory2'
4352
+
4353
+ class UserTablesMDFields(StrEnum):
4354
+ table_name = 'TableName'
4355
+ table_description = 'TableDescription'
4356
+ table_type = 'TableType'
4357
+ archivable = 'Archivable'
4358
+ archive_date_field = 'ArchiveDateField'
4359
+ display_menu = 'DisplayMenu'
4360
+ apply_authorization = 'ApplyAuthorization'
4361
+ user_fields_md = 'UserFieldsMD'
4362
+ user_objects_md = 'UserObjectsMD'
4363
+
4364
+ class ValueMappingCommunicationDataFields(StrEnum):
4365
+ abs_entry = 'AbsEntry'
4366
+ third_party_system_id = 'ThirdPartySystemId'
4367
+ object_id = 'ObjectId'
4368
+ communication_type = 'CommunicationType'
4369
+ start_date = 'StartDate'
4370
+ start_time = 'StartTime'
4371
+ end_date = 'EndDate'
4372
+ end_time = 'EndTime'
4373
+ message = 'Message'
4374
+ status = 'Status'
4375
+
4376
+ class WTDCodeFields(StrEnum):
4377
+ abs_entry = 'AbsEntry'
4378
+ w_tax_code = 'WTaxCode'
4379
+ w_tax_name = 'WTaxName'
4380
+ formula_id = 'FormulaID'
4381
+ inactive = 'Inactive'
4382
+ official_code = 'OfficialCode'
4383
+ category = 'Category'
4384
+ base_type = 'BaseType'
4385
+ type = 'Type'
4386
+ min_amount = 'MinAmount'
4387
+ base_amount_prct = 'BaseAmountPrct'
4388
+ sliding_scale_progressive_tax = 'SlidingScaleProgressiveTax'
4389
+ calculate_in_automatic_cm = 'CalculateInAutomaticCM'
4390
+ wtd_effective_date_collection = 'WTDEffectiveDateCollection'
4391
+ wtdbp_collection = 'WTDBPCollection'
4392
+ wtd_item_collection = 'WTDItemCollection'
4393
+ wtd_freight_collection = 'WTDFreightCollection'
4394
+
4395
+ class WTaxTypeCodeFields(StrEnum):
4396
+ code = 'Code'
4397
+ description = 'Description'
4398
+
4399
+ class WebClientBookmarkTileFields(StrEnum):
4400
+ guid = 'Guid'
4401
+ title = 'Title'
4402
+ sub_title = 'SubTitle'
4403
+ info = 'Info'
4404
+ bind_type = 'BindType'
4405
+ url_target = 'UrlTarget'
4406
+
4407
+ class WebClientDashboardFields(StrEnum):
4408
+ guid = 'Guid'
4409
+ user_id = 'UserId'
4410
+ content = 'Content'
4411
+ sys = 'Sys'
4412
+ web_client_dashboard_cards = 'WebClientDashboardCards'
4413
+
4414
+ class WebClientFormSettingFields(StrEnum):
4415
+ guid = 'Guid'
4416
+ form_id = 'FormId'
4417
+ user_id = 'UserId'
4418
+ doc_object_code = 'DocObjectCode'
4419
+ web_client_form_setting_items = 'WebClientFormSettingItems'
4420
+
4421
+ class WebClientLaunchpadFields(StrEnum):
4422
+ guid = 'Guid'
4423
+ user_id = 'UserId'
4424
+ theme_id = 'ThemeId'
4425
+ display_quick_view = 'DisplayQuickView'
4426
+ notification_show_days = 'NotificationShowDays'
4427
+ web_client_launchpad_groups = 'WebClientLaunchpadGroups'
4428
+
4429
+ class WebClientListviewFilterFields(StrEnum):
4430
+ guid = 'Guid'
4431
+ user_id = 'UserId'
4432
+ table_name = 'TableName'
4433
+ filter_name = 'FilterName'
4434
+ web_client_listview_filter_conditions = 'WebClientListviewFilterConditions'
4435
+
4436
+ class WebClientNotificationFields(StrEnum):
4437
+ guid = 'Guid'
4438
+ user_id = 'UserId'
4439
+ activity_date = 'ActivityDate'
4440
+ read_status = 'ReadStatus'
4441
+ is_dismissed = 'IsDismissed'
4442
+ noti_type = 'NotiType'
4443
+
4444
+ class WebClientPreferenceFields(StrEnum):
4445
+ guid = 'Guid'
4446
+ user_id = 'UserId'
4447
+ table_name = 'TableName'
4448
+ column_name = 'ColumnName'
4449
+ default_value = 'DefaultValue'
4450
+
4451
+ class WebClientRecentActivityFields(StrEnum):
4452
+ guid = 'Guid'
4453
+ app_id = 'AppId'
4454
+ app_type = 'AppType'
4455
+ count = 'Count'
4456
+ timestamp = 'Timestamp'
4457
+ title = 'Title'
4458
+ url = 'Url'
4459
+ usage_array = 'UsageArray'
4460
+ user_id = 'UserId'
4461
+ recent_day = 'RecentDay'
4462
+
4463
+ class WebClientVariantFields(StrEnum):
4464
+ guid = 'Guid'
4465
+ order = 'Order'
4466
+ user_id = 'UserId'
4467
+ view_type = 'ViewType'
4468
+ sub_view_type = 'SubViewType'
4469
+ view_id = 'ViewId'
4470
+ object_name = 'ObjectName'
4471
+ filter_bar_layout = 'FilterBarLayout'
4472
+ system_filter = 'SystemFilter'
4473
+ user_filter = 'UserFilter'
4474
+ condition_filter = 'ConditionFilter'
4475
+ is_public = 'IsPublic'
4476
+ is_system = 'IsSystem'
4477
+ name = 'Name'
4478
+ version = 'Version'
4479
+ overview_customization = 'OverviewCustomization'
4480
+ chart_customization = 'ChartCustomization'
4481
+ web_client_variant_selected_column_collection = 'WebClientVariantSelectedColumnCollection'
4482
+ web_client_variant_group_by_collection = 'WebClientVariantGroupByCollection'
4483
+ web_client_variant_sort_by_collection = 'WebClientVariantSortByCollection'
4484
+ web_client_variant_embedded_chart_collection = 'WebClientVariantEmbeddedChartCollection'
4485
+ web_client_variant_m_chart_collection = 'WebClientVariantMChartCollection'
4486
+
4487
+ class WebClientVariantGroupFields(StrEnum):
4488
+ guid = 'Guid'
4489
+ user_id = 'UserId'
4490
+ view_type = 'ViewType'
4491
+ view_id = 'ViewId'
4492
+ object_name = 'ObjectName'
4493
+ default_variant = 'DefaultVariant'
4494
+
4495
+ class WeightMeasureFields(StrEnum):
4496
+ unit_code = 'UnitCode'
4497
+ unit_display = 'UnitDisplay'
4498
+ unit_name = 'UnitName'
4499
+ unit_weightinmg = 'UnitWeightinmg'
4500
+ bin_locations = 'BinLocations'
4501
+
4502
+ class WizardPaymentMethodFields(StrEnum):
4503
+ payment_method_code = 'PaymentMethodCode'
4504
+ description = 'Description'
4505
+ type = 'Type'
4506
+ payment_means = 'PaymentMeans'
4507
+ check_address = 'CheckAddress'
4508
+ check_bank_details = 'CheckBankDetails'
4509
+ collection_authorization_check = 'CollectionAuthorizationCheck'
4510
+ block_foreign_payment = 'BlockForeignPayment'
4511
+ block_foreign_bank = 'BlockForeignBank'
4512
+ currency_restriction = 'CurrencyRestriction'
4513
+ post_office_bank = 'PostOfficeBank'
4514
+ minimum_amount = 'MinimumAmount'
4515
+ maximum_amount = 'MaximumAmount'
4516
+ default_bank = 'DefaultBank'
4517
+ user_signature = 'UserSignature'
4518
+ creation_date = 'CreationDate'
4519
+ bank_country = 'BankCountry'
4520
+ default_account = 'DefaultAccount'
4521
+ gl_account = 'GLAccount'
4522
+ branch = 'Branch'
4523
+ key_code = 'KeyCode'
4524
+ transaction_type = 'TransactionType'
4525
+ format = 'Format'
4526
+ agent_collection = 'AgentCollection'
4527
+ sendfor_acceptance = 'SendforAcceptance'
4528
+ group_by_date = 'GroupByDate'
4529
+ deposit_norm = 'DepositNorm'
4530
+ debit_memo = 'DebitMemo'
4531
+ group_by_payment_reference = 'GroupByPaymentReference'
4532
+ group_invoicesby_pay = 'GroupInvoicesbyPay'
4533
+ due_date_selection = 'DueDateSelection'
4534
+ payment_terms_code = 'PaymentTermsCode'
4535
+ postto_gl_interim_account = 'PosttoGLInterimAccount'
4536
+ bank_account_key = 'BankAccountKey'
4537
+ doc_type = 'DocType'
4538
+ accepted = 'Accepted'
4539
+ portfolio_id = 'PortfolioID'
4540
+ cur_code = 'CurCode'
4541
+ instruction1 = 'Instruction1'
4542
+ instruction2 = 'Instruction2'
4543
+ payment_place = 'PaymentPlace'
4544
+ barcode_dll = 'BarcodeDll'
4545
+ active = 'Active'
4546
+ group_invoices_by_pay_to_bank = 'GroupInvoicesByPayToBank'
4547
+ group_invoices_by_currency = 'GroupInvoicesByCurrency'
4548
+ bank_charge_rate = 'BankChargeRate'
4549
+ report_code = 'ReportCode'
4550
+ cancel_instruction = 'CancelInstruction'
4551
+ occurence_code = 'OccurenceCode'
4552
+ movement_code = 'MovementCode'
4553
+ direct_debit = 'DirectDebit'
4554
+ currency_restrictions = 'CurrencyRestrictions'
4555
+ purchase_quotations = 'PurchaseQuotations'
4556
+ correction_invoice_reversal = 'CorrectionInvoiceReversal'
4557
+ correction_invoice = 'CorrectionInvoice'
4558
+ purchase_delivery_notes = 'PurchaseDeliveryNotes'
4559
+ correction_purchase_invoice = 'CorrectionPurchaseInvoice'
4560
+ inventory_gen_entries = 'InventoryGenEntries'
4561
+ orders = 'Orders'
4562
+ user = 'User'
4563
+ country = 'Country'
4564
+ chart_of_account = 'ChartOfAccount'
4565
+ payment_terms_type = 'PaymentTermsType'
4566
+ house_bank_account = 'HouseBankAccount'
4567
+ inventory_gen_exits = 'InventoryGenExits'
4568
+ drafts = 'Drafts'
4569
+ return_request = 'ReturnRequest'
4570
+ delivery_notes = 'DeliveryNotes'
4571
+ purchase_invoices = 'PurchaseInvoices'
4572
+ self_invoices = 'SelfInvoices'
4573
+ blanket_agreements = 'BlanketAgreements'
4574
+ invoices = 'Invoices'
4575
+ credit_notes = 'CreditNotes'
4576
+ purchase_credit_notes = 'PurchaseCreditNotes'
4577
+ business_partners = 'BusinessPartners'
4578
+ down_payments = 'DownPayments'
4579
+ purchase_down_payments = 'PurchaseDownPayments'
4580
+ purchase_returns = 'PurchaseReturns'
4581
+ purchase_orders = 'PurchaseOrders'
4582
+ self_credit_memos = 'SelfCreditMemos'
4583
+ quotations = 'Quotations'
4584
+ returns = 'Returns'
4585
+ goods_return_request = 'GoodsReturnRequest'
4586
+ correction_purchase_invoice_reversal = 'CorrectionPurchaseInvoiceReversal'
4587
+ purchase_requests = 'PurchaseRequests'