2022-12-20 17:40:33 +00: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-21 23:32:26 +00:00
|
|
|
from .types import Type
|
|
|
|
from .book import Book
|
2022-12-31 15:15:23 +00:00
|
|
|
from .reconciliation import Reconciliation
|
2023-01-12 22:37:20 +00:00
|
|
|
from .line import Line
|
2023-01-15 22:06:47 +00:00
|
|
|
from .splitline import SplitLine
|
2023-02-11 23:09:56 +00:00
|
|
|
from .assetsetting import AssetSetting
|
2023-01-12 22:37:20 +00:00
|
|
|
|
2022-12-20 17:40:33 +00:00
|
|
|
|
|
|
|
def register():
|
|
|
|
Pool.register(
|
2022-12-21 23:32:26 +00:00
|
|
|
Type,
|
|
|
|
Book,
|
|
|
|
Line,
|
2023-01-15 22:06:47 +00:00
|
|
|
SplitLine,
|
2022-12-31 15:15:23 +00:00
|
|
|
Reconciliation,
|
2023-02-11 23:09:56 +00:00
|
|
|
AssetSetting,
|
2022-12-20 17:40:33 +00:00
|
|
|
module='cashbook_investment', type_='model')
|