Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有report_invoice_document显示增值税客户编号的视图,使用下一个代码:
report_invoice_document
<span t-field="o.partner_id.vat"/>
但是,出现的数字是 CO8000000001,我只需要不带字母的数字,如果可能以这种方式格式化 800.000.000-1。
我试图找到有关 t-field-options 的文档来自定义该字段,但我没有运气。
谢谢。
尝试:
<span t-esc="o.partner_id.vat[2:]"/>
t-esc支持 Python 代码。
t-esc