mirror of
https://github.com/OCA/manufacture.git
synced 2025-01-28 16:37:15 +02:00
10 lines
320 B
Python
10 lines
320 B
Python
# -*- coding: utf-8 -*-
|
|
# (c) 2015 Serv. Tecnol. Avanzados - Pedro M. Baeza
|
|
# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html
|
|
from openerp.addons.mrp_operations_extension.hooks import (
|
|
create_default_routing_workcenter_line)
|
|
|
|
|
|
def migrate(cr, version):
|
|
create_default_routing_workcenter_line(cr)
|