You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
# Copyright 2014-2016 Therp BV <http://therp.nl> # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). # pylint: disable=consider-merging-classes-inherited from odoo import _, api, fields, models from odoo.exceptions import UserError
class CleanupPurgeLineMenu(models.TransientModel): _inherit = 'cleanup.purge.line' _name = 'cleanup.purge.line.menu'
wizard_id = fields.Many2one( 'cleanup.purge.wizard.menu', 'Purge Wizard', readonly=True) menu_id = fields.Many2one('ir.ui.menu', 'Menu entry')
@api.multi def purge(self): """Unlink menu entries upon manual confirmation.""" if self: objs = self else: objs = self.env['cleanup.purge.line.menu']\ .browse(self._context.get('active_ids')) to_unlink = objs.filtered(lambda x: not x.purged and x.menu_id) self.logger.info('Purging menu entries: %s', to_unlink.mapped('name')) to_unlink.mapped('menu_id').unlink() return to_unlink.write({'purged': True})
class CleanupPurgeWizardMenu(models.TransientModel): _inherit = 'cleanup.purge.wizard' _name = 'cleanup.purge.wizard.menu' _description = 'Purge menus'
@api.model def find(self): """
Search for models that cannot be instantiated. """
res = [] for menu in self.env['ir.ui.menu'].with_context(active_test=False)\ .search([('action', '!=', False)]): if menu.action.type != 'ir.actions.act_window': continue if (menu.action.res_model and menu.action.res_model not in self.env) or \ (menu.action.src_model and menu.action.src_model not in self.env): res.append((0, 0, { 'name': menu.complete_name, 'menu_id': menu.id, })) if not res: raise UserError(_('No dangling menu entries found')) return res
purge_line_ids = fields.One2many( 'cleanup.purge.line.menu', 'wizard_id', 'Menus to purge')
|