__manifest__.py 529 B

1234567891011121314151617
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'MTO Sale <-> Purchase',
  5. 'version': '1.0',
  6. 'category': 'Hidden',
  7. 'summary': 'SO/PO relation in case of MTO',
  8. 'description': """
  9. Add relation information between Sale Orders and Purchase Orders if Make to Order (MTO) is activated on one sold product.
  10. """,
  11. 'depends': ['sale_stock', 'purchase_stock', 'sale_purchase'],
  12. 'installable': True,
  13. 'auto_install': True,
  14. 'license': 'LGPL-3',
  15. }