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

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
Descartar

Hello 

What issue you facing here ?

Mejor respuesta

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
Descartar

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

Publicaciones relacionadas Respuestas Vistas Actividad
0
nov 24
1159
2
sept 22
2471
0
dic 21
1619
1
oct 22
7438
0
jun 21
2167