[REM] ir.needaction: removed an unused method.

bzr revid: tde@openerp.com-20120628121412-22mlv0uaxol7w3d5
This commit is contained in:
Thibault Delavallée 2012-06-28 14:14:12 +02:00
parent 0b0bb070bf
commit f4c9ef5216
1 changed files with 0 additions and 9 deletions

View File

@ -196,14 +196,5 @@ class ir_needaction_mixin(osv.AbstractModel):
get the number of actions it has to perform"""
rel_obj = self.pool.get('ir.needaction_users_rel')
return rel_obj.search(cr, uid, [('res_model', '=', self._name), ('user_id', '=', user_id)], limit=limit, count=True, context=context)
def needaction_get_record_references(self, cr, uid, user_id, offset=None, limit=None, order=None, context=None):
"""For a given user_id, get all the records that asks this user to
perform an action. Records are given as references, a list of
tuples (model_name, record_id).
This method is trans-model."""
rel_obj = self.pool.get('ir.needaction_users_rel')
rel_ids = rel_obj.search(cr, uid, [('user_id', '=', user_id)], offset=offset, limit=limit, order=order, context=context)
return map(itemgetter('res_model', 'res_id'), rel_obj.read(cr, uid, rel_ids, ['res_model', 'res_id'], context=context))
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: