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.

24 lines
621 B

  1. # -*- encoding: utf-8 -*-
  2. # noqa: This is a backport from Odoo. OCA has no control over style here.
  3. # flake8: noqa
  4. {
  5. 'name': 'Account Bank Statement Import',
  6. 'category' : 'Accounting & Finance',
  7. 'version': '1.0',
  8. 'author': 'OpenERP SA',
  9. 'depends': ['account'],
  10. 'demo': [],
  11. 'description' : """Generic Wizard to Import Bank Statements.
  12. Backport from Odoo 9.0
  13. """,
  14. 'data' : [
  15. 'account_bank_statement_import_view.xml',
  16. ],
  17. 'demo': [
  18. 'demo/fiscalyear_period.xml',
  19. 'demo/partner_bank.xml',
  20. ],
  21. 'auto_install': False,
  22. 'installable': True,
  23. }