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.
12 lines
487 B
12 lines
487 B
# -*- coding: utf-8 -*-
|
|
# © 2016 Serpent Consulting Services Pvt. Ltd. (support@serpentcs.com)
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
|
|
|
|
|
def uninstall_hook(cr, registry):
|
|
cr.execute("""SELECT id FROM ir_act_window
|
|
WHERE res_model = 'mass.editing.wizard'""")
|
|
for res in cr.dictfetchall():
|
|
value = 'ir.actions.act_window,%s' % res.get('id')
|
|
cr.execute("DELETE FROM ir_values WHERE value = '%s'" % value)
|
|
return True
|