Browse Source

[IMP] purge uninstalled unavailable modules in bulk

pull/1316/head
Holger Brunn 6 years ago
parent
commit
30f71c3455
No known key found for this signature in database GPG Key ID: 1C9760FECA3AE18
  1. 7
      database_cleanup/models/purge_modules.py

7
database_cleanup/models/purge_modules.py

@ -63,16 +63,19 @@ class CleanupPurgeWizardModule(models.TransientModel):
@api.model
def find(self):
res = []
purge_lines = self.env['cleanup.purge.line.module']
for module in self.env['ir.module.module'].search([]):
if get_module_path(module.name):
continue
if module.state == 'uninstalled':
self.env['cleanup.purge.line.module'].create({
purge_lines += self.env['cleanup.purge.line.module'].create({
'name': module.name,
}).purge()
})
continue
res.append((0, 0, {'name': module.name}))
purge_lines.purge()
if not res:
raise UserError(_('No modules found to purge'))
return res

Loading…
Cancel
Save