forked from OCA/connector-magento
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpartner_view.xml
53 lines (49 loc) · 2.27 KB
/
partner_view.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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data noupdate="0">
<record id="view_magento_res_partner_form" model="ir.ui.view">
<field name="name">magento.res.partner.form</field>
<field name="model">magento.res.partner</field>
<field name="inherit_id" ref="magentoerpconnect.view_magento_res_partner_form"/>
<field name="arch" type="xml">
<form position="attributes">
<attribute name="create">true</attribute>
<attribute name="delete">true</attribute>
</form>
</field>
</record>
<record id="view_magento_res_partner_tree" model="ir.ui.view">
<field name="name">magento.res.partner.tree</field>
<field name="model">magento.res.partner</field>
<field name="inherit_id" ref="magentoerpconnect.view_magento_res_partner_tree"/>
<field name="arch" type="xml">
<tree position="attributes">
<attribute name="create">true</attribute>
<attribute name="delete">true</attribute>
</tree>
</field>
</record>
<record id="view_magento_address_form" model="ir.ui.view">
<field name="name">magento.address.form</field>
<field name="model">magento.address</field>
<field name="inherit_id" ref="magentoerpconnect.view_magento_address_form"/>
<field name="arch" type="xml">
<form position="attributes">
<attribute name="create">true</attribute>
<attribute name="delete">true</attribute>
</form>
</field>
</record>
<record id="view_magento_address_tree" model="ir.ui.view">
<field name="name">magento.address.tree</field>
<field name="model">magento.address</field>
<field name="inherit_id" ref="magentoerpconnect.view_magento_address_tree"/>
<field name="arch" type="xml">
<tree position="attributes">
<attribute name="create">true</attribute>
<attribute name="delete">true</attribute>
</tree>
</field>
</record>
</data>
</openerp>