forked from Mapan/odoo17e
13 lines
513 B
XML
13 lines
513 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<template id="report_invoice_document" inherit_id="sale.report_saleorder_document">
|
|
<!-- TODO not the best thing to inherit... -->
|
|
<xpath expr="//td[@name='td_taxes']" position="attributes">
|
|
<attribute name="t-if">not doc.is_avatax</attribute>
|
|
</xpath>
|
|
<xpath expr="//th[@name='th_taxes']" position="attributes">
|
|
<attribute name="t-if">not doc.is_avatax</attribute>
|
|
</xpath>
|
|
</template>
|
|
</odoo>
|