trytonpsk-reports/__init__.py
Camilo Sarmiento 28004f0f31 migrate to git
2020-04-15 18:27:25 -05:00

13 lines
381 B
Python

# 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
from .invoice import InvoiceLogoReport
from .purchase import PurchaseReport
def register():
Pool.register(
InvoiceLogoReport,
PurchaseReport,
module='reports', type_='report')