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.

25 lines
611 B

  1. # -*- encoding: utf-8 -*-
  2. {
  3. 'name': 'Account Bank Statement Import',
  4. 'version': '1.0',
  5. 'author': 'OpenERP SA',
  6. 'depends': ['account'],
  7. 'demo': [],
  8. 'description' : """Generic Wizard to Import Bank Statements.
  9. Includes the import of files in .OFX format
  10. Backport from Odoo 9.0
  11. """,
  12. 'data' : [
  13. 'account_bank_statement_import_view.xml',
  14. ],
  15. 'demo': [
  16. 'demo/fiscalyear_period.xml',
  17. 'demo/partner_bank.xml',
  18. ],
  19. 'auto_install': False,
  20. 'installable': True,
  21. }
  22. # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: