*bugfix: the chart wasn't openning if here were no fiscal year selected
[odoo/odoo.git] / addons / account / wizard / wizard_account_chart.py
1 # -*- encoding: utf-8 -*-
2 ##############################################################################
3 #
4 # Copyright (c) 2004-2008 TINY SPRL. (http://tiny.be) All Rights Reserved.
5 #
6 # $Id$
7 #
8 # WARNING: This program as such is intended to be used by professional
9 # programmers who take the whole responsability of assessing all potential
10 # consequences resulting from its eventual inadequacies and bugs
11 # End users who are looking for a ready-to-use solution with commercial
12 # garantees and support are strongly adviced to contract a Free Software
13 # Service Company
14 #
15 # This program is Free Software; you can redistribute it and/or
16 # modify it under the terms of the GNU General Public License
17 # as published by the Free Software Foundation; either version 2
18 # of the License, or (at your option) any later version.
19 #
20 # This program is distributed in the hope that it will be useful,
21 # but WITHOUT ANY WARRANTY; without even the implied warranty of
22 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
23 # GNU General Public License for more details.
24 #
25 # You should have received a copy of the GNU General Public License
26 # along with this program; if not, write to the Free Software
27 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
28 #
29 ##############################################################################
30
31 import wizard
32 import pooler
33
34 class wizard_account_chart(wizard.interface):
35     _account_chart_arch = '''<?xml version="1.0"?>
36     <form string="Account charts">
37         <field name="fiscalyear"/>
38         <label align="0.7" colspan="6" string="(If you do not select Fiscal year it will take all open fiscal year)"/>
39         <field name="target_move"/>
40     </form>'''
41
42     _account_chart_fields = {
43             'fiscalyear': {
44                 'string': 'Fiscal year',
45                 'type': 'many2one',
46                 'relation': 'account.fiscalyear',
47                 'help': 'Keep empty for all open fiscal year',
48         },
49             'target_move': {
50                 'string': 'Target Moves',
51                 'type': 'selection',
52                 'selection': [('all','All Entries'),('posted_only','All Posted Entries')],
53                 'required': True,
54                 'default': lambda *a:"all",
55         },
56     }
57
58     def _get_defaults(self, cr, uid, data, context):
59         fiscalyear_obj = pooler.get_pool(cr.dbname).get('account.fiscalyear')
60         data['form']['fiscalyear'] = fiscalyear_obj.find(cr, uid)
61         return data['form']
62
63
64     def _account_chart_open_window(self, cr, uid, data, context):
65         mod_obj = pooler.get_pool(cr.dbname).get('ir.model.data')
66         act_obj = pooler.get_pool(cr.dbname).get('ir.actions.act_window')
67
68         result = mod_obj._get_id(cr, uid, 'account', 'action_account_tree')
69         id = mod_obj.read(cr, uid, [result], ['res_id'])[0]['res_id']
70         result = act_obj.read(cr, uid, [id])[0]
71         result['context'] = str({'fiscalyear': data['form']['fiscalyear'],'target_move':data['form']['target_move']})
72         if data['form']['fiscalyear']:
73             result['name']+=':'+pooler.get_pool(cr.dbname).get('account.fiscalyear').read(cr,uid,[data['form']['fiscalyear']])[0]['code']
74         return result
75
76     states = {
77         'init': {
78             'actions': [_get_defaults],
79             'result': {'type': 'form', 'arch':_account_chart_arch, 'fields':_account_chart_fields, 'state': [('end', 'Cancel'), ('open', 'Open Charts')]}
80         },
81         'open': {
82             'actions': [],
83             'result': {'type': 'action', 'action':_account_chart_open_window, 'state':'end'}
84         }
85     }
86 wizard_account_chart('account.chart')
87
88 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
89