This commit is contained in:
2026-03-08 08:53:02 +01:00
parent a3f15c30e6
commit 4e6ddc39c1
4 changed files with 3226 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
# 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 . import account
def register():
Pool.register(
account.AccountTemplate,
module='account_itsa', type_='model')
Pool.register(
account.CreateChart,
module='account_itsa', type_='wizard')