소스 검색

further fix

main
Madiwka3 1 년 전
부모
커밋
b704b274d0
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  1. +3
    -1
      app/db/repository/report.py

+ 3
- 1
app/db/repository/report.py 파일 보기

@@ -271,7 +271,9 @@ def get_pdf(driver_id: int, db: Session):
"{} km".format(task["DistanceCovered"]),
task["Status"],
task["StartDateTime"].strftime("%m/%d/%Y, %H:%M:%S"),
parser.parse(task["EndDateTime"]).strftime("%m/%d/%Y, %H:%M:%S"),
parser.parse(task["EndDateTime"]).strftime("%m/%d/%Y, %H:%M:%S")
if type(task["EndDateTime"]) == str
else task["EndDateTime"].strftime("%m/%d/%Y, %H:%M:%S"),
]
tasks_info.append(task_info)



불러오는 중...
취소
저장