odoo 17 生成 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.