如何将付款添加到销售订单报告中?奥多14

时间:2021-06-03 17:56:21

标签: javascript python xml odoo qweb

我想在打印报告时添加与 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>

谢谢。

0 个答案:

没有答案