[IMP] update followers

bzr revid: fka@tinyerp.com-20121207105030-97ohiuppto439633
This commit is contained in:
Foram Katharotiya (OpenERP) 2012-12-07 16:20:30 +05:30
parent b3b6bacccd
commit 0cce342627
2 changed files with 2 additions and 0 deletions

View File

@ -291,6 +291,7 @@ class crm_lead(base_stage, format_address, osv.osv):
lead_subtype_ids = subtype_obj.search(cr, uid, ['|', ('res_model', '=', False), ('res_model', '=', self._name)], context=context)
lead_subtypes = subtype_obj.browse(cr, uid, lead_subtype_ids, context=context)
follower_ids = follower_obj.search(cr, uid, [('res_model', '=', 'crm.case.section'), ('res_id', '=', section_id)], context=context)
self.write(cr, uid, obj_id, {'message_follower_ids': [(6, 0, followers)]}, context=context)
for follower in follower_obj.browse(cr, uid, follower_ids, context=context):
if not follower.subtype_ids:
continue

View File

@ -44,6 +44,7 @@ class sale_order(osv.osv):
order_subtypes = subtype_obj.browse(cr, uid, order_subtype_ids, context=context)
followers = [follow.id for follow in section_id.message_follower_ids]
follower_ids = follower_obj.search(cr, uid, [('res_model', '=', 'crm.case.section'), ('res_id', '=', section_id)], context=context)
self.write(cr, uid, order, {'message_follower_ids': [(6, 0, followers)]}, context=context)
for follower in follower_obj.browse(cr, uid, follower_ids, context=context):
if not follower.subtype_ids:
continue