12345678910111213141516171819202122232425262728293031 |
- # -*- encoding: utf-8 -*-
- {
- 'name': 'Sale MRP BOM',
- 'version': '8.0.1.0.0',
- 'category': 'Sale',
- 'summary': 'Allows define a BOM in the sales lines',
- 'description': """
- Allows define a BOM in the sales lines.
- """,
- 'author': 'Akretion, Odoo Community Association (OCA)',
- 'website': 'https://github.com/OCA/sale-workflow',
- 'depends': [
- 'sale_stock',
- 'mrp'
- ],
- 'data': [
- 'sale_order.xml',
- 'sale_order_line.xml',
- 'security.xml'
- ],
- 'demo': [
- ],
- 'test': [
- ],
- 'installable': True,
- 'application': False,
- 'auto_install': False,
- }
- # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
|