Spaces:
Sleeping
Sleeping
OnlyBiggg
commited on
Commit
·
286e42f
1
Parent(s):
bfd3399
fix seat
Browse files
app/dialogflow/api/v1/dialogflow.py
CHANGED
|
@@ -779,9 +779,9 @@ async def is_valid_select_seat(request: Request) -> Response:
|
|
| 779 |
|
| 780 |
trip_id = int(trip.get("id")) if trip.get("id") else None
|
| 781 |
|
| 782 |
-
departure_date: str = trip.get("
|
| 783 |
|
| 784 |
-
departure_time: str = trip.get("
|
| 785 |
|
| 786 |
kind: str = trip.get("seat_type_name")
|
| 787 |
|
|
|
|
| 779 |
|
| 780 |
trip_id = int(trip.get("id")) if trip.get("id") else None
|
| 781 |
|
| 782 |
+
departure_date: str = trip.get("raw_departure_date")
|
| 783 |
|
| 784 |
+
departure_time: str = trip.get("raw_departure_time")
|
| 785 |
|
| 786 |
kind: str = trip.get("seat_type_name")
|
| 787 |
|