trytond-account_reports/__init__.py

20 lines
509 B
Python
Raw Permalink Normal View History

2020-06-05 12:43:20 +02: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-10-03 00:12:41 +02:00
from . import common
2020-06-05 12:43:20 +02:00
from . import general_ledger
from . import taxes_by_invoice
2020-06-05 12:43:20 +02:00
def register():
module = 'account_reports'
Pool.register(
common.Configuration,
2021-10-03 00:12:41 +02:00
common.Account,
common.Party,
common.FiscalYear,
2020-06-05 12:43:20 +02:00
module=module, type_='model')
general_ledger.register(module)
2021-08-27 12:37:30 +02:00
taxes_by_invoice.register(module)