~wowas18/openeam/7.0

« back to all changes in this revision

Viewing changes to mro/wizard/reject.py

  • Committer: wowas18
  • Date: 2013-04-03 15:07:09 UTC
  • Revision ID: wowas18@nm.ru-20130403150709-glmzxkh3wwdybu9c
Initial version!

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- coding: utf-8 -*-
 
2
##############################################################################
 
3
#
 
4
#    OpenERP, Open Source Management Solution
 
5
#    Copyright (C) 2013 CodUP (<http://codup.com>).
 
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
 
 
22
from openerp.osv import fields, osv
 
23
from openerp import netsvc
 
24
 
 
25
class mro_request_reject(osv.osv_memory):
 
26
    _name = 'mro.request.reject'
 
27
    _description = 'Reject Request'
 
28
    
 
29
    _columns = {
 
30
        'reject_reason': fields.text('Reject Reason', required=True),
 
31
    }
 
32
    
 
33
    def reject_request(self, cr, uid, ids, context=None):
 
34
        if 'active_id' in context:
 
35
            reject_reason=self.browse(cr,uid,ids)[0].reject_reason
 
36
            self.pool.get('mro.request').write(cr,uid,context['active_id'],{'reject_reason':reject_reason})
 
37
            wf_service = netsvc.LocalService("workflow")
 
38
            wf_service.trg_validate(uid, 'mro.request', context['active_id'], 'button_reject', cr)
 
39
        return {'type': 'ir.actions.act_window_close',}
 
40
 
 
41
 
 
42
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
 
 
b'\\ No newline at end of file'