跳至內容
選單
此問題已被標幟
1 回覆
4244 瀏覽次數

How can i change report language in odoo v12? I always want to print in the same language, regardless of user preference.

頭像
捨棄
最佳答案

Hi,

You can remove t-lang attribute from report template to print the report in same language

Example:

< template id="report_saleorder">
    < t t-call="web.html_container">
        < t t-foreach="docs" t-as="doc">
            < t t-call="sale.report_saleorder_document" t-lang="doc.partner_id.lang" rel="ugc">"/>
        < /t>
    < /t>
< /template>

This is sale order report template in V12. Currently it will be printed in partner language, you can remove t-lang attribute to print in the same language irrespective of partner.

Regards

頭像
捨棄
相關帖文 回覆 瀏覽次數 活動
2
9月 24
1888
5
8月 19
46499
4
6月 18
20047
0
6月 18
3265
2
5月 16
16901