summaryrefslogtreecommitdiff
path: root/addons/sale_margin/__manifest__.py
blob: 294e6d6d95b8a63a55d9fef4eb204c51b1308158 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.

{
    'name': 'Margins in Sales Orders',
    'version':'1.0',
    'category': 'Sales/Sales',
    'description': """
This module adds the 'Margin' on sales order.
=============================================

This gives the profitability by calculating the difference between the Unit
Price and Cost Price.
    """,
    'depends':['sale_management'],
    'demo':['data/sale_margin_demo.xml'],
    'data':['security/ir.model.access.csv','views/sale_margin_view.xml'],
    'license': 'LGPL-3',
}