[FIX] show the redundant property's res_id, not the default one's

pull/2684/head
Holger Brunn 2019-02-11 13:50:41 +01:00 committed by Miika Nissi
parent 5eea6fe685
commit 606e679c8b
No known key found for this signature in database
GPG Key ID: B20DC9FCFAF92E7F
1 changed files with 2 additions and 1 deletions

View File

@ -87,7 +87,8 @@ class CleanupPurgeWizardProperty(models.TransientModel):
for redundant_property in self.env['ir.property'].search(domain):
result.append({
'name': '%s@%s: %s' % (
prop.name, prop.res_id, prop.get_by_record()
prop.name, redundant_property.res_id,
prop.get_by_record()
),
'property_id': redundant_property.id,
'reason': REASON_DEFAULT,