book/line: felder für quantity, etc.

This commit is contained in:
Frederik Jaeckel 2022-12-22 00:32:26 +01:00
parent 510b85f99f
commit 70416dbc12
15 changed files with 583 additions and 0 deletions

View file

@ -4,7 +4,13 @@
# full copyright notices and license terms.
from trytond.pool import Pool
from .types import Type
from .book import Book
from .line import Line
def register():
Pool.register(
Type,
Book,
Line,
module='cashbook_investment', type_='model')