当我打印qweb报告时,我想在日期字段之间添加更多空格:Day - Month - Year
怎么办?
当前代码:
<span t-field="o.con_date" t-field-options="{"format": "dd MM yyyy"}"></span>
答案 0 :(得分:1)
这解决了这个问题。 我在这里所做的很简单(以前没想过)。
我已将dd
,mm
和yyyy
分开。
 
用于在它们之间创建空格。
如果您需要额外的空格,可以添加更多 
<span t-field="o.con_date" t-field-options="{"format": "dd "}"/> <span t-field="o.con_date" t-field-options="{"format": "MM "}"/> <span t-field="o.con_date" t-field-options="{"format": "yyyy "}"/>