__manifest__.py 900 B

12345678910111213141516171819202122232425262728
  1. # -*- coding: utf-8 -*-
  2. {
  3. 'name' : 'Import/Export Invoices From XML/PDF',
  4. 'description':"""
  5. Electronic Data Interchange
  6. =======================================
  7. EDI is the electronic interchange of business information using a standardized format.
  8. This is the base module for import and export of invoices in various EDI formats, and the
  9. the transmission of said documents to various parties involved in the exchange (other company,
  10. governements, etc.)
  11. """,
  12. 'version' : '1.0',
  13. 'category': 'Accounting/Accounting',
  14. 'depends' : ['account'],
  15. 'data': [
  16. 'security/ir.model.access.csv',
  17. 'views/account_edi_document_views.xml',
  18. 'views/account_move_views.xml',
  19. 'views/account_payment_views.xml',
  20. 'views/account_journal_views.xml',
  21. 'data/cron.xml'
  22. ],
  23. 'installable': True,
  24. 'auto_install': True,
  25. 'license': 'LGPL-3',
  26. }