Ir al contenido
Menú
Se marcó esta pregunta
1 Responder
7355 Vistas

I have a special process that creates MO's based on BOM's from a task. 


In v10, this worked just fine.

mo_vals = {'product_id': product_id,
                           'bom_id': bom.id,                        
                           'product_uom_id': bom.product_uom_id.id,
                           'product_qty': bom.product_qty,
                           'sale_id'self.sale_id.id,
                           'task_id'self.id,
                            }
self.env['mrp.production'].create(mo_vals)

However in v13, when the MO is created, it does not populate the components (move_raw_ids)

It looks like the _onchange_bom_id that add the move_raw_ids on the MO is not being called when the record is being created. 

How do you call _onchange_bom_id at time of creation or even after?




Avatar
Descartar
Autor Mejor respuesta

For anyone else looking to do this, I was able to just manually call the onchange: Maybe not the right way, but it worked.


                mo_vals = {'product_id': product_id,
                           'bom_id': bom.id,                        
                           'product_uom_id': bom.product_uom_id.id,
                           'product_qty': bom.product_qty,
                           'sale_id': self.sale_id.id,
                           'task_id': self.id,
                           }
                mo = self.env['mrp.production'].sudo().create(mo_vals)
                mo._onchange_move_raw()


Avatar
Descartar
Publicaciones relacionadas Respuestas Vistas Actividad
1
dic 19
2826
2
jun 24
6330
2
mar 24
1301
1
oct 23
1974
2
oct 23
2166