__openerp__.py 807 B

1234567891011121314151617181920212223
  1. # -*- encoding: utf-8 -*-
  2. {
  3. 'name': 'Invoice Report Analytic',
  4. 'version': '0.1',
  5. 'category': 'Sale',
  6. 'license': 'AGPL-3',
  7. 'summary': 'Add a graph via on that aggregate account invoice',
  8. 'description': """
  9. In the *Reporting* menu, add a new entry Account Orders Analysis that show sale statistics per products that aggregate invoices.
  10. Also add direct access to invoices statistics on the Product form view and Product Variants form view (Menu entry *Invoices Statistics* in the *More* drop down list).
  11. """,
  12. 'author': 'Akretion - EIRU',
  13. 'website': 'https://www.eiru.com.py',
  14. 'depends': ['sale'],
  15. 'data': [
  16. 'report/analytic_invoice_report_view.xml',
  17. 'product_view.xml',
  18. 'security/ir.model.access.csv',
  19. ],
  20. 'installable': True,
  21. }