1
0
forked from Mapan/odoo17e
odoo17e-kedaikipas58/addons/l10n_pe_edi/wizards/account_debit_note_views.xml
2024-12-10 09:04:09 +07:00

15 lines
645 B
XML

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<record id="view_account_debit_note" model="ir.ui.view">
<field name="name">account.debit.note.form</field>
<field name="model">account.debit.note</field>
<field name="inherit_id" ref="account_debit_note.view_account_debit_note"/>
<field name="arch" type="xml">
<xpath expr="//field[@name='journal_id']" position="after">
<field name="country_code" invisible="1"/>
<field name="l10n_pe_edi_charge_reason" widget="selection" invisible="country_code != 'PE'"/>
</xpath>
</field>
</record>
</odoo>