flectra/addons/sale_timesheet/__init__.py

18 lines
520 B
Python
Raw Normal View History

# -*- 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-07-13 11:26:56 +02:00
from flectra import api, SUPERUSER_ID
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'})