Changes between Version 2 and Version 3 of ViewMyTripsUseCase


Ignore:
Timestamp:
01/13/25 12:57:09 (45 hours ago)
Author:
221514
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ViewMyTripsUseCase

    v2 v3  
    3232JOIN trip_stops as stop on lf.location_id = stop.location_id
    3333WHERE 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};
     34AND status = {selected_status} -- Optional
     35AND (trip.date < {before_date} AND trip.date < {after_date}) -- Optional
     36AND t_o.company_name = {selected_company_name}; -- Optional
    3737}}}
    3838