18 lines
		
	
	
		
			741 B
		
	
	
	
		
			XML
		
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			741 B
		
	
	
	
		
			XML
		
	
	
<?xml version="1.0" encoding="utf-8"?>
 | 
						|
 | 
						|
<!-- Copyright (c) 2016-Present Webkul Software Pvt. Ltd. (<https://webkul.com/>) -->
 | 
						|
<!-- See LICENSE file for full copyright and licensing details. -->
 | 
						|
<!-- License URL : <https://store.webkul.com/license.html/> -->
 | 
						|
 | 
						|
<odoo>
 | 
						|
    <record id="wk_inheritance_res_user" model="ir.ui.view">
 | 
						|
        <field name="name">res.users.form</field>
 | 
						|
        <field name="model">res.users</field>
 | 
						|
        <field name="inherit_id" ref="base.view_users_form" />
 | 
						|
        <field name="arch" type="xml">
 | 
						|
            <xpath expr="//field[@name='partner_id']" position="after">
 | 
						|
                <field name="customer_grp_id" placeholder="Customer Groups"></field>
 | 
						|
            </xpath>
 | 
						|
        </field>
 | 
						|
    </record>
 | 
						|
</odoo> |