trytond-jasper_reports/__init__.py

23 lines
695 B
Python
Raw Permalink Normal View History

2018-01-09 11:01:08 +01:00
# This file is part jasper_reports module for Tryton.
# The COPYRIGHT file at the top level of this repository contains
# the full copyright notices and license terms.
2012-12-09 17:22:25 +01:00
from trytond.pool import Pool
2017-12-16 16:34:25 +01:00
from . import data_template
from . import action
from . import model
from . import translation
2012-12-09 17:22:25 +01:00
def register():
Pool.register(
2017-12-16 16:34:25 +01:00
data_template.DataTemplateStart,
data_template.DataTemplateResult,
action.ActionReport,
model.Model,
module='jasper_reports', type_='model')
Pool.register(
2017-12-16 16:34:25 +01:00
data_template.DataTemplate,
translation.ReportTranslationSet,
translation.TranslationClean,
module='jasper_reports', type_='wizard')