trytonpsk-staff/__init__.py

21 lines
571 B
Python
Raw Permalink Normal View History

2020-04-16 00:27:15 +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-06-02 19:26:32 +02:00
from . import position
from . import employee
from . import holidays
from . import contract
from . import configuration
2020-04-16 00:27:15 +02:00
def register():
Pool.register(
2021-06-02 19:26:32 +02:00
holidays.Holidays,
position.Position,
employee.Employee,
contract.StaffContract,
configuration.Configuration,
configuration.StaffConfigurationSequence,
2020-04-16 00:27:15 +02:00
module='staff', type_='model')