trytond-production_work_emp.../__init__.py

16 lines
484 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 .employee import TeamWorkCenter, Team
def register():
Pool.register(
TeamWorkCenter,
Team,
module='production_work_employee', type_='model')
# Pool.register(
# module='production_work_employee', type_='wizard')
# Pool.register(
# module='production_work_employee', type_='report')