~mga/openobject-addons/account_india

3548 by Fabien Pinckaers
Adding Sednacom Zarafa Module
1
<?xml version="1.0"?>
2
<!--
3
4
(c) 2008 Sednacom <http://www.sednacom.fr>
5
6
 authors :
7
  - Brice < brice@sednacom.fr >
8
9
This program is free software; you can redistribute it and/or modify
10
it under the terms of the GNU General Public License as published by
11
the Free Software Foundation; either version 2 of the License, or
12
(at your option) any later version.
13
14
This program is distributed in the hope that it will be useful,
15
but WITHOUT ANY WARRANTY; without even the implied warranty of
16
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17
GNU General Public License for more details.
18
19
You should have received a copy of the GNU General Public License
20
along with this program; if not, write to the Free Software
21
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22
23
-->
3640.1.4 by Olivier Laurent
[FIX] use "<separator string" and not "<separator label"
24
<openerp>
3548 by Fabien Pinckaers
Adding Sednacom Zarafa Module
25
<data>
26
27
    <record model="ir.ui.view" id="view_users_form_zarafa">
28
        <field name="name">res.users.form.zarafa</field>
29
        <field name="model">res.users</field>
30
        <field name="inherit_id" ref="base.view_users_form" />
31
        <field name="type">form</field>
32
        <field name="arch" type="xml">
33
            <page string="Security" position="before">
34
                <page string="Zarafa">
35
                    <separator string="Zarafa interface" colspan="4" />
36
                    <field name="zarafa_server" />
37
                    <field name="zarafa_email" />
38
                    <field name="zarafa_user" />
39
                    <field name="zarafa_password" />
40
                </page>
41
            </page>
42
        </field>
43
    </record>
44
45
    <record model="ir.ui.view" id="view_partner_address_tree_email">
46
        <field name="name">res.partner.address.tree.email</field>
47
        <field name="model">res.partner.address</field>
48
        <field name="type">tree</field>
49
        <field name="inherit_id" ref="base.view_partner_address_tree" />
50
        <field name="arch" type="xml">
51
            <field name="zip" position="replace" >
52
                <field name="email" />
53
            </field>
54
        </field>
55
    </record>
56
57
58
    <wizard id="wizard_import_zarafa_contact"
59
        string="Import Zarafa contacts"
60
        model="zarafa.contact"
61
        name="zarafa.contact.import"
62
    />
63
64
    <menuitem name="Tools/Import contact from Zarafa"
65
        id="menu_action_import_zarafa_contact"
66
        action="wizard_import_zarafa_contact"
67
        type="wizard" />
68
69
70
</data>
3640.1.4 by Olivier Laurent
[FIX] use "<separator string" and not "<separator label"
71
</openerp>