22 lines
747 B
Python
22 lines
747 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||
|
|
||
|
|
||
|
{
|
||
|
'name': 'Margins by Products',
|
||
|
'category': 'Sales',
|
||
|
'description': """
|
||
|
Adds a reporting menu in products that computes sales, purchases, margins and other interesting indicators based on invoices.
|
||
|
=============================================================================================================================
|
||
|
|
||
|
The wizard to launch the report has several options to help you get the data you need.
|
||
|
""",
|
||
|
'depends': ['account'],
|
||
|
'data': [
|
||
|
'security/ir.model.access.csv',
|
||
|
'wizard/product_margin_view.xml',
|
||
|
'views/product_product_views.xml'
|
||
|
],
|
||
|
'test': ['test/product_margin.yml'],
|
||
|
}
|