18 lines
520 B
Python
18 lines
520 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
|
|
|
|
from flectra import api, SUPERUSER_ID
|
|
|
|
from . import models
|
|
from . import controllers
|
|
|
|
|
|
def uninstall_hook(cr, registry):
|
|
env = api.Environment(cr, SUPERUSER_ID, {})
|
|
env['product.template'].search([
|
|
('service_type', '=', 'timesheet')
|
|
]).write({'service_type': 'manual'})
|
|
env['product.product'].search([
|
|
('service_type', '=', 'timesheet')
|
|
]).write({'service_type': 'manual'})
|