~technofluid-team/openobject-addons/technofluid_multiple_installations

« back to all changes in this revision

Viewing changes to account/wizard/wizard_aged_trial_balance.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
import time
 
31
import datetime
 
32
 
 
33
from mx.DateTime import *
 
34
 
 
35
_aged_trial_form = """<?xml version="1.0"?>
 
36
<form string="Aged Trial Balance">
 
37
        <field name="period_length"/>
 
38
</form>"""
 
39
 
 
40
_aged_trial_fields = {
 
41
        'period_length': {'string': 'Period length (days)', 'type': 'integer', 'required': True, 'default': lambda *a:30},
 
42
}
 
43
 
 
44
def _calc_dates(self, cr, uid, data, context):
 
45
        res = {}
 
46
        period_length = data['form']['period_length']
 
47
        if period_length<=0:
 
48
                raise wizard.except_wizard('UserError', 'You must enter a period length that cannot be 0 or below !')
 
49
        start = now()
 
50
        for i in range(5)[::-1]:
 
51
                stop = start-RelativeDateTime(days=period_length)
 
52
                res[str(i)] = {
 
53
                        'name' : 'over '+str((5-i)*period_length)+' days',
 
54
                        'stop': start.strftime('%Y-%m-%d'),
 
55
                        'start' : stop.strftime('%Y-%m-%d'),
 
56
                }
 
57
                start = stop - RelativeDateTime(days=1)
 
58
        return res
 
59
 
 
60
class wizard_report(wizard.interface):
 
61
        states = {
 
62
                'init': {
 
63
                        'actions': [],
 
64
                        'result': {'type':'form', 'arch':_aged_trial_form, 'fields':_aged_trial_fields, 'state':[('end','Cancel'),('print','Print Aged Trial Balance')]},
 
65
                },
 
66
                'print': {
 
67
                        'actions': [_calc_dates],
 
68
                        'result': {'type':'print', 'report':'account.aged.trial.balance', 'state':'end'},
 
69
                },
 
70
        }
 
71
 
 
72
wizard_report('account.aged.trial.balance')
 
73