我开发了一个 Odoo 模块来为员工添加序列,完美地工作。
我确实单击了创建按钮并显示了这些员工的序列,但是我还是取消了创建序列增量
class nhr(models.Model):
_inherit = 'hr.employee'
nhr = fields.Char(string='Nº de contacto', index=True, readonly=True, required=True,
default=lambda self: self.env['ir.sequence'].next_by_code('nhr.seq'))