mirror of
https://github.com/NaN-tic/trytond-production_route.git
synced 2023-12-14 03:12:59 +01:00
16 lines
403 B
Python
16 lines
403 B
Python
#The COPYRIGHT file at the top level of this repository contains the full
|
|
#copyright notices and license terms.
|
|
|
|
from trytond.pool import Pool
|
|
from .route import *
|
|
from .product import *
|
|
|
|
def register():
|
|
Pool.register(
|
|
WorkCenterCategory,
|
|
WorkCenter,
|
|
OperationType,
|
|
Route,
|
|
RouteOperation,
|
|
ProductBom,
|
|
module='production_route', type_='model')
|