__manifest__.py 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'Belgium - Accounting',
  5. 'version': '2.0',
  6. 'category': 'Accounting/Localizations/Account Charts',
  7. 'description': """
  8. This is the base module to manage the accounting chart for Belgium in Odoo.
  9. ==============================================================================
  10. After installing this module, the Configuration wizard for accounting is launched.
  11. * We have the account templates which can be helpful to generate Charts of Accounts.
  12. * On that particular wizard, you will be asked to pass the name of the company,
  13. the chart template to follow, the no. of digits to generate, the code for your
  14. account and bank account, currency to create journals.
  15. Thus, the pure copy of Chart Template is generated.
  16. Wizards provided by this module:
  17. --------------------------------
  18. * Partner VAT Intra: Enlist the partners with their related VAT and invoiced
  19. amounts. Prepares an XML file format.
  20. **Path to access :** Invoicing/Reporting/Legal Reports/Belgium Statements/Partner VAT Intra
  21. * Periodical VAT Declaration: Prepares an XML file for Vat Declaration of
  22. the Main company of the User currently Logged in.
  23. **Path to access :** Invoicing/Reporting/Legal Reports/Belgium Statements/Periodical VAT Declaration
  24. * Annual Listing Of VAT-Subjected Customers: Prepares an XML file for Vat
  25. Declaration of the Main company of the User currently Logged in Based on
  26. Fiscal year.
  27. **Path to access :** Invoicing/Reporting/Legal Reports/Belgium Statements/Annual Listing Of VAT-Subjected Customers
  28. """,
  29. 'author': 'Noviat, Odoo SA',
  30. 'depends': [
  31. 'account',
  32. 'base_iban',
  33. 'base_vat',
  34. 'l10n_multilang',
  35. ],
  36. 'data': [
  37. 'data/account_chart_template_data.xml',
  38. 'data/account.account.template.csv',
  39. 'data/account_pcmn_belgium_data.xml',
  40. 'data/account_tax_group_data.xml',
  41. 'data/account_tax_report_data.xml',
  42. 'data/account_tax_template_data.xml',
  43. 'data/l10n_be_sequence_data.xml',
  44. 'data/fiscal_templates_data.xml',
  45. 'data/account_fiscal_position_tax_template_data.xml',
  46. 'data/account_reconcile_model_template.xml',
  47. 'data/account.group.template.csv',
  48. 'data/account_chart_template_configure_data.xml',
  49. 'data/menuitem_data.xml',
  50. ],
  51. 'demo': [
  52. 'demo/l10n_be_demo.xml',
  53. 'demo/demo_company.xml',
  54. ],
  55. 'post_init_hook': 'load_translations',
  56. 'license': 'LGPL-3',
  57. }