[FIX] mail: no_auto_thread default True if the model has no mail.thread
[odoo/odoo.git] / addons / account / res_config_view.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <openerp>
3     <data>
4
5         <record id="open_account_charts_modules" model="ir.actions.act_window">
6             <field name="name">Chart Templates</field>
7             <field name="res_model">ir.module.module</field>
8             <field name="view_mode">kanban,tree,form</field>
9             <field name="context" eval="{'search_default_category_id': ref('base.module_category_localization_account_charts')}"/>
10             <field name="search_view_id" ref="base.view_module_filter"/>
11         </record>
12
13         <record id="view_account_config_settings" model="ir.ui.view">
14             <field name="name">account settings</field>
15             <field name="model">account.config.settings</field>
16             <field name="arch" type="xml">
17                 <form string="Configure Accounting" class="oe_form_configuration">
18                     <header>
19                         <button string="Apply" type="object" name="execute" class="oe_highlight"/>
20                         or
21                         <button string="Cancel" type="object" name="cancel" class="oe_link"/>
22                     </header>
23
24                     <field name="has_default_company" invisible="1" />
25                     <field name="has_chart_of_accounts" invisible="1"/>
26                     <field name="complete_tax_set" invisible="1"/>
27                     <field name="has_fiscal_year" invisible="1"/>
28                     <separator string="Chart of Accounts" groups="base.group_multi_company"/>
29                     <group groups="base.group_multi_company">
30                         <label for="id" string="Chart of Accounts"/>
31                         <div>
32                             <div attrs="{'invisible': [('has_default_company', '=', True)]}">
33                                 <label for="company_id" string="Select Company"/>
34                                 <field name="company_id"
35                                     widget="selection"
36                                     on_change="onchange_company_id(company_id, context)"
37                                     class="oe_inline"/>
38                             </div>
39                             <div>
40                                 <field name="expects_chart_of_accounts" class="oe_inline"/>
41                                 <label for="expects_chart_of_accounts"/>
42                             </div>
43                         </div>
44                     </group>
45                     <separator string="Chart of Accounts" attrs="{'invisible': ['|', ('expects_chart_of_accounts','=',False), ('has_chart_of_accounts','=',True)]}"/>
46                     <group attrs="{'invisible': ['|', ('expects_chart_of_accounts','=',False), ('has_chart_of_accounts','=',True)]}">
47                         <label for="id" string="Chart of Account"/>
48                         <div>
49                             <div>
50                                 <label for="chart_template_id"/>
51                                 <field name="chart_template_id"
52                                     widget="selection"
53                                     domain="[('visible','=', True)]"
54                                     on_change="onchange_chart_template_id(chart_template_id)"
55                                     class="oe_inline"/>
56                                 <button string="Install more chart templates"
57                                     icon="gtk-go-forward"
58                                     name="%(open_account_charts_modules)d"
59                                     type="action"
60                                     class="oe_link"/>
61                             </div>
62                             <div groups="account.group_account_user">
63                                 <label for="code_digits"/>
64                                 <field name="code_digits" class="oe_inline"/>
65                             </div>
66                             <div attrs="{'invisible': ['|', ('chart_template_id','=',False), ('complete_tax_set','=',False)]}">
67                                 <label for="sale_tax"/>
68                                 <field name="sale_tax"
69                                     domain="[('chart_template_id', '=', chart_template_id),('parent_id','=',False),('type_tax_use','in',('sale','all'))]"
70                                     class="oe_inline"/>
71                             </div>
72                             <div attrs="{'invisible': ['|', ('chart_template_id','=',False), ('complete_tax_set','=',False)]}">
73                                 <label for="purchase_tax"/>
74                                 <field name="purchase_tax"
75                                     domain="[('chart_template_id', '=', chart_template_id),('parent_id','=',False),('type_tax_use','in',('purchase', 'all'))]"
76                                     class="oe_inline"/>
77                             </div>
78                             <div attrs="{'invisible': ['|', ('chart_template_id','=',False), ('complete_tax_set','=',True)]}">
79                                 <label for="sale_tax_rate"/>
80                                 <field name="sale_tax_rate" on_change="onchange_tax_rate(sale_tax_rate)"/>
81                             </div>
82                             <div attrs="{'invisible': ['|', ('chart_template_id','=',False), ('complete_tax_set','=',True)]}">
83                                 <label for="purchase_tax_rate"/>
84                                 <field name="purchase_tax_rate" />
85                             </div>
86                         </div>
87                     </group>
88                     <separator string="No Fiscal Year Defined for This Company" attrs="{'invisible': ['|', ('expects_chart_of_accounts','=',False), ('has_fiscal_year','=',True)]}"/>
89                     <group attrs="{'invisible': ['|', ('expects_chart_of_accounts','=',False), ('has_fiscal_year','=',True)]}">
90                         <label for="id" string="Fiscal Year"/>
91                         <div>
92                             <div>
93                                 <label for="date_start" string="Date Range"/>
94                                 <field name="date_start"
95                                     on_change="onchange_start_date(date_start)"
96                                     class="oe_inline"/> -
97                                 <field name="date_stop" class="oe_inline"/>
98                             </div>
99                             <div>
100                                 <label for="period"/>
101                                 <field name="period" class="oe_inline"/>
102                             </div>
103                         </div>
104                     </group>
105                     <separator string="Accounting &amp; Finance"/>
106                     <group>
107                         <label for="id" string="Options"/>
108                         <div name="account_config">
109                             <div>
110                                 <label for="currency_id"/>
111                                 <field name="currency_id" class="oe_inline"/>
112                             </div>
113                             <div>
114                                 <label for="decimal_precision"/>
115                                 <field name="decimal_precision" class="oe_inline"/>
116                             </div>
117                             <div>
118                                 <label for="tax_calculation_rounding_method"/>
119                                 <field name="tax_calculation_rounding_method" class="oe_inline"/>
120                             </div>
121                         </div>
122                         <label for="id" string="Features"/>
123                         <div>
124                             <div name="group_multi_currency">
125                                 <field name="group_multi_currency" class="oe_inline" on_change="onchange_multi_currency(group_multi_currency)"/>
126                                 <label for="group_multi_currency"/>
127                                 <group attrs="{'invisible': [('group_multi_currency', '&lt;&gt;', True)]}" col="2">
128                                     <group>
129                                         <field name="income_currency_exchange_account_id"/>
130                                         <field name="expense_currency_exchange_account_id"/>
131                                     </group>
132                                     <group>
133                                     </group>
134                                 </group>
135                             </div>
136                             <div>
137                                 <field name="module_account_accountant" class="oe_inline"/>
138                                 <label for="module_account_accountant"/>
139                             </div>
140                             <div>
141                                 <field name="group_analytic_accounting" class="oe_inline" on_change="onchange_analytic_accounting(group_analytic_accounting, context)"/>
142                                 <label for="group_analytic_accounting"/>
143                             </div>
144                             <div>
145                                 <field name="module_account_asset" class="oe_inline"/>
146                                 <label for="module_account_asset"/>
147                             </div>
148                             <div>
149                                 <field name="module_account_budget" class="oe_inline"/>
150                                 <label for="module_account_budget"/>
151                             </div>
152                         </div>
153                     </group>
154                     <separator string="eInvoicing &amp; Payments"/>
155                     <group>
156                         <label for="id" string="Customer"/>
157                         <div>
158                             <div attrs="{'invisible': [('has_chart_of_accounts','=',False)]}">
159                                 <label for="default_sale_tax"/>
160                                 <field name="default_sale_tax"
161                                     domain="[('type_tax_use','=','sale'), ('company_id','=',company_id)]"
162                                     class="oe_inline"/>
163                             </div>
164                             <div>
165                                 <label for="sale_sequence_next"/>
166                                 <field name="sale_sequence_prefix"
167                                     class="oe_inline"
168                                     help='If you put "%%(year)s" in the prefix, it will be replaced by the current year.'/>
169                                 <field name="sale_sequence_next"
170                                     class="oe_inline"
171                                     attrs="{'readonly': [('sale_journal_id','=',False)]}"/>
172                             </div>
173                             <div>
174                                 <label for="sale_refund_sequence_next"/>
175                                 <field name="sale_refund_sequence_prefix"
176                                     class="oe_inline"
177                                     help='If you put "%%(year)s" in the prefix, it will be replaced by the current year.'/>
178                                 <field name="sale_refund_sequence_next"
179                                     class="oe_inline"
180                                     attrs="{'readonly': [('sale_refund_journal_id','=',False)]}"/>
181                             </div>
182                             <div>
183                                 <field name="group_proforma_invoices" class="oe_inline"/>
184                                 <label for="group_proforma_invoices"/>
185                             </div>
186                             <div>
187                                 <field name="module_account_voucher" class="oe_inline"/>
188                                 <label for="module_account_voucher"/>
189                             </div>
190                             <div>
191                                 <field name="module_account_followup" class="oe_inline"/>
192                                 <label for="module_account_followup"/>
193                             </div>
194                             <div>
195                                 <field name="module_product_email_template" class="oe_inline"/>
196                                 <label for="module_product_email_template"/>
197                             </div>
198                         </div>
199                     </group>
200                     <group>
201                         <label for="id" string="Supplier"/>
202                         <div name="other_cofing">
203                             <div attrs="{'invisible': [('has_chart_of_accounts','=',False)]}">
204                                 <label for="default_purchase_tax"/>
205                                 <field name="default_purchase_tax"
206                                     domain="[('type_tax_use','=','purchase'), ('company_id','=',company_id)]"
207                                     class="oe_inline"/>
208                             </div>
209                             <div>
210                                 <label for="purchase_sequence_next"/>
211                                 <field name="purchase_sequence_prefix"
212                                     class="oe_inline"
213                                     help='If you put "%%(year)s" in the prefix, it will be replaced by the current year.'/>
214                                 <field name="purchase_sequence_next"
215                                     class="oe_inline"
216                                     attrs="{'readonly': [('purchase_journal_id','=',False)]}"/>
217                             </div>
218                             <div>
219                                 <label for="purchase_refund_sequence_next"/>
220                                 <field name="purchase_refund_sequence_prefix"
221                                     class="oe_inline"
222                                     help='If you put "%%(year)s" in the prefix, it will be replaced by the current year.'/>
223                                 <field name="purchase_refund_sequence_next"
224                                     class="oe_inline"
225                                     attrs="{'readonly': [('purchase_refund_journal_id','=',False)]}"/>
226                             </div>
227                             <div>
228                                 <field name="module_account_payment" class="oe_inline"/>
229                                 <label for="module_account_payment"/>
230                             </div>
231                             <div>
232                                 <field name="module_account_check_writing" class="oe_inline"/>
233                                 <label for="module_account_check_writing"/>
234                             </div>
235                             <div>
236                                 <field name="group_check_supplier_invoice_total" class="oe_inline"/>
237                                 <label for="group_check_supplier_invoice_total"/>
238                             </div>
239                         </div>
240                     </group>
241                     <separator string="Bank &amp; Cash"/>
242                     <group name="bank_cash">
243                         <label for="id" string="Configuration"/>
244                         <div>
245                             <div name='company_footer'>
246                                 <label for="company_footer"/>
247                                 <button name="open_company_form" type="object"
248                                     string="Configure your company bank accounts" icon="gtk-go-forward"
249                                     class="oe_inline oe_link"/>
250                                 <field name="company_footer"/>
251                             </div>
252                             <div name='payment_acquirer'>
253                                 <label for="paypal_account"/>
254                                 <field name="paypal_account" placeholder="e.g. sales@odoo.com" class="oe_inline"/>
255                             </div>
256                         </div>
257                     </group>
258                     <separator name="analytic_account" string="Analytic Accounting" invisible="1"/>
259                     <group name="analytic_account_sale" invisible="1">
260                         <label for="id" string="Sale"/>
261                         <div/>
262                     </group>
263                     <group name="analytic_account_purchase" invisible="1">
264                         <label for="id" string="Purchase"/>
265                         <div/>
266                     </group>
267                     <field name="sale_journal_id" invisible="1"/>
268                     <field name="sale_refund_journal_id" invisible="1"/>
269                     <field name="purchase_journal_id" invisible="1"/>
270                     <field name="purchase_refund_journal_id" invisible="1"/>
271                 </form>
272             </field>
273         </record>
274
275         <record id="action_account_config" model="ir.actions.act_window">
276             <field name="name">Configure Accounting</field>
277             <field name="type">ir.actions.act_window</field>
278             <field name="res_model">account.config.settings</field>
279             <field name="view_mode">form</field>
280             <field name="target">inline</field>
281         </record>
282
283         <menuitem id="menu_account_config" name="Invoicing" parent="base.menu_config"
284             sequence="14" action="action_account_config"/>
285
286     </data>
287 </openerp>