trytondo-account_co_co/__init__.py

28 lines
651 B
Python
Raw Normal View History

2020-11-08 02:24:54 +01:00
from trytond.pool import Pool
from . import party
from . import country
2020-11-16 18:06:49 +01:00
from . import rut
from . import configuration
from . import account
2020-11-08 02:24:54 +01:00
__all__ = ['register']
def register():
Pool.register(
party.Party,
party.PartyIdentifier,
2020-11-16 18:06:49 +01:00
party.PartyTaxLevelCode,
party.Address,
country.Subdivision,
2020-11-16 18:06:49 +01:00
rut.TaxLevelCode,
configuration.Configuration,
account.Account,
account.Move,
account.Line,
2020-11-08 02:24:54 +01:00
module='account_co_co', type_='model')
Pool.register(
module='account_co_co', type_='wizard')
Pool.register(
module='account_co_co', type_='report')