我有此方法,该方法应在One2many对象上循环,但实际的循环不起作用,我的意思是,如果仅添加一行,则效果很好,但如果添加多行,则抛出该异常singleton错误:

@api.multi
@api.depends('order_lines', 'order_lines.isbn')
def checkit(self):
    for record in self:
        if self.order_lines.isbn:
            return self.order_lines.isbn
        else:
            raise Warning(('Enter​ ​at least​ ​1​ ​ISBN to produce'))


这是此方法基于的两个对象:

class bsi_production_order(models.Model):
    _name = 'bsi.production.order'

    name = fields.Char('Reference', required=True, index=True, copy=False, readonly='True', default='New')
    date = fields.Date(string="Production Date")
    production_type = fields.Selection([
    ('budgeted','Budgeted'),
    ('nonbudgeted','Non Budgeted'),
    ('direct','Direct Order'),
], string='Type of Order', index=True,
track_visibility='onchange', copy=False,
help=" ")
    notes = fields.Text(string="Notes")
    order_lines = fields.One2many('bsi.production.order.lines', 'production_order', states={'finished': [('readonly', True)], 'cancel': [('readonly', True)]}, string="Order lines", copy=True)

class bsi_production_order_lines(models.Model):
    _name = 'bsi.production.order.lines'

    production_order = fields.Many2one('bsi.production.order', string="Production Orders")
    isbn = fields.Many2one('product.product', string="ISBN", domain="[('is_isbn', '=', True)]")
    qty = fields.Integer(string="Quantity")
    consumed_qty = fields.Float(string="Consumed quantity")
    remaining_qty = fields.Float(string="Remaining quantity", compute="_remaining_func")

    @api.onchange('qty', 'consumed_qty')
    def _remaining_func(self):
        if self.consumed_qty or self.qty:
            self.remaining_qty = self.consumed_qty - self.qty


如果我在isbn上添加多个bsi.production.order.lines,则会抛出:

ValueError

Expected singleton: bsi.production.order.lines(10, 11)


有任何想法吗?

编辑

复制是另一种情况,实际上我已更改方法以匹配另一个问题中说明的方法,但没有成功。因此,这不是真的,或者至少不是仅基于API的问题。

最佳答案

在您的情况下,在order_lines中发现了一个以上的记录集,而您尝试从中获取isbn值。

尝试以下代码:

@api.multi
@api.depends('order_lines', 'order_lines.isbn')
def checkit(self):
    for record in self:
        if record.order_lines:
            for line in record.order_lines:
                if line.isbn:
                    return line.isbn
        else:
            raise Warning(('Enter​ ​at least​ ​1​ ​ISBN to produce'))


有关这些错误的详细信息。您可以参考我的blog.

关于python - ValueError:预期的单例:-Odoo v8,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/46721153/

10-12 18:15