Changes between Version 2 and Version 3 of ViewMyTripsUseCase
- Timestamp:
- 01/13/25 12:57:09 (45 hours ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ViewMyTripsUseCase
v2 v3 32 32 JOIN trip_stops as stop on lf.location_id = stop.location_id 33 33 WHERE tick.account_id = {account_lists_id} 34 AND status = {selected_status} 35 AND (trip.date < {before_date} AND trip.date < {after_date}) 36 AND t_o.company_name = {selected_company_name}; 34 AND status = {selected_status} -- Optional 35 AND (trip.date < {before_date} AND trip.date < {after_date}) -- Optional 36 AND t_o.company_name = {selected_company_name}; -- Optional 37 37 }}} 38 38