Bundle item has an option to not print in the bill.

Bills and Kots should print properly with bundles
This commit is contained in:
2026-02-10 18:00:03 +00:00
parent 7382d487ac
commit 91b3740ec0
36 changed files with 290 additions and 141 deletions

9
frank/run_worker.py Normal file
View File

@ -0,0 +1,9 @@
import asyncio
from arq.worker import run_worker
from worker import WorkerSettings
# Create & set a loop BEFORE arq touches asyncio.get_event_loop()
asyncio.set_event_loop(asyncio.new_event_loop())
run_worker(WorkerSettings)