1
> WARNING 11_test1 odoo.addons.base.ir.ir_ui_view: Error-prone use of
> @class in view report_invoice_document
> (account_invoice_report.report_invoice_document): use the
> hasclass(*classes) function to filter elements by their classes
なぜこの警告が表示されますか? 2つの場所でのみクラスを使用します。警告@classのエラーが発生する可能性があります。
<td class="text-right">
<span t-esc="', '.join(map(lambda x: (x.description or x.name), l.invoice_line_tax_ids))"/>
</td>
と
<xpath expr="//div[@class='row mt32 mb32']/div[@t-if='o.name']" position="replace"/>
位置属性を使用するようにしてください。このようなものは、次のようなものです: ' –
ChesuCR