[FIX] base_action_rule: undefined variable (due to code move)

bzr revid: rco@openerp.com-20130301131929-3q4egd9jpasss88w
This commit is contained in:
Raphael Collet 2013-03-01 14:19:29 +01:00
parent ed498dac73
commit f1f15f52b3
1 changed files with 2 additions and 1 deletions

View File

@ -117,6 +117,8 @@ class base_action_rule(osv.osv):
def _process(self, cr, uid, action, record_ids, context=None):
""" process the given action on the records """
model = self.pool.get(action.model_id.model)
# modify records
values = {}
if 'date_action_last' in model._all_columns:
@ -131,7 +133,6 @@ class base_action_rule(osv.osv):
model.message_subscribe(cr, uid, record_ids, follower_ids, context=context)
# execute server actions
model = self.pool.get(action.model_id.model)
if action.server_action_ids:
server_action_ids = map(int, action.server_action_ids)
for record in model.browse(cr, uid, record_ids, context):