__manifest__.py 509 B

1234567891011121314151617
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'Service Margins in Sales Orders',
  5. 'version': '1.0',
  6. 'summary': 'Bridge module between Sales Margin and Sales Timesheet',
  7. 'description': """
  8. Allows to compute accurate margin for Service sales.
  9. ======================================================
  10. """,
  11. 'category': 'Hidden',
  12. 'depends': ['sale_margin', 'sale_timesheet'],
  13. 'auto_install': True,
  14. 'license': 'LGPL-3',
  15. }