__manifest__.py 1.0 KB

1234567891011121314151617181920212223242526272829
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'Check Printing Base',
  5. 'version': '1.0',
  6. 'category': 'Accounting/Accounting',
  7. 'summary': 'Check printing basic features',
  8. 'description': """
  9. This module offers the basic functionalities to make payments by printing checks.
  10. It must be used as a dependency for modules that provide country-specific check templates.
  11. The check settings are located in the accounting journals configuration page.
  12. """,
  13. 'depends': ['account'],
  14. 'data': [
  15. 'security/ir.model.access.csv',
  16. 'data/account_check_printing_data.xml',
  17. 'views/account_journal_views.xml',
  18. 'views/account_move_views.xml',
  19. 'views/account_payment_views.xml',
  20. 'views/res_config_settings_views.xml',
  21. 'views/res_partner_views.xml',
  22. 'wizard/print_prenumbered_checks_views.xml'
  23. ],
  24. 'installable': True,
  25. 'post_init_hook': 'create_check_sequence_on_bank_journals',
  26. 'license': 'LGPL-3',
  27. }