我想从product.template:
中检索名称print self.env['product.template'].search([("id", "=", id), ]).name
如何在ORM中获取翻译名称?
答案 0 :(得分:3)
您可以在上下文中传递语言代码,以获取该语言的特定产品名称。在使用之前,请确保已在服务器中加载语言。我对您的代码进行了一些更改,以便用德语/ Duetsch语言获取产品名称。
print self.env['product.template'].with_context({'lang': 'de_DE'}).search([("id", "=", id)]).name
我希望这会对你有所帮助。 :)