769eafb483
Flectra is Forked from Odoo v11 commit : (6135e82d73
)
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'],
|
|
}
|