mirror of
https://bitbucket.org/presik/trytonpsk-reports.git
synced 2023-12-14 05:13:14 +01:00
13 lines
381 B
Python
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')
|