line: quantity_balance, validate,

reconciliation: start/end-quantity
todo: tests
This commit is contained in:
Frederik Jaeckel 2022-12-31 16:15:23 +01:00
parent e94a869166
commit f86db6dea3
11 changed files with 484 additions and 140 deletions

View file

@ -7,10 +7,12 @@ from trytond.pool import Pool
from .types import Type
from .book import Book
from .line import Line
from .reconciliation import Reconciliation
def register():
Pool.register(
Type,
Book,
Line,
Reconciliation,
module='cashbook_investment', type_='model')