cashbook_investment/__init__.py

24 lines
616 B
Python
Raw Normal View History

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
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
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,
Reconciliation,
AssetSetting,
2022-12-20 17:40:33 +00:00
module='cashbook_investment', type_='model')