[FIX] handle correctly the convertion of exceptions to unicode
[odoo/odoo.git] / bin / workflow / wkf_expr.py
1 # -*- encoding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution   
5 #    Copyright (C) 2004-2009 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 ##############################################################################
22
23 import sys
24 import netsvc
25 import osv as base
26 import pooler
27
28 class Env(dict):
29     def __init__(self, cr, uid, model, ids):
30         self.cr = cr
31         self.uid = uid
32         self.model = model
33         self.ids = ids
34         self.obj = pooler.get_pool(cr.dbname).get(model)
35         self.columns = self.obj._columns.keys() + self.obj._inherit_fields.keys()
36
37     def __getitem__(self, key):
38         if (key in self.columns) or (key in dir(self.obj)):
39             res = self.obj.browse(self.cr, self.uid, self.ids[0])
40             return res[key]
41         else:
42             return super(Env, self).__getitem__(key)
43
44 def _eval_expr(cr, ident, workitem, action):
45     ret=False
46     assert action, 'You used a NULL action in a workflow, use dummy node instead.'
47     for line in action.split('\n'):
48         line = line.strip()
49         uid=ident[0]
50         model=ident[1]
51         ids=[ident[2]]
52         if line =='True':
53             ret=True
54         elif line =='False':
55             ret=False
56         else:
57             env = Env(cr, uid, model, ids)
58             ret = eval(line, env)
59     return ret
60
61 def execute_action(cr, ident, workitem, activity):
62     obj = pooler.get_pool(cr.dbname).get('ir.actions.server')
63     ctx = {'active_id':ident[2], 'active_ids':[ident[2]]}
64     result = obj.run(cr, ident[0], [activity['action_id']], ctx)
65     return result
66
67 def execute(cr, ident, workitem, activity):
68     return _eval_expr(cr, ident, workitem, activity['action'])
69
70 def check(cr, workitem, ident, transition, signal):
71     ok = True
72     if transition['signal']:
73         ok = (signal==transition['signal'])
74
75     uid = ident[0]
76     if transition['role_id'] and uid != 1:
77         pool = pooler.get_pool(cr.dbname)
78         user_roles = pool.get('res.users').read(cr, uid, [uid], ['roles_id'])[0]['roles_id']
79         ok = ok and pool.get('res.roles').check(cr, uid, user_roles, transition['role_id'])
80     ok = ok and _eval_expr(cr, ident, workitem, transition['condition'])
81     return ok
82
83
84 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
85