mirror of
https://gitlab.com/hibou-io/hibou-odoo/suite.git
synced 2025-01-20 12:37:31 +02:00
28 lines
930 B
Python
Executable File
28 lines
930 B
Python
Executable File
{
|
|
'name': 'BoM Mass Add',
|
|
'author': 'Hibou Corp. <hello@hibou.io>',
|
|
'category': 'Hidden',
|
|
'version': '15.0.1.0.0',
|
|
'description':
|
|
"""
|
|
Bill of Materials Mass Component Adder
|
|
======================================
|
|
|
|
Helper to add all variants of a Product to a BoM filtered by the attributes on that product.
|
|
Adds a button under BoM components named "Add Bulk". This lets you select a product template
|
|
and add one BoM line for every variant of that product.
|
|
|
|
Optionally you can choose to only add the variants that could be selected by the attributes
|
|
on the produced product itself. You can also replace all of the lines for the slected product
|
|
to allow you to quickly re-configure qty or operation for bulk products.
|
|
""",
|
|
'depends': [
|
|
'mrp',
|
|
],
|
|
'auto_install': False,
|
|
'data': [
|
|
'security/ir.model.access.csv',
|
|
'wizard/mrp_bom_add_views.xml',
|
|
],
|
|
}
|