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.

27 lines
700 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. 'version': '1.0',
  7. 'author': 'OpenERP SA',
  8. 'depends': ['account'],
  9. 'demo': [],
  10. 'description' : """Generic Wizard to Import Bank Statements.
  11. Includes the import of files in .OFX format
  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. }
  24. # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: