21 lines
600 B
XML
21 lines
600 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
Copyright 2025 Akretion France (https://www.akretion.com/)
|
|
@author: Alexis de Lattre <alexis.delattre@akretion.com>
|
|
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
-->
|
|
|
|
<odoo>
|
|
|
|
<record id="view_account_payment_form" model="ir.ui.view">
|
|
<field name="model">account.payment</field>
|
|
<field name="inherit_id" ref="account.view_account_payment_form"/>
|
|
<field name="arch" type="xml">
|
|
<group name="group2" position="inside">
|
|
<field name="move_id" readonly="1"/>
|
|
</group>
|
|
</field>
|
|
</record>
|
|
|
|
</odoo>
|