__manifest__.py 737 B

12345678910111213141516171819202122
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'Margins by Products',
  5. 'category': 'Sales/Sales',
  6. 'description': """
  7. Adds a reporting menu in products that computes sales, purchases, margins and other interesting indicators based on invoices.
  8. =============================================================================================================================
  9. The wizard to launch the report has several options to help you get the data you need.
  10. """,
  11. 'depends': ['account'],
  12. 'data': [
  13. 'security/ir.model.access.csv',
  14. 'wizard/product_margin_view.xml',
  15. 'views/product_product_views.xml'
  16. ],
  17. 'license': 'LGPL-3',
  18. }