<?xml version="1.0" encoding="utf-8"?>
<odoo>
		<record model="ir.ui.view" id="view_l10n_br_account_tax_form">
			<field name="name">l10n_br_account.tax.form</field>
			<field name="model">account.tax</field>
			<field name="inherit_id" ref="account.view_tax_form"/>
			<field name="arch" type="xml">
				<field position="after" name="price_include">
					<field name="tax_discount" invisible="country_code != 'BR'"/>
			    </field>
			    <field position="after" name="tax_discount">
					<field name="base_reduction" widget="monetary" invisible="country_code != 'BR'"/>
					<field name="amount_mva" widget="monetary" invisible="country_code != 'BR'"/>
			    </field>
			</field>
		</record>
</odoo>
