[FIX] orm, workflow: do not disable wkf buttons unless explicit group is set on transitions

bzr revid: odo@openerp.com-20101015200655-xcn22gdoka0n4gys
This commit is contained in:
Olivier Dony 2010-10-15 22:06:55 +02:00
parent 0559c0f8eb
commit 74f144f813
1 changed files with 2 additions and 1 deletions

View File

@ -1382,8 +1382,9 @@ class orm_template(object):
INNER JOIN wkf_transition t ON (t.act_to = a.id)
WHERE wkf.osv = %s
AND t.signal = %s
AND t.group_id is NOT NULL
""", (self._name, button.get('name')))
group_ids = [x[0] for x in cr.fetchall()]
group_ids = [x[0] for x in cr.fetchall() if x[0]]
can_click = not group_ids or bool(set(user_groups).intersection(group_ids))
button.set('readonly', str(int(not can_click)))
return node