我继承了stock.picking
,因此我需要从fleet.vehicle.log.services
到目前为止,我正在考虑将其添加到一个按钮,该按钮将包含create()
函数,例如:
@api.model
def create(self,vals):
vals = {'location_id': '', 'location_dest_id':'', 'product_id':'', 'product_qty':''}
res = super(stock.picking, self).create(vals)
return res
但是,我的问题是我不知道这是否是正确的方法。
例如,location_id
应该是添加到表单的位置,获取此位置并创建与其他字段相同的stock.picking
。
我希望我能解释自己,我是Odoo v9 API的新手。