cashbook_investment/__init__.py

17 lines
435 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 .line import Line
2022-12-20 17:40:33 +00:00
def register():
Pool.register(
2022-12-21 23:32:26 +00:00
Type,
Book,
Line,
2022-12-20 17:40:33 +00:00
module='cashbook_investment', type_='model')