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.

28 lines
995 B

  1. # -*- coding: utf-8 -*-
  2. # noqa: This is a backport from Odoo. OCA has no control over style here.
  3. # flake8: noqa
  4. {
  5. 'name': 'Import QIF Bank Statement',
  6. 'category' : 'Accounting & Finance',
  7. 'version': '1.0',
  8. 'author': 'OpenERP SA',
  9. 'description': '''
  10. Module to import QIF bank statements.
  11. ======================================
  12. This module allows you to import the machine readable QIF Files in Odoo: they are parsed and stored in human readable format in
  13. Accounting \ Bank and Cash \ Bank Statements.
  14. Important Note
  15. ---------------------------------------------
  16. Because of the QIF format limitation, we cannot ensure the same transactions aren't imported several times or handle multicurrency.
  17. Whenever possible, you should use a more appropriate file format like OFX.
  18. ''',
  19. 'images': [],
  20. 'depends': ['account_bank_statement_import'],
  21. 'demo': [],
  22. 'data': ['account_bank_statement_import_qif_view.xml'],
  23. 'auto_install': False,
  24. 'installable': True,
  25. }