__manifest__.py 506 B

12345678910111213141516171819
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'pos_sale_margin',
  5. 'version': '1.1',
  6. 'category': 'Hidden',
  7. 'summary': 'Link module between Point of Sale and Sales Margin',
  8. 'description': """
  9. This module adds enable you to view the margin of your Point of Sale orders in the Sales Margin report.
  10. """,
  11. 'depends': ['pos_sale', 'sale_margin'],
  12. 'installable': True,
  13. 'auto_install': True,
  14. 'license': 'LGPL-3',
  15. }