add menu, groups, planner-list, forms...

This commit is contained in:
Frederik Jaeckel 2024-02-24 23:43:59 +01:00
parent cd79072e2c
commit ebb1efe7a8
15 changed files with 526 additions and 0 deletions

View file

@ -4,8 +4,14 @@
# full copyright notices and license terms.
from trytond.pool import Pool
from .ir import Rule
from .planner import ScheduledBooking
from .cashbook import Cashbook
def register():
Pool.register(
Rule,
ScheduledBooking,
Cashbook,
module='cashbook_planner', type_='model')