İçereği Atla
Menü
Bu soru işaretlendi
1 Cevapla
4495 Görünümler

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
Vazgeç
En İyi Yanıt

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
Vazgeç
Üretici

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