2022-12-20 18:40:33 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# This file is part of the cashbook-module from m-ds for Tryton.
|
|
|
|
# The COPYRIGHT file at the top level of this repository contains the
|
|
|
|
# full copyright notices and license terms.
|
|
|
|
|
|
|
|
from trytond.pool import Pool
|
2022-12-22 00:32:26 +01:00
|
|
|
from .types import Type
|
|
|
|
from .book import Book
|
2022-12-31 16:15:23 +01:00
|
|
|
from .reconciliation import Reconciliation
|
2023-01-12 23:37:20 +01:00
|
|
|
from .line import Line
|
2023-01-15 23:06:47 +01:00
|
|
|
from .splitline import SplitLine
|
2023-02-12 00:09:56 +01:00
|
|
|
from .assetsetting import AssetSetting
|
2023-01-12 23:37:20 +01:00
|
|
|
|
2022-12-20 18:40:33 +01:00
|
|
|
|
|
|
|
def register():
|
|
|
|
Pool.register(
|
2022-12-22 00:32:26 +01:00
|
|
|
Type,
|
|
|
|
Book,
|
|
|
|
Line,
|
2023-01-15 23:06:47 +01:00
|
|
|
SplitLine,
|
2022-12-31 16:15:23 +01:00
|
|
|
Reconciliation,
|
2023-02-12 00:09:56 +01:00
|
|
|
AssetSetting,
|
2022-12-20 18:40:33 +01:00
|
|
|
module='cashbook_investment', type_='model')
|