Odoo - ORM从product.template中检索翻译的名称

时间:2018-03-08 23:29:43

标签: odoo-10

我想从product.template:

中检索名称
print self.env['product.template'].search([("id", "=", id), ]).name

如何在ORM中获取翻译名称?

1 个答案:

答案 0 :(得分:3)

您可以在上下文中传递语言代码,以获取该语言的特定产品名称。在使用之前,请确保已在服务器中加载语言。我对您的代码进行了一些更改,以便用德语/ Duetsch语言获取产品名称。

print self.env['product.template'].with_context({'lang': 'de_DE'}).search([("id", "=", id)]).name

我希望这会对你有所帮助。 :)