如何在 odoo 10 中将 _rec_name 作为两个字段的组合?

how to give a _rec_name as a combination of two field in odoo 10?

如何在many2one字段中选择时显示代码(或数字)+名称?

如何将 _rec_name 作为两个字段的组合?

如何在保存时合并两个字段。

for example:There 是姓名和员工 ID 等两个字段。填写这些字段并保存后。打开记录时,_rec_name 应显示为名称[员工 ID]。

您需要覆盖 class 中的 _name_get 方法:

    @api.multi
    def name_get(self):
        result = []
        for s in self:
            name = s.field1+ ' ' + s.field2
            result.append((s.id, name))
        return result

希望对你有所帮助。