Browse Source

fixes #587

pull/1408/head
Florian da Costa 8 years ago
committed by Pedro M. Baeza
parent
commit
a6a3f903c8
  1. 1
      database_cleanup/models/__init__.py
  2. 17
      database_cleanup/models/ir_model_fields.py
  3. 1
      database_cleanup/models/purge_models.py

1
database_cleanup/models/__init__.py

@ -5,3 +5,4 @@ from . import purge_columns
from . import purge_tables
from . import purge_data
from . import purge_menus
from . import ir_model_fields

17
database_cleanup/models/ir_model_fields.py

@ -0,0 +1,17 @@
# -*- coding: utf-8 -*-
# © 2014-2016 Therp BV <http://therp.nl>
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
from openerp import api, models
class IrModelFields(models.Model):
_inherit = 'ir.model.fields'
# In case of purging it means the model does not exist anymore in
# installed module. In this specific case, we need to avoid to check
# if fields can be removed as it would fail.
@api.multi
def _prepare_update(self):
if self.env.context.get('purge'):
self -= self.filtered(lambda x: x.model not in self.env.registry)
return super(IrModelFields, self)._prepare_update()

1
database_cleanup/models/purge_models.py

@ -54,6 +54,7 @@ class CleanupPurgeLineModel(models.TransientModel):
context_flags = {
MODULE_UNINSTALL_FLAG: True,
'no_drop_table': True,
'purge': True,
}
for line in self:

Loading…
Cancel
Save