Launchpad automatic translations update.
[odoo/odoo.git] / addons / base_setup / res_config_view.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <openerp>
3     <data>
4
5         <record id="view_general_configuration" model="ir.ui.view">
6             <field name="name">General Settings</field>
7             <field name="model">base.config.settings</field>
8             <field name="arch" type="xml">
9                 <form string="General Settings" version="7.0" class="oe_form_configuration">
10                     <header>
11                         <button string="Apply" type="object" name="execute" class="oe_highlight"/>
12                         or
13                         <button string="Cancel" type="object" name="cancel" class="oe_link"/>
14                     </header>
15                     <separator string="General Settings"/>
16                     <div>
17                         <p>
18                             <label string="You will find more options in your company details: address for the header and footer, overdue payments texts, etc."/>
19                             <button type="object" name="open_company" string="Configure your company data" icon="gtk-execute" class="oe_inline oe_link"/>
20                         </p>
21                     </div>
22                     <group>
23                         <label for="id" string="Options"/>
24                         <div>
25                             <div name="multi_company">
26                                 <field name="module_multi_company" class="oe_inline"/>
27                                 <label for="module_multi_company"/>
28                             </div>
29                         </div>
30                     </group>
31                     <group>
32                         <label for="id" string="Email"/>
33                         <div name="email">
34                             <div>
35                                 <button type="action"
36                                     name="%(base.action_ir_mail_server_list)d"
37                                     string="Configure outgoing email servers" class="oe_link"/>
38                             </div>
39                         </div>
40                     </group>
41                     <group>
42                         <label for="id" string="Portal access"/>
43                         <div>
44                             <div>
45                                 <field name="module_portal" class="oe_inline"/>
46                                 <label for="module_portal"/>
47                             </div>
48                             <div>
49                                 <field name="module_auth_anonymous" class="oe_inline"/>
50                                 <label for="module_auth_anonymous"/>
51                             </div>
52                         </div>
53                     </group>
54                     <group>
55                         <label for="id" string="Authentication"/>
56                         <div>
57                             <div>
58                                 <field name="module_auth_oauth" class="oe_inline"/>
59                                 <label for="module_auth_oauth"/>
60                             </div>
61                         </div>
62                     </group>
63                     <group>
64                         <label for="id" string="Import / Export"/>
65                         <div>
66                             <div>
67                                 <field name="module_base_import" class="oe_inline"/>
68                                 <label for="module_base_import"/>
69                             </div>
70                         </div>
71                     </group>
72                 </form>
73             </field>
74         </record>
75
76         <record id="action_general_configuration" model="ir.actions.act_window">
77             <field name="name">General Settings</field>
78             <field name="res_model">base.config.settings</field>
79             <field name="view_mode">form</field>
80             <field name="target">inline</field>
81         </record>
82         <menuitem id="menu_general_configuration" parent="base.menu_config"
83             sequence="100" action="action_general_configuration"/>
84
85         <!-- Sale config wizard -->
86         <record id="view_sale_config_settings" model="ir.ui.view">
87             <field name="name">sale settings</field>
88             <field name="model">sale.config.settings</field>
89             <field name="arch" type="xml">
90                 <form string="Configure Sales" version="7.0" class="oe_form_configuration">
91                     <header>
92                         <button string="Apply" type="object" name="execute" class="oe_highlight"/>
93                         or
94                         <button string="Cancel" type="object" name="cancel" class="oe_link"/>
95                     </header>
96                     <div name="linkedin">
97                         <separator string="Social Network Integration"/>
98                         <group name="LinkedIn">
99                             <label for="id" string="Contacts"/>
100                             <div name="LinkedIn">
101                                 <div name="module_web_linkedin" class="oe_inline">
102                                     <field name="module_web_linkedin"/>
103                                     <label for="module_web_linkedin"/>
104                                 </div>
105                             </div>
106                         </group>
107                     </div>
108                     <div name="customer feature">
109                         <separator string="Quotations and Sales Orders"/>
110                         <group name="Customer">
111                             <label for="id" string="Customer Features"/>
112                             <div name="Customer Features"/>
113                         </group>
114                         <group name="Sale">
115                             <label for="id" string="Sale Features"/>
116                             <div name="Sale Features"/>
117                         </group>
118                     </div>
119                     <div name="config_sale">
120                         <field name="module_crm" invisible="1"/>
121                         <separator string="Emails Integration" attrs="{'invisible': [('module_crm','=',False)]}"/>
122                         <p attrs="{'invisible': [('module_crm','=',False)]}">
123                             OpenERP allows to automatically create leads (or others documents)
124                             from incoming emails. You can automatically synchronize emails with OpenERP
125                             using regular POP/IMAP accounts, using a direct email integration script for your
126                             email server, or by manually pushing emails to OpenERP using specific
127                             plugins for your preferred email application.
128                         </p>
129                         <group name="On Mail Client" attrs="{'invisible': [('module_crm','=',False)]}">
130                             <label for="id" string="On Mail Client"/>
131                             <div>
132                                 <div name="module_plugin_thunderbird" attrs="{'invisible': [('module_crm','=',False)]}" class="oe_inline">
133                                     <field name="module_plugin_thunderbird"/>
134                                     <label for="module_plugin_thunderbird"/>
135                                 </div>
136                                 <div name="module_plugin_outlook" attrs="{'invisible': [('module_crm','=',False)]}">
137                                     <field name="module_plugin_outlook" class="oe_inline"/>
138                                     <label for="module_plugin_outlook"/>
139                                 </div>
140                             </div>
141                         </group>
142                     </div>
143                     <div name="config_other"/>
144                 </form>
145             </field>
146         </record>
147
148         <record id="action_sale_config" model="ir.actions.act_window">
149             <field name="name">Configure Sales</field>
150             <field name="type">ir.actions.act_window</field>
151             <field name="res_model">sale.config.settings</field>
152             <field name="view_id" ref="view_sale_config_settings"/>
153             <field name="view_mode">form</field>
154             <field name="target">inline</field>
155         </record>
156
157     </data>
158 </openerp>