__manifest__.py 545 B

1234567891011121314151617
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'Sale Project - Sale Stock',
  5. 'version': '1.0',
  6. 'description': 'Adds a full traceability of inventory operations on the profitability report.',
  7. 'summary': 'Adds a full traceability of inventory operations on the profitability report.',
  8. 'license': 'LGPL-3',
  9. 'category': 'Sales',
  10. 'depends': ['sale_project', 'sale_stock'],
  11. 'data': [
  12. 'views/stock_move_views.xml',
  13. ],
  14. 'auto_install': True,
  15. }