[FIX] don't destroy values when there are empty default properties

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

View File

@ -4,6 +4,7 @@
from odoo import api, models, fields
REASON_DUPLICATE = 1
REASON_DEFAULT = 2
REASON_DEFAULT_FALSE = 3
class CleanupPurgeLineProperty(models.TransientModel):
@ -17,6 +18,7 @@ class CleanupPurgeLineProperty(models.TransientModel):
reason = fields.Selection([
(REASON_DUPLICATE, 'Duplicated property'),
(REASON_DEFAULT, 'Same value as default'),
(REASON_DEFAULT_FALSE, 'Empty default property'),
])
@api.multi
@ -42,6 +44,15 @@ class CleanupPurgeWizardProperty(models.TransientModel):
])
handled_field_ids = []
for prop in default_properties:
if not prop.get_by_record():
result.append({
'name': '%s@%s: %s' % (
prop.name, prop.res_id, prop.get_by_record()
),
'property_id': prop.id,
'reason': REASON_DEFAULT_FALSE,
})
continue
if prop.fields_id.id in handled_field_ids:
continue
domain = [