add list of booking lines on scheduled bookings

This commit is contained in:
Frederik Jaeckel 2024-03-09 22:36:51 +01:00
parent be92110ae1
commit 9b0af0d64e
7 changed files with 118 additions and 3 deletions

View file

@ -5,8 +5,8 @@
from trytond.pool import Pool
from .ir import Rule
from .planner import ScheduledBooking
from .cashbook import Cashbook
from .planner import ScheduledBooking, ScheduledBookingCashbookRel
from .cashbook import Cashbook, CashbookLine
from .cron import Cron
from .nextrun import NextRun
@ -17,5 +17,7 @@ def register():
ScheduledBooking,
NextRun,
Cashbook,
CashbookLine,
Cron,
ScheduledBookingCashbookRel,
module='cashbook_planner', type_='model')