[FIX] module installation through -i module -d db --without-demo option corrected
[odoo/odoo.git] / addons / account / wizard / wizard_account_chart.py
1 # -*- encoding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution   
5 #    Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). All Rights Reserved
6 #    $Id$
7 #
8 #    This program is free software: you can redistribute it and/or modify
9 #    it under the terms of the GNU General Public License as published by
10 #    the Free Software Foundation, either version 3 of the License, or
11 #    (at your option) any later version.
12 #
13 #    This program is distributed in the hope that it will be useful,
14 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
15 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 #    GNU General Public License for more details.
17 #
18 #    You should have received a copy of the GNU General Public License
19 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
20 #
21 ##############################################################################
22
23 import wizard
24 import pooler
25
26 class wizard_account_chart(wizard.interface):
27     _account_chart_arch = '''<?xml version="1.0"?>
28     <form string="Account charts">
29         <field name="fiscalyear"/>
30         <label align="0.7" colspan="6" string="(If you do not select Fiscal year it will take all open fiscal years)"/>
31         <field name="target_move"/>
32     </form>'''
33
34     _account_chart_fields = {
35             'fiscalyear': {
36                 'string': 'Fiscal year',
37                 'type': 'many2one',
38                 'relation': 'account.fiscalyear',
39                 'help': 'Keep empty for all open fiscal year',
40         },
41             'target_move': {
42                 'string': 'Target Moves',
43                 'type': 'selection',
44                 'selection': [('all','All Entries'),('posted_only','All Posted Entries')],
45                 'required': True,
46                 'default': lambda *a:"all",
47         },
48     }
49
50     def _get_defaults(self, cr, uid, data, context):
51         fiscalyear_obj = pooler.get_pool(cr.dbname).get('account.fiscalyear')
52         data['form']['fiscalyear'] = fiscalyear_obj.find(cr, uid)
53         return data['form']
54
55
56     def _account_chart_open_window(self, cr, uid, data, context):
57         mod_obj = pooler.get_pool(cr.dbname).get('ir.model.data')
58         act_obj = pooler.get_pool(cr.dbname).get('ir.actions.act_window')
59
60         result = mod_obj._get_id(cr, uid, 'account', 'action_account_tree')
61         id = mod_obj.read(cr, uid, [result], ['res_id'])[0]['res_id']
62         result = act_obj.read(cr, uid, [id], context=context)[0]
63         result['context'] = str({'fiscalyear': data['form']['fiscalyear'],'target_move':data['form']['target_move']})
64         if data['form']['fiscalyear']:
65             result['name']+=':'+pooler.get_pool(cr.dbname).get('account.fiscalyear').read(cr,uid,[data['form']['fiscalyear']])[0]['code']
66         return result
67
68     states = {
69         'init': {
70             'actions': [_get_defaults],
71             'result': {'type': 'form', 'arch':_account_chart_arch, 'fields':_account_chart_fields, 'state': [('end', 'Cancel'), ('open', 'Open Charts')]}
72         },
73         'open': {
74             'actions': [],
75             'result': {'type': 'action', 'action':_account_chart_open_window, 'state':'end'}
76         }
77     }
78 wizard_account_chart('account.chart')
79
80 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
81