Welcome!
This community is for professionals and enthusiasts of our products and services. Share and discuss the best content and new marketing ideas, build your professional profile and become a better marketer together.
Credit to Jake Robinson for this tip, which automatically creates a BOM for new items:

if record.categ_id.id == 6:
env['mrp.bom'].browse(1).copy({'product_tmpl_id': record.id})
Notes:
- The “apply on” means that it will not create a BOM for service items.
- Selection by product category is done in the Python code.
- You need to know the record IDs of the product category and the BOM you will be copying (in this case the product category id is 6 and the BOM we are copying is record 1).
- You could easily have different BOM templates for different product categories:
if record.categ_id.id == 6:
env['mrp.bom'].browse(1).copy({'product_tmpl_id': record.id})
if record.categ_id.id == 7:
env['mrp.bom'].browse(2).copy({'product_tmpl_id': record.id})
Blijf geïnformeerd
Over deze community
This is a forum for internal use only...
Lees de regels
Vraag hulpmiddelen
3 volger(s)
Statistieken
Gevraagd: 06-10-20 05:17 |
Gezien: 179 keer |
Laatst bijgewerkt: 06-10-20 05:18 |