1
0
forked from Mapan/odoo17e
odoo17e-kedaikipas58/addons/timesheet_grid/models/ir_module.py
2024-12-10 09:04:09 +07:00

15 lines
566 B
Python

# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import models
class IrModuleModule(models.Model):
_inherit = 'ir.module.module'
def button_uninstall(self):
extra = self.browse()
if any(m.name == 'timesheet_grid' for m in self):
extra = self.env['ir.module.module'].search([
('name', 'in', ['hr_timesheet', 'sale_timesheet']),
('state', 'in', ['installed', 'to upgrade']),
])
return super(IrModuleModule, (self | extra)).button_uninstall()