21 lines
495 B
Python
21 lines
495 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')
|