trytondo-account_co_co/__init__.py

18 lines
418 B
Python

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