__manifest__.py 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. # Copyright (C) 2011 Thamini S.à.R.L (<http://www.thamini.com>)
  4. # Copyright (C) 2011 ADN Consultants S.à.R.L (<http://www.adn-luxembourg.com>)
  5. # Copyright (C) 2014 ACSONE SA/NV (<http://acsone.eu>)
  6. {
  7. 'name': 'Luxembourg - Accounting',
  8. 'version': '2.1',
  9. 'category': 'Accounting/Localizations/Account Charts',
  10. 'description': """
  11. This is the base module to manage the accounting chart for Luxembourg.
  12. ======================================================================
  13. * the Luxembourg Official Chart of Accounts (law of June 2009 + 2015 chart and Taxes),
  14. * the Tax Code Chart for Luxembourg
  15. * the main taxes used in Luxembourg
  16. * default fiscal position for local, intracom, extracom
  17. Notes:
  18. * the 2015 chart of taxes is implemented to a large extent,
  19. see the first sheet of tax.xls for details of coverage
  20. * to update the chart of tax template, update tax.xls and run tax2csv.py
  21. """,
  22. 'author': 'OpenERP SA, ADN, ACSONE SA/NV',
  23. 'depends': [
  24. 'account',
  25. 'base_iban',
  26. 'base_vat',
  27. 'l10n_multilang',
  28. ],
  29. 'data': [
  30. # basic accounting data
  31. 'data/l10n_lu_chart_data.xml',
  32. 'data/account.account.template.csv',
  33. 'data/account.group.template.csv',
  34. 'data/account_tax_report_line.xml',
  35. 'data/account.tax.group.csv',
  36. 'data/account_tax_template_2015.xml',
  37. 'data/account.fiscal.position.template-2011.csv',
  38. 'data/account.fiscal.position.tax.template-2015.csv',
  39. 'data/account_reconcile_model_template_data.xml',
  40. # configuration wizard, views, reports...
  41. 'data/account.chart.template.csv',
  42. 'data/account_chart_template_data.xml',
  43. 'data/l10n_lu_chart_template_data.xml',
  44. ],
  45. 'demo': [
  46. 'demo/demo_company.xml',
  47. ],
  48. 'post_init_hook': '_post_init_hook',
  49. 'license': 'LGPL-3',
  50. }