Explorar el Código

reporter fix

main
Madiwka3 hace 11 meses
padre
commit
645810a8b9
Se han modificado 1 ficheros con 4 adiciones y 0 borrados
  1. +4
    -0
      app/db/repository/report.py

+ 4
- 0
app/db/repository/report.py Ver fichero

@@ -260,6 +260,10 @@ def get_pdf(driver_id: int, db: Session):
tasks_info = []

for task in tasks_data:
if task.get("EndDateTime") is None or task["EndDateTime"] == "":
continue
if task.get("StartDateTime") is None or task["StartDateTime"] == "":
continue
task_info = [
f"{task['Id']}",
task["Description"],


Cargando…
Cancelar
Guardar