我想在打印报告时添加与 sale.order 相关的付款。 打印“invoice_payments_widget”时,我得到了有关付款的信息,但是,我总是得到空值:“payment.amount”和“payment.date” 请问怎么了?有什么帮助吗? 这是我的代码:
<template id="report_saleorder_document_inherit" inherit_id="sale.report_saleorder_document">
<xpath expr="//div[@name='so_total_summary']" position="after">
<span>payments</span> <p t-field="doc.invoice_ids.invoice_payments_widget"/>
<span>payments</span> <p t-field="doc.invoice_ids.invoice_payments_widget.date"/>
<table>
<thead>
<tr>
<th><strong>Amount</strong></th>
<th><strong>Date</strong></th>
</tr>
</thead>
<tbody>
<t t-foreach="doc.invoice_ids.payment_id" t-as="payment">
<tr>
<td>
<span t-field="payment.amount"/>
</td>
<td>
<span t-field="payment.date" />
</td>
</tr>
</t>
</tbody>
</table>
</div>
</xpath>
</template>
谢谢。