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

I have created one custom field (which is a foreign key from 'res.partner') in sales order window.

When i create a new sales order. After clicking on 'confirm sale' button , a delivery order is generated. But how to send that new custom field value as well to delivery order window?

Avatar
Descartar
Mejor respuesta

You need to create a field in Develiry Order as well (which unfortunately for this specific model means you need to create it in stock.picking, stock.picking.out, and stock.picking.in models) and then during the Confirm Sale button, when it creates the DO (it is in _create_pickings_and_procurements method in sale_stock.py file in sale_stock module) you pass the value of the field to the one in DO.

Avatar
Descartar
Autor

Thank you John for your help. But I have overriden (_prepare_order_picking) method of sale_stock.py. It's working.