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

18 lines
682 B
XML

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<data>
<record id="view_batch_payment_form_inherit" model="ir.ui.view">
<field name="name">sct.account.batch.payment.form.inherit</field>
<field name="model">account.batch.payment</field>
<field name="inherit_id" ref="account_batch_payment.view_batch_payment_form"/>
<field name="arch" type="xml">
<xpath expr="//field[@name='name']" position="after">
<field name="sct_batch_booking" string="Batch Booking" invisible="payment_method_code != 'sepa_ct'"/>
</xpath>
</field>
</record>
</data>
</odoo>