__manifest__.py 436 B

12345678910111213
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'Sales Expense Margin',
  5. 'version': '1.0',
  6. 'category': 'Sales/Sales',
  7. 'description': 'When re-invoicing the expense on the SO, set the cost to the total untaxed amount of the expense.',
  8. 'depends': ['sale_expense', 'sale_margin'],
  9. 'installable': True,
  10. 'auto_install': True,
  11. 'license': 'LGPL-3',
  12. }