我试图在 pdf 发票中添加一个新列(会员数量),并在生成 pdf 文件时隐藏税务列,但没有发生任何变化,我想知道哪个 xml 文件生成发票。
这是我的xml:
<odoo>
<template id="report_invoice_inherit" inherit_id="account.report_invoice_document">
<xpath expr="//table[@name='invoice_line_table']//thead//tr" position="inside">
<th name="th_members" class="text-end"><span>Number of Members</span></th>
</xpath>
<xpath expr="//table[@name='invoice_line_table']//tbody//tr//td[@name='td_quantity']" position="after">
<td name="td_members" class="text-end">
<span t-field="line.num_members"/>
</td>
</xpath>
<xpath expr="//table[@name='invoice_line_table']//thead//tr//th[@name='th_taxes']" position="attributes">
<attribute name="class">d-none</attribute>
</xpath>
<xpath expr="//table[@name='invoice_line_table']//tbody//tr//td[@name='td_taxes']" position="attributes">
<attribute name="class">d-none</attribute>
</xpath>
</template></odoo>
这是文件位置。
account/views/report_invoice.xml,