我有这个方法:
@api.multi
def create_printy(self):
copy_record = self.env['stock.picking'] # now you call the method directly
for record in self:
order_lines = []
for rec in record.order_lines:
order_lines.append(
(0,0,
{
'product_id': rec.isbn.id,
'product_qty': rec.qty,
}
))
copy_record.create({
'origin': order.name,
'picking_type_id.id': 'outgoing',
'move_lines': order_lines,
'move_type': 'direct',
'priority': '1',
'company_id': record.company_id.id,
})
这是一个按钮,可以从我的模型中创建一个新的stock.picking
。
我已尝试使用picking_type_id.id
,但似乎不起作用,在标准插件的每个示例中,您只看到picking_type_id
,我也没有定义在我的模型中,但我可以通过其中一种类型,即outgoing
(我需要的那种)。
现在,它引发了我的注意:
Integrity Error
The operation cannot be completed, probably due to the following:
- deletion: you may be trying to delete a record while other records still reference it
- creation/update: a mandatory field is not correctly set
[object with reference: picking_type_id - picking.type.id]
那么,如果我在模型中定义此字段,即使不需要,我如何将此picking_type_id
传递到stock.picking
?但是stock.picking
模型需要它。
答案 0 :(得分:4)
picking_type_id
模型中的字段stock.picking
是强制性的,您没有在create
方法中指定它,而是指定picking_type_id.id
的值,不是一个领域(Odoo并没有让你知道这个事实)。您必须找到选股类型对象的ID,并将其传递给create
方法。如您想要传出类型,请使用此代码查找选择类型。如果你有几个仓库,搜索方法必然会返回几个记录,这就是我得到第一个记录的原因。但是如果你想要另一个,你必须将更多的参数传递给search
方法,以便更简洁。所以试试这个:
@api.multi
def create_printy(self):
copy_record = self.env['stock.picking'] # now you call the method directly
for record in self:
order_lines = []
for rec in record.order_lines:
order_lines.append(
(0,0,
{
'product_id': rec.isbn.id,
'product_qty': rec.qty,
}
))
sp_types = self.env['stock.picking.type'].search([
('code', '=', 'outgoing')
])
if len(sp_types) > 0:
copy_record.create({
'origin': order.name,
'picking_type_id': sp_types[0].id,
'move_lines': order_lines,
'move_type': 'direct',
'priority': '1',
'company_id': record.company_id.id,
})