生成 PDF 发票报告的 XML 文件的名称是什么?我如何知道它?

问题描述 投票:0回答:1

我正在尝试向 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>
xml inheritance odoo odoo-17
1个回答
0
投票

这是文件位置。

account/views/report_invoice.xml, 

© www.soinside.com 2019 - 2024. All rights reserved.