2021-03-18 20:14:56 +01:00
|
|
|
from trytond.pool import Pool
|
2021-03-25 01:00:07 +01:00
|
|
|
|
|
|
|
from . import analytic_account_report
|
|
|
|
|
|
|
|
def register():
|
|
|
|
Pool.register(
|
|
|
|
analytic_account_report.PrintAnalyticAccountStart,
|
|
|
|
module='analytic_account_co',type_='model')
|
|
|
|
|
|
|
|
Pool.register(
|
|
|
|
analytic_account_report.PrintAnalyticAccount,
|
|
|
|
module='analytic_account_co',type_='wizard')
|
|
|
|
|
|
|
|
Pool.register(
|
|
|
|
analytic_account_report.AnalyticAccount,
|
|
|
|
module='analytic_account_co',type_='report')
|