forked from itpp-labs/misc-addons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathviews.xml
25 lines (23 loc) · 1008 Bytes
/
views.xml
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"?>
<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 eval="1" name="priority"/>
<field name="arch" type="xml">
<xpath expr="//field[@name='child_ids']/kanban/templates" position="before">
<field name="record_url"/>
</xpath>
<!--
<xpath expr="//field[@name='child_ids']/kanban/templates/t/div/div/a[@type='open']" position="attributes">
<attribute name="type"></attribute>
<attribute name="t-att-href">record.record_url.raw_value</attribute>
</xpath>
-->
<xpath expr="//field[@name='child_ids']/kanban/templates//h4/a[@type='open']" position="attributes">
<attribute name="type"></attribute>
<attribute name="t-att-href">record.record_url.raw_value</attribute>
</xpath>
</field>
</record>
</data></openerp>