You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
<?xml version="1.0" encoding="UTF-8"?> <openerp> <data> <record id="view_partner_form" model="ir.ui.view"> <field name="model">res.partner</field> <field name="inherit_id" ref="base.view_partner_form" /> <field name="arch" type="xml"> <xpath expr="." position="attributes"> <attribute name="string">Partner form</attribute> </xpath> <field name="parent_id" position="attributes"> <attribute name="context" operation="python_dict" key="default_name">'The company name'</attribute> <attribute name="context" operation="python_dict" key="default_company_id">context.get('company_id', context.get('company'))</attribute> </field> <notebook position="inside"> <page string="A new page" name="my_new_page" /> </notebook> <xpath expr="//field[@name='child_ids']" position="move" target="//page[@name='my_new_page']" /> </field> </record> </data> </openerp>
|