~tempo-openerp/openobject-addons/trunk-bugfix-710644

« back to all changes in this revision

Viewing changes to account/wizard/wizard_budget_spread.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
#
 
5
# WARNING: This program as such is intended to be used by professional
 
6
# programmers who take the whole responsability of assessing all potential
 
7
# consequences resulting from its eventual inadequacies and bugs
 
8
# End users who are looking for a ready-to-use solution with commercial
 
9
# garantees and support are strongly adviced to contract a Free Software
 
10
# Service Company
 
11
#
 
12
# This program is Free Software; you can redistribute it and/or
 
13
# modify it under the terms of the GNU General Public License
 
14
# as published by the Free Software Foundation; either version 2
 
15
# of the License, or (at your option) any later version.
 
16
#
 
17
# This program is distributed in the hope that it will be useful,
 
18
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
19
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
20
# GNU General Public License for more details.
 
21
#
 
22
# You should have received a copy of the GNU General Public License
 
23
# along with this program; if not, write to the Free Software
 
24
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
25
#
 
26
##############################################################################
 
27
 
 
28
import wizard
 
29
import netsvc
 
30
 
 
31
_spread_form = '''<?xml version="1.0"?>
 
32
<form string="Spread">
 
33
        <field name="fiscalyear"/>
 
34
        <newline/>
 
35
        <field name="quantity"/>
 
36
        <field name="amount"/>
 
37
</form>'''
 
38
 
 
39
_spread_fields = {
 
40
        'fiscalyear': {'string':'Fiscal Year', 'type':'many2one', 'relation':'account.fiscalyear', 'required':True},
 
41
        'quantity': {'string':'Quantity', 'type':'float', 'digits':(16,2)},
 
42
        'amount': {'string':'Amount', 'type':'float', 'digits':(16,2)},
 
43
}
 
44
 
 
45
class wizard_budget_spread(wizard.interface):
 
46
        def _spread(self, cr, uid, data, context):
 
47
                service = netsvc.LocalService("object_proxy")
 
48
                form = data['form']
 
49
                res = service.execute(cr.dbname, uid, 'account.budget.post', 'spread', data['ids'], form['fiscalyear'], form['quantity'], form['amount'])
 
50
                return {}
 
51
                
 
52
        states = {
 
53
                'init': {
 
54
                        'actions': [],
 
55
                        'result': {'type':'form', 'arch':_spread_form, 'fields':_spread_fields, 'state':[('end','Cancel'),('spread','Spread')]}
 
56
                },
 
57
                'spread': {
 
58
                        'actions': [_spread],
 
59
                        'result': {'type':'state', 'state':'end'}
 
60
                }
 
61
        }
 
62
wizard_budget_spread('account.budget.spread')
 
63