2018-01-16 06:58:15 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
2018-01-16 11:34:37 +01:00
|
|
|
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
|
2018-01-16 06:58:15 +01:00
|
|
|
|
2018-07-13 11:26:56 +02:00
|
|
|
from flectra import api, SUPERUSER_ID
|
|
|
|
|
2018-01-16 06:58:15 +01:00
|
|
|
from . import models
|
|
|
|
from . import controllers
|
2018-07-13 11:26:56 +02:00
|
|
|
|
|
|
|
|
|
|
|
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'})
|