Skip ke Konten
Menu
Pertanyaan ini telah diberikan tanda
1 Balas
3550 Tampilan

I want to create manufacturing order from stock picking .I want to create if two stock.move line in stock picking , I will create two manufacturing order. When I create ,the problem is can't be mark as done in manufacturing order and get user error.Here is my code 

for move in picking.move_ids_without_package:
if move.cleaning_quantity>0:
tmpl_id = move.product_id.product_tmpl_id
bom_id = self.env['mrp.bom'].search([('product_tmpl_id','=',tmpl_id.id)])
if bom_id:
logging.info("Creatre++++++++++++++++")
mrp = self.env['mrp.production'].create({
'product_id':move\.product_id\.id,
'product_qty':move\.cleaning_quantity,
'qty_producing':move\.cleaning_quantity,
'bom_id':bom_id\.id,
'product_uom_id':bom_id\.product_uom_id\.id
\}\)\ \ \ \ \ \ \ \ \ \ \ \ \ \
else:
mrp\ =\ self\.env\['mrp\.production'\]\.create\(\{
'product_id':move\.product_id\.id,
'product_qty':move\.cleaning_quantity,
'product_uom_id':move.product_id.uom_id.id,
})

Avatar
Buang

Hello 

What issue you facing here ?

Jawaban Terbai

Hello, GGWP , 

Here is the solution of your error:
If bom exists: This code will solve user error and confirm MO as per your need
If bom not exists: Need to create a bom with its child components as per your need(see sample code in comment) 

Thanks & Regards,
Email: odoo@aktivsoftware.com
Skype: kalpeshmaheshwari

Avatar
Buang

Try this code:

for move in self.move_ids_without_package:
if move.product_uom_qty > 0:
tmpl_id = move.product_id.product_tmpl_id
bom_id = self.env['mrp.bom'].search([('product_tmpl_id', '=', tmpl_id.id)])
if not bom_id:
"""Create Bom with child components
bom_id = self.env['mrp.bom'].create({})"""
else:
mrp = self.env['mrp.production'].create({
'product_id': move.product_id.id,
'product_qty': move.product_uom_qty,
'qty_producing': move.product_uom_qty,
'bom_id': bom_id.id,
'product_uom_id': bom_id.product_uom_id.id
})
# Call onchange method to populate components of MO
mrp._onchange_move_raw()

Post Terkait Replies Tampilan Aktivitas
0
Nov 24
1178
2
Sep 22
2473
0
Des 21
1623
1
Okt 22
7459
0
Jun 21
2170