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.

14 lines
500 B

  1. # Copyright 2016 Serpent Consulting Services Pvt. Ltd. (support@serpentcs.com)
  2. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
  3. from odoo.api import Environment, SUPERUSER_ID
  4. def uninstall_hook(cr, registry):
  5. """Delete the actions that were created with mass_editing when
  6. the module is uninstalled"""
  7. env = Environment(cr, SUPERUSER_ID, {})
  8. env['ir.actions.act_window'].search([
  9. ('res_model', '=', 'mass.editing.wizard')
  10. ]).unlink()
  11. return True