odoo.tools.convert.ParseError:“0”;在系统中找不到外部ID:account.report\u invoice\u with\u payments

odoo.tools.convert.ParseError:“0”;在系统中找不到外部ID:account.report\u invoice\u with\u payments,odoo,Odoo,我试图自定义带有付款的发票报告,但在加载项路径中找不到文件xml,并且我有以下错误: raise ValueError('External ID not found in the system: %s' % xmlid) odoo.tools.convert.ParseError: "External ID not found in the system: account.report_invoice_with_payments" while parsing None:182, near &l

我试图自定义带有付款的发票报告,但在加载项路径中找不到文件xml,并且我有以下错误:

raise ValueError('External ID not found in the system: %s' % xmlid)
odoo.tools.convert.ParseError: "External ID not found in the system:  account.report_invoice_with_payments" while parsing None:182, near
<data inherit_id=" account.report_invoice_with_payments">
            <!--EDIT Quantity column: print one value centred-->
            <xpath expr="//table[@class='table table-condensed']//tbody//tr//td[2]" position="replace">
            </xpath>
        </data>
2019-01-23 14:14:49,956 5585 INFO ? odoo.http: HTTP Configuring static files
raisevalueerror('在系统中找不到外部ID:%s“%xmlid”)
odoo.tools.convert.ParseError:“在系统中找不到外部ID:account.report\u invoice\u with\u payments”,同时解析None:182,near
2019-01-23 14:14:499565585信息?http:http配置静态文件

ID中有一个空格
inherit\u ID=“\u space\u account.report\u invoice\u with\u payments”
。您必须删除该选项:
inherit\u id=“account.report\u invoice\u with\u payments”

并确保您的模块/应用程序取决于
帐户