我的发票中的日期目前显示为:
21/11/2014 16:59:15
我想在月份展示这样的事情:
11
我尝试使用带有strftime的t-esc,但这不起作用:
<span t-esc="o.date_order.strftime('%m')" />
答案 0 :(得分:2)
尝试:
<span t-field="o.date_order" t-field-options='{"format": "MM"}'/>
答案 1 :(得分:0)
试试这个。
<span t-esc="datetime.datetime.strptime(o.sale_id.confirmation_date, '%Y-%m-%d %H:%M:%S').strftime('%B %d,%Y')"/>
我的输出是:2018年5月28日
希望,它会被使用。