Odoo18-Base/addons/l10n_in/views/account_journal_views.xml
2025-01-06 10:57:38 +07:00

17 lines
922 B
XML

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<record id="view_account_journal_form_inherit_l10n_in" model="ir.ui.view">
<field name="name">account.journal.form.inherit.l10n.in</field>
<field name="model">account.journal</field>
<field name="inherit_id" ref="account.view_account_journal_form"/>
<field name="arch" type="xml">
<field name="profit_account_id" position="attributes">
<attribute name="invisible">country_code != 'IN' and type != 'cash' or country_code == 'IN' and type not in ['bank', 'cash', 'sale', 'purchase']</attribute>
</field>
<field name="loss_account_id" position="attributes">
<attribute name="invisible">country_code != 'IN' and type != 'cash' or country_code == 'IN' and type not in ['bank', 'cash', 'sale', 'purchase']</attribute>
</field>
</field>
</record>
</odoo>