Created
May 20, 2016 09:56
-
-
Save ilyasProgrammer/707abc72f4b845354b13be9050416699 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Inherit View | |
| <odoo> | |
| <data> | |
| <record id="dep_name" model="ir.ui.view"> | |
| <field name="name">car_booking.dep_name</field> | |
| <field name="model">hr.department</field> | |
| <field name="inherit_id" ref="hr.view_department_form"/> | |
| <field name="arch" type="xml"> | |
| <data> | |
| <xpath expr="//group[@col='4']/field[@name='name']" position="attributes"> | |
| <attribute name="string">Branch name</attribute> | |
| </xpath> | |
| </data> | |
| </field> | |
| </record> | |
| </data> | |
| </odoo> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment