想要在日期字段之间添加更多 space
Want to add more space between date field
当我打印 qweb 报告时,我想在日期字段之间添加更多 space:Day - Month - Year
怎么办?
当前代码:
<span t-field="o.con_date" t-field-options="{"format": "dd MM yyyy"}"></span>
这解决了问题。
我这里做的很简单(之前没想到)
我已经将 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 "}"/> 
当我打印 qweb 报告时,我想在日期字段之间添加更多 space:Day - Month - Year
怎么办?
当前代码:
<span t-field="o.con_date" t-field-options="{"format": "dd MM yyyy"}"></span>
这解决了问题。 我这里做的很简单(之前没想到)
我已经将 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 "}"/>