Skip to content

Commit

Permalink
fixes OCA#587
Browse files Browse the repository at this point in the history
  • Loading branch information
florian-dacosta authored and leemannd committed Oct 19, 2021
1 parent 504c616 commit 13d88e2
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 0 deletions.
1 change: 1 addition & 0 deletions database_cleanup/models/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@
from . import purge_tables
from . import purge_data
from . import purge_menus
from . import ir_model_fields
17 changes: 17 additions & 0 deletions database_cleanup/models/ir_model_fields.py
Original file line number Diff line number Diff line change
@@ -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 change: 1 addition & 0 deletions database_cleanup/models/purge_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ def purge(self):
context_flags = {
MODULE_UNINSTALL_FLAG: True,
'no_drop_table': True,
'purge': True,
}

for line in self:
Expand Down

0 comments on commit 13d88e2

Please sign in to comment.