在 qweb 报告中打印时间时如何更改时区?
How to change timezone when printing time in qweb report?
<b>Date:</b><span t-esc="time.strftime('%d-%m-%Y %H:%M:%S')"/>
这是我的尝试 code.I 想在报告中打印当前日期和时间 page.I 住在印度,我们的时区比 GMT.I 已经在 odoo 中更改的时区提前 5.30 小时用户 settings.But 仍然是 GMT 打印时间而不是 IST(GMT+5.30)
签出此模块https://apps.openerp.com/apps/modules/8.0/qweb_usertime/ it adds an extra tag for you to specify the time of the report based on the usertime, internally it uses the pytz module
所以如果您不想安装它,您可以滚动您的实施,这就是您在您的案例中使用它的方式
<b>Date:</b><span t-usertime="%Y-%m-%d %H:%M:%S" />
<b>Date:</b><span t-esc="time.strftime('%d-%m-%Y %H:%M:%S')"/>
这是我的尝试 code.I 想在报告中打印当前日期和时间 page.I 住在印度,我们的时区比 GMT.I 已经在 odoo 中更改的时区提前 5.30 小时用户 settings.But 仍然是 GMT 打印时间而不是 IST(GMT+5.30)
签出此模块https://apps.openerp.com/apps/modules/8.0/qweb_usertime/ it adds an extra tag for you to specify the time of the report based on the usertime, internally it uses the pytz module
所以如果您不想安装它,您可以滚动您的实施,这就是您在您的案例中使用它的方式
<b>Date:</b><span t-usertime="%Y-%m-%d %H:%M:%S" />