Skip to Content
Meniu
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
Această întrebare a fost marcată
1 Răspunde
4512 Vizualizări

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?

Imagine profil
Abandonează
Cel mai bun răspuns

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.

Imagine profil
Abandonează
Autor

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