__manifest__.py 572 B

1234567891011121314151617181920
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'Subcontracting Management with Stock Valuation',
  5. 'version': '0.1',
  6. 'category': 'Hidden',
  7. 'description': """
  8. This bridge module allows to manage subcontracting with valuation.
  9. """,
  10. 'depends': ['mrp_subcontracting', 'mrp_account'],
  11. 'installable': True,
  12. 'auto_install': True,
  13. 'license': 'LGPL-3',
  14. 'data': [
  15. 'security/mrp_subcontracting_account_security.xml',
  16. 'security/ir.model.access.csv',
  17. ],
  18. }