Files
Odoo-Modules/Work in Progress/fusion_accounting/views/partner_views.xml
gsinghpal fc3c966484 changes
2026-03-13 12:38:28 -04:00

17 lines
690 B
XML

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<record id="res_partner_view_form" model="ir.ui.view">
<field name="name">res.partner.form</field>
<field name="model">res.partner</field>
<field name="inherit_id" ref="account.view_partner_property_form"/>
<field name="arch" type="xml">
<xpath expr="//page[@name='accounting_disabled']" position="attributes">
<attribute name="string">Accounting</attribute>
</xpath>
<xpath expr="//page[@name='accounting']" position="attributes">
<attribute name="string">Accounting</attribute>
</xpath>
</field>
</record>
</odoo>