trytonpsk-company_department/__init__.py

12 lines
354 B
Python
Raw Permalink Normal View History

2020-04-16 01:43:33 +02:00
# This file is part of Tryton. The COPYRIGHT file at the top level of
# this repository contains the full copyright notices and license terms.
from trytond.pool import Pool
2021-05-30 07:27:33 +02:00
from . import department
2020-04-16 01:43:33 +02:00
def register():
Pool.register(
2021-05-30 07:27:33 +02:00
department.Department,
department.DepartmentUser,
2020-04-16 01:43:33 +02:00
module='company_department', type_='model')