1
0
forked from Mapan/odoo17e
odoo17e-kedaikipas58/addons/account_invoice_extract/views/account_move_views.xml
2024-12-10 09:04:09 +07:00

19 lines
663 B
XML

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<data>
<record id="view_move_form" model="ir.ui.view">
<field name="name">account.move.form.extract.inherit</field>
<field name="model">account.move</field>
<field name="inherit_id" ref="account.view_move_form"/>
<field name="arch" type="html">
<xpath expr="//field[@name='tax_totals']" position="after">
<!-- Necessary to be able saving the form when extracting info -->
<field name="amount_total" invisible="1"/>
</xpath>
</field>
</record>
</data>
</odoo>