trytond-jasper_reports_options/__init__.py

13 lines
347 B
Python
Raw Permalink Normal View History

2014-11-07 14:25:36 +01:00
# This file is part jasper_reports_options module for Tryton.
# The COPYRIGHT file at the top level of this repository contains
# the full copyright notices and license terms.
2014-01-13 10:46:16 +01:00
from trytond.pool import Pool
2018-09-15 18:09:41 +02:00
from . import company
2014-01-13 10:46:16 +01:00
def register():
Pool.register(
2018-09-15 18:09:41 +02:00
company.Company,
2014-01-13 10:46:16 +01:00
module='jasper_reports_options', type_='model')