__manifest__.py 353 B

123456789101112
  1. # -*- coding: utf-8 -*-
  2. {
  3. 'name': "Sale Stock Margin",
  4. 'category': 'Sales/Sales',
  5. 'description': 'Once the delivery is validated, update the cost on the SO to have an exact margin computation.',
  6. 'version': '0.1',
  7. 'depends': ['sale_stock', 'sale_margin'],
  8. 'installable': True,
  9. 'auto_install': True,
  10. 'license': 'LGPL-3',
  11. }