Files
bank-payment/account_payment_repair/views/repair_order.xml
2021-03-16 23:04:28 -03:00

19 lines
671 B
XML

<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright 2021 KMEE
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -->
<odoo>
<record model="ir.ui.view" id="repair_order_form_view">
<field name="name">repair.order.form (in account_payment_repair)</field>
<field name="model">repair.order</field>
<field name="inherit_id" ref="repair.view_repair_order_form"/>
<field name="arch" type="xml">
<field name="invoice_method" position="after" >
<field name="payment_mode_id" attrs="{'invisible': [('invoice_method', '==', 'none')]}"/>
</field>
</field>
</record>
</odoo>