You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

64 lines
2.4 KiB

  1. # -*- encoding: utf-8 -*-
  2. ##############################################################################
  3. #
  4. # Authors: Nicolas Bessi, Guewen Baconnier
  5. # Copyright Camptocamp SA 2011
  6. #
  7. # This program is free software: you can redistribute it and/or modify
  8. # it under the terms of the GNU Affero General Public License as
  9. # published by the Free Software Foundation, either version 3 of the
  10. # License, or (at your option) any later version.
  11. #
  12. # This program is distributed in the hope that it will be useful,
  13. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. # GNU Affero General Public License for more details.
  16. #
  17. # You should have received a copy of the GNU Affero General Public License
  18. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  19. #
  20. ##############################################################################
  21. {
  22. 'name': 'Financial Reports - Webkit',
  23. 'version': '8.0.1.2.0',
  24. 'author': (
  25. "Camptocamp,"
  26. "Savoir-faire Linux,"
  27. "Odoo Community Association (OCA)"
  28. ),
  29. 'license': 'AGPL-3',
  30. 'category': 'Finance',
  31. 'website': 'http://www.camptocamp.com',
  32. 'images': [
  33. 'images/ledger.png', ],
  34. 'depends': ['account',
  35. 'report_webkit'],
  36. 'demo': [],
  37. 'data': ['account_view.xml',
  38. 'data/financial_webkit_header.xml',
  39. 'report/report.xml',
  40. 'wizard/wizard.xml',
  41. 'wizard/balance_common_view.xml',
  42. 'wizard/general_ledger_wizard_view.xml',
  43. 'wizard/partners_ledger_wizard_view.xml',
  44. 'wizard/trial_balance_wizard_view.xml',
  45. 'wizard/partner_balance_wizard_view.xml',
  46. 'wizard/open_invoices_wizard_view.xml',
  47. 'wizard/aged_open_invoices_wizard.xml',
  48. 'wizard/aged_partner_balance_wizard.xml',
  49. 'wizard/print_journal_view.xml',
  50. 'report_menus.xml',
  51. ],
  52. # tests order matter
  53. 'test': ['test/general_ledger.yml',
  54. 'test/partner_ledger.yml',
  55. 'test/trial_balance.yml',
  56. 'test/partner_balance.yml',
  57. 'test/open_invoices.yml',
  58. 'test/aged_trial_balance.yml'],
  59. # 'tests/account_move_line.yml'
  60. 'active': False,
  61. 'installable': True,
  62. 'application': True,
  63. 'pre_init_hook': 'pre_init_hook',
  64. }