如何获得部分约会qweb odoo

时间:2017-02-15 14:47:40

标签: openerp qweb

我的发票中的日期目前显示为:

  

21/11/2014 16:59:15

我想在月份展示这样的事情:

  

11

我尝试使用带有strftime的t-esc,但这不起作用:

<span t-esc="o.date_order.strftime('%m')" />

2 个答案:

答案 0 :(得分:2)

尝试:

<span t-field="o.date_order" t-field-options='{"format": "MM"}'/>

更多关于supported format patterns

答案 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日

希望,它会被使用。