~openerp-commiter/openobject-addons/trunk-extra-addons

« back to all changes in this revision

Viewing changes to lunch/wizard/cancel.py

  • Committer: Fabien Pinckaers
  • Date: 2008-11-12 06:43:12 UTC
  • Revision ID: fp@tinyerp.com-20081112064312-fp85io97i1e95tuz
moved

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- encoding: utf-8 -*-
 
2
##############################################################################
 
3
#
 
4
#    OpenERP, Open Source Management Solution   
 
5
#    Copyright (C) 2004-2008 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
##############################################################################
1
22
 
2
23
import wizard
3
24
import netsvc
6
27
 
7
28
cancel_form = """<?xml version="1.0"?>
8
29
<form string="Cancel Order">
9
 
        <label string="Are you sure you want to cancel this order ?"/>
 
30
    <label string="Are you sure you want to cancel this order ?"/>
10
31
</form>"""
11
32
 
12
33
 
14
35
}
15
36
 
16
37
def _cancel(self,cr,uid,data,context):
17
 
        return pooler.get_pool(cr.dbname).get('lunch.order').lunch_order_cancel(cr,uid,data['ids'],context)
 
38
    return pooler.get_pool(cr.dbname).get('lunch.order').lunch_order_cancel(cr,uid,data['ids'],context)
18
39
 
19
40
class order_cancel(wizard.interface):
20
 
        states = {
21
 
                'init': {
22
 
                        'actions': [],
23
 
                        'result': {'type':'form', 'arch':cancel_form, 'fields':cancel_fields, 'state':[('end','No'),('cancel','Yes')]}
24
 
                },
25
 
                'cancel': {
26
 
                        'actions': [_cancel],
27
 
                        'result': {'type':'state', 'state':'end'}
28
 
                }
29
 
        }
 
41
    states = {
 
42
        'init': {
 
43
            'actions': [],
 
44
            'result': {'type':'form', 'arch':cancel_form, 'fields':cancel_fields, 'state':[('end','No'),('cancel','Yes')]}
 
45
        },
 
46
        'cancel': {
 
47
            'actions': [_cancel],
 
48
            'result': {'type':'state', 'state':'end'}
 
49
        }
 
50
    }
30
51
order_cancel('lunch.order.cancel')
31
52
 
 
53
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
 
54