想在日期字段之间添加更多空间

时间:2018-03-25 11:34:20

标签: xml xhtml odoo odoo-10 qweb

当我打印qweb报告时,我想在日期字段之间添加更多空格:Day - Month - Year

怎么办?

当前代码:

<span t-field="o.con_date" t-field-options="{&quot;format&quot;: &quot;dd MM yyyy&quot;}"></span>

1 个答案:

答案 0 :(得分:1)

这解决了这个问题。 我在这里所做的很简单(以前没想过)。

我已将ddmmyyyy分开。

&#160;用于在它们之间创建空格。 如果您需要额外的空格,可以添加更多&#160;

<span t-field="o.con_date" t-field-options="{&quot;format&quot;: &quot;dd &quot;}"/>&#160;<span t-field="o.con_date" t-field-options="{&quot;format&quot;: &quot;MM &quot;}"/>&#160;<span t-field="o.con_date" t-field-options="{&quot;format&quot;: &quot;yyyy &quot;}"/>&#160;