trytond-timesheet_work_cate.../__init__.py

14 lines
368 B
Python
Raw Permalink Normal View History

2017-11-17 10:46:23 +01:00
# The COPYRIGHT file at the top level of this repository contains
# the full copyright notices and license terms.
from trytond.pool import Pool
2021-09-25 16:43:44 +02:00
from . import category
from . import timesheet
2017-11-17 10:46:23 +01:00
def register():
Pool.register(
2021-09-25 16:43:44 +02:00
category.Category,
timesheet.Work,
timesheet.WorkCategory,
2017-11-17 10:46:23 +01:00
module='timesheet_work_category', type_='model')