~technofluid-team/openobject-addons/technofluid_multiple_installations

« back to all changes in this revision

Viewing changes to account/wizard/wizard_journal.py

  • Committer: pinky
  • Date: 2006-12-07 13:41:40 UTC
  • Revision ID: pinky-dedd7f8a42bd4557112a0513082691b8590ad6cc
New trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
##############################################################################
 
2
#
 
3
# Copyright (c) 2005-2006 TINY SPRL. (http://tiny.be) All Rights Reserved.
 
4
#                    Fabien Pinckaers <fp@tiny.Be>
 
5
#
 
6
# WARNING: This program as such is intended to be used by professional
 
7
# programmers who take the whole responsability of assessing all potential
 
8
# consequences resulting from its eventual inadequacies and bugs
 
9
# End users who are looking for a ready-to-use solution with commercial
 
10
# garantees and support are strongly adviced to contract a Free Software
 
11
# Service Company
 
12
#
 
13
# This program is Free Software; you can redistribute it and/or
 
14
# modify it under the terms of the GNU General Public License
 
15
# as published by the Free Software Foundation; either version 2
 
16
# of the License, or (at your option) any later version.
 
17
#
 
18
# This program is distributed in the hope that it will be useful,
 
19
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
20
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
21
# GNU General Public License for more details.
 
22
#
 
23
# You should have received a copy of the GNU General Public License
 
24
# along with this program; if not, write to the Free Software
 
25
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
26
#
 
27
##############################################################################
 
28
 
 
29
import wizard
 
30
from osv import osv
 
31
import pooler
 
32
 
 
33
_journal_form = '''<?xml version="1.0"?>
 
34
<form string="%s">
 
35
        <field name="journal_id"/>
 
36
        <newline/>
 
37
        <field name="period_id"/>
 
38
</form>''' % ('Saisies des ecritures',)
 
39
 
 
40
_journal_fields = {
 
41
        'journal_id': {'string':'Journal', 'type':'many2one', 'relation':'account.journal', 'required':True},
 
42
        'period_id': {'string':'Period', 'type':'many2one', 'relation':'account.period', 'required':True}
 
43
}
 
44
 
 
45
def _action_open_window(self, cr, uid, data, context):
 
46
        form = data['form']
 
47
        cr.execute('select id,name from ir_ui_view where model=%s and type=%s', ('account.move.line', 'form'))
 
48
        view_res = cr.fetchone()
 
49
        jp = pooler.get_pool(cr.dbname).get('account.journal.period')
 
50
        ids = jp.search(cr, uid, [('journal_id','=',form['journal_id']), ('period_id','=',form['period_id'])])
 
51
        if not len(ids):
 
52
                name = pooler.get_pool(cr.dbname).get('account.journal').read(cr, uid, [form['journal_id']])[0]['name']
 
53
                state = pooler.get_pool(cr.dbname).get('account.period').read(cr, uid, [form['period_id']])[0]['state']
 
54
                if state == 'done':
 
55
                        raise wizard.except_wizard('UserError', 'This period is already closed !')
 
56
                jp.create(cr, uid, {'name':name, 'period_id': form['period_id'], 'journal_id':form['journal_id']})
 
57
        return {
 
58
                'domain': "[('journal_id','=',%d), ('period_id','=',%d)]" % (form['journal_id'],form['period_id']),
 
59
                'name': 'Saisie Standard',
 
60
                'view_type': 'form',
 
61
                'view_mode': 'tree,form',
 
62
                'res_model': 'account.move.line',
 
63
                'view_id': view_res,
 
64
                'context': "{'journal_id':%d, 'period_id':%d}" % (form['journal_id'],form['period_id']),
 
65
                'type': 'ir.actions.act_window'
 
66
        }
 
67
 
 
68
class wiz_journal(wizard.interface):
 
69
        states = {
 
70
                'init': {
 
71
                        'actions': [],
 
72
                        'result': {'type': 'form', 'arch':_journal_form, 'fields':_journal_fields, 'state':[('end','Cancel'),('open','Open Journal')]}
 
73
                },
 
74
                'open': {
 
75
                        'actions': [],
 
76
                        'result': {'type': 'action', 'action': _action_open_window, 'state':'end'}
 
77
                }
 
78
        }
 
79
wiz_journal('account.move.journal')
 
80