我想更改pdf发票中的广告内容描述-我想显示产品SCU而不是说明。
这是我在 report_invoice_document 中的内容:
<div class="row mt32 mb32"> <div class="col-xs-2" t-if="o.name"> <strong>Description:</strong> <p t-field=" <div class="row mt32 mb32"> <div class="col-xs-2" t-if="o.name"> <strong>Description:</strong> <p t-field="o.name"/> </div>"/> </div>
当我尝试将o.name更改为o.product_id时-我收到503服务器错误。
可能我错过了一些东西,请提出建议怎么做?
答案 0 :(得分:1)
您正在尝试使用o.name
更改引用发票记录名称的o.product_id
,它不是account.invoice
模型的字段,而是{{1 }}模型,它由account.invoice.line
模型上的字段invoice_line_ids
支持。
例如,您需要使用它来更改行:
account.invoice
使用:
<td><span t-field="l.name"/></td>