__openerp__.py 720 B

12345678910111213141516171819202122232425262728293031
  1. # -*- encoding: utf-8 -*-
  2. {
  3. 'name': 'Sale MRP BOM',
  4. 'version': '8.0.1.0.0',
  5. 'category': 'Sale',
  6. 'summary': 'Allows define a BOM in the sales lines',
  7. 'description': """
  8. Allows define a BOM in the sales lines.
  9. """,
  10. 'author': 'Akretion, Odoo Community Association (OCA)',
  11. 'website': 'https://github.com/OCA/sale-workflow',
  12. 'depends': [
  13. 'sale_stock',
  14. 'mrp'
  15. ],
  16. 'data': [
  17. 'sale_order.xml',
  18. 'sale_order_line.xml',
  19. 'security.xml'
  20. ],
  21. 'demo': [
  22. ],
  23. 'test': [
  24. ],
  25. 'installable': True,
  26. 'application': False,
  27. 'auto_install': False,
  28. }
  29. # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: