コンテンツへスキップ
メニュー
この質問にフラグが付けられました
1 返信
7359 ビュー

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?




アバター
破棄
著作者 最善の回答

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()


アバター
破棄
関連投稿 返信 ビュー 活動
1
12月 19
2828
2
6月 24
6330
2
3月 24
1302
1
10月 23
1975
2
10月 23
2167