2020-11-08 02:24:54 +01:00
|
|
|
from trytond.pool import Pool
|
2020-11-09 04:18:37 +01:00
|
|
|
from . import party
|
|
|
|
from . import country
|
2020-11-16 18:06:49 +01:00
|
|
|
from . import rut
|
2021-02-02 18:43:54 +01:00
|
|
|
from . import configuration
|
|
|
|
from . import account
|
2020-11-20 23:27:29 +01:00
|
|
|
|
2020-11-08 02:24:54 +01:00
|
|
|
__all__ = ['register']
|
|
|
|
|
|
|
|
|
|
|
|
def register():
|
|
|
|
Pool.register(
|
2020-11-09 04:18:37 +01:00
|
|
|
party.Party,
|
|
|
|
party.PartyIdentifier,
|
2020-11-16 18:06:49 +01:00
|
|
|
party.PartyTaxLevelCode,
|
2020-11-09 04:18:37 +01:00
|
|
|
party.Address,
|
|
|
|
country.Subdivision,
|
2020-11-16 18:06:49 +01:00
|
|
|
rut.TaxLevelCode,
|
2021-02-02 18:43:54 +01:00
|
|
|
configuration.Configuration,
|
2021-02-08 00:39:18 +01:00
|
|
|
account.Account,
|
2021-02-02 18:43:54 +01:00
|
|
|
account.Move,
|
2021-02-08 00:39:18 +01:00
|
|
|
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')
|