__manifest__.py 593 B

123456789101112131415161718192021222324
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'Margins in Sales Orders',
  5. 'version':'1.0',
  6. 'category': 'Sales/Sales',
  7. 'description': """
  8. This module adds the 'Margin' on sales order.
  9. =============================================
  10. This gives the profitability by calculating the difference between the Unit
  11. Price and Cost Price.
  12. """,
  13. 'depends':['sale_management'],
  14. 'demo':[
  15. 'data/sale_margin_demo.xml',
  16. ],
  17. 'data':[
  18. 'views/sale_order_views.xml',
  19. ],
  20. 'license': 'LGPL-3',
  21. }