forked from OCA/delivery-carrier
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpartner_view.xml
More file actions
25 lines (23 loc) · 1 KB
/
partner_view.xml
File metadata and controls
25 lines (23 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<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="//page[@name='internal_notes']//field[@name='comment']" position="before">
<group>
<field name="use_b2c_info"/>
</group>
<group colspan="4" attrs="{'invisible': [('use_b2c_info','=', False)]}">
<group>
<field name="door_code"/>
<field name="door_code2"/>
</group>
<group>
<field name="intercom"/>
</group>
</group>
</xpath>
</field>
</record>
</odoo>