如何将销售订单中的字段移动到选货

How to move field in sale order to stock picking

我有问题,我在

中创建了两个自定义字段

销售订单确认后,stock.picking字段也填写了怎么办?并且数据是从我之前制作的 sale.order 的字段中获取的。

我正在使用 odoo 10

谢谢

嗯,先依赖你sale_stock的模块,然后继承销售确认按钮,搜索关联的pickings:

@api.multi
def action_confirm(self):
    result = super(SaleOrder, self).action_confirm()
    for order in self:
        order.picking_ids.write({'your_field_in_picking': order.your_field_in_sale})

    return result

把它放在继承自 sale.order

的 class 中