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.

10 lines
399 B

  1. # © 2016 Serpent Consulting Services Pvt. Ltd. (support@serpentcs.com)
  2. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
  3. def uninstall_hook(cr, registry):
  4. """Delete the actions that were created with mass_editing when
  5. the module is uninstalled"""
  6. cr.execute("""DELETE FROM ir_act_window
  7. WHERE res_model = 'mass.editing.wizard'""")
  8. return True