Skip to Content
Menu
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
To pytanie dostało ostrzeżenie
1 Odpowiedz
4494 Widoki

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?

Awatar
Odrzuć
Najlepsza odpowiedź

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.

Awatar
Odrzuć
Autor

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