[FIX] crm: after a merge of several leads/opportunities, delete the old records as...
[odoo/odoo.git] / addons / crm / crm_lead.py
index a974825..0cfc8cb 100644 (file)
@@ -673,8 +673,8 @@ class crm_lead(base_stage, format_address, osv.osv):
                 merged_data['stage_id'] = section_stage_ids and section_stage_ids[0] or False
         # Write merged data into first opportunity
         self.write(cr, uid, [highest.id], merged_data, context=context)
-        # Delete tail opportunities
-        # Delete with super user to avoid access rights issues 
+        # Delete tail opportunities 
+        # We use the SUPERUSER to avoid access rights issues because as the user had the rights to see the records it should be safe to do so
         self.unlink(cr, SUPERUSER_ID, [x.id for x in tail_opportunities], context=context)
 
         return highest.id