1. 程式人生 > >odoo對空wizard賦值

odoo對空wizard賦值

空物件中的self為空,所以不能通過self.field=xxx進行賦值,所以可以通過原生方法中的default_get()進行賦值,程式碼如下:

@api.model
    def default_get(self, fields):
        res = super(AddProductionItem, self).default_get(fields)
        if self.env.context['active_model'] == 'stock.move':
            move = self.env['stock.move'].browse(self.env.context['active_id'])
            res.update({'product_id': move.product_id.id,
                        'production_id':move.raw_material_production_id.id})
            res = self._convert_to_write(self._convert_to_cache(res))
        return res

注意:最後需要呼叫模型的_convert_to_write()方法。