How to get two _rec_names in odoo for two many2one fields in single class?

China☆狼群 提交于 2019-12-01 14:04:45

What do you have to do to manage that is to overwrite the method _name_get of the model asset.asset.

@api.multi
def name_get(self):
    res = []
    for asset in self:
        display_name = []
        res.append((asset.id,
                    asset.folionum + ' ' + asset.assetmodelid_add.name))
    return res
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!