hooks.py 307 B

123456789
  1. # -*- coding: utf-8 -*-
  2. # © 2016 Serpent Consulting Services Pvt. Ltd. (support@serpentcs.com)
  3. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
  4. def uninstall_hook(cr, registry):
  5. cr.execute("DELETE FROM ir_act_window WHERE res_model = \
  6. 'mass.editing.wizard'")
  7. return True