所以,我正在研究他从另一个对象继承的对象
ODOO v8

class a(models.Model):
_inherit = 'my.inherit.object'

@api.multi
def _default_group(self):
    domain = {'group_id': [('id', 'in', False)]}
    user_c = self.env['timetable'].search([
        # ('company_id', '=', self.env.user.company_id.id),
        ('year_id', '=', self.year_id),
        ('user_id', '=', self.user_id.id), ])
    if not teacher:
        raise exceptions.ValidationError(_("you haven't access, sorry so contact your administrator"))

    groups = []
    for line_groups in user_c:
        if line_groups.cd_id == self.cd_id:
            groups.append(line_groups.group_id.id)
        domain['group_id'] = [('id', 'in', groups)]


    return {'domain': domain}


所以当我尝试启动此测试代码
他告诉我这个错误

Expected singleton: my.inherit.object ('lang', 'tz', 'params', 'uid', 'active_model')


我该怎么做才能解决此问题,所有字段都在工作,并且处理也很好,但是它停止并显示错误。

最佳答案

进行self.ensure_one以确保仅传递一条记录。它检查当前记录是否为单例(因此只有一个记录,而不是多个记录)。

如果self将包含多个记录,则系统将引发错误。

您可以尝试以下代码:

@api.multi
def _default_group(self):
    self.ensure_one()
    # your logic start from here

关于python - 在函数头上调用@api,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/52758625/

10-15 19:56