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
|
2021-03-29 19:56:14 +02:00
|
|
|
from . import income_statement_colgaap_report
|
2021-03-25 01:00:07 +01:00
|
|
|
|
2024-07-19 07:36:47 +02:00
|
|
|
|
2021-03-25 01:00:07 +01:00
|
|
|
def register():
|
|
|
|
Pool.register(
|
|
|
|
analytic_account_report.PrintAnalyticAccountStart,
|
2021-03-29 19:56:14 +02:00
|
|
|
income_statement_colgaap_report.PrintIncomeStatementCOLGAAPStart,
|
2024-07-19 07:36:47 +02:00
|
|
|
module='analytic_account_co', type_='model')
|
2021-03-25 01:00:07 +01:00
|
|
|
Pool.register(
|
|
|
|
analytic_account_report.PrintAnalyticAccount,
|
2021-03-29 19:56:14 +02:00
|
|
|
income_statement_colgaap_report.PrintIncomeStatementCOLGAAP,
|
2024-07-19 07:36:47 +02:00
|
|
|
module='analytic_account_co', type_='wizard')
|
2021-03-25 01:00:07 +01:00
|
|
|
Pool.register(
|
|
|
|
analytic_account_report.AnalyticAccount,
|
2021-03-29 19:56:14 +02:00
|
|
|
income_statement_colgaap_report.IncomeStatementCOLGAAP,
|
2024-07-19 07:36:47 +02:00
|
|
|
module='analytic_account_co', type_='report')
|