trytondo-account_co_co/__init__.py
2020-11-16 12:06:49 -05:00

20 lines
494 B
Python

from trytond.pool import Pool
from . import party
from . import country
from . import rut
__all__ = ['register']
def register():
Pool.register(
party.Party,
party.PartyIdentifier,
party.PartyTaxLevelCode,
party.Address,
country.Subdivision,
rut.TaxLevelCode,
module='account_co_co', type_='model')
Pool.register(
module='account_co_co', type_='wizard')
Pool.register(
module='account_co_co', type_='report')