~ubuntu-branches/ubuntu/quantal/openerp6.1/quantal

« back to all changes in this revision

Viewing changes to openerp/addons/lunch/wizard/lunch_order_cancel.py

  • Committer: Package Import Robot
  • Author(s): Yolanda Robla
  • Date: 2012-09-20 15:29:00 UTC
  • Revision ID: package-import@ubuntu.com-20120920152900-woyy3yww8z6acmsk
Tags: upstream-6.1-1+dfsg
Import upstream version 6.1-1+dfsg

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-2009 Tiny SPRL (<http://tiny.be>).
 
6
#
 
7
#    This program is free software: you can redistribute it and/or modify
 
8
#    it under the terms of the GNU Affero General Public License as
 
9
#    published by the Free Software Foundation, either version 3 of the
 
10
#    License, or (at your option) any later version.
 
11
#
 
12
#    This program is distributed in the hope that it will be useful,
 
13
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
#    GNU Affero General Public License for more details.
 
16
#
 
17
#    You should have received a copy of the GNU Affero General Public License
 
18
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
19
#
 
20
##############################################################################
 
21
from osv import fields, osv
 
22
 
 
23
class lunch_order_cancel(osv.osv_memory):
 
24
    """
 
25
    Cancel Lunch Order
 
26
    """
 
27
    _name = "lunch.order.cancel"
 
28
    _description = "Cancel Order"
 
29
 
 
30
    def cancel(self, cr, uid, ids, context=None):
 
31
        """
 
32
        Cancel cashmove entry from cashmoves and update state to draft.
 
33
        @param cr: the current row, from the database cursor,
 
34
        @param uid: the current user’s ID for security checks,
 
35
        @param ids: List  Lunch Order Cancel’s IDs
 
36
        """
 
37
        if context is None:
 
38
            context = {}
 
39
        data = context and context.get('active_ids', []) or []
 
40
        return self.pool.get('lunch.order').lunch_order_cancel(cr, uid, data, context)
 
41
 
 
42
lunch_order_cancel()
 
43
 
 
44
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
 
45