Skip to content

Commit

Permalink
Include Engineering Library PT in pickup locations (#4725)
Browse files Browse the repository at this point in the history
  • Loading branch information
christinach authored Jan 28, 2025
1 parent 6632176 commit f818753
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/helpers/requests/application_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ def available_pick_ups(requestable, default_pick_ups)
elsif requestable.recap? || requestable.annex?
locations = requestable.pick_up_locations || default_pick_ups
# open libraries
pick_ups = locations.select { |loc| ['PJ', 'PA', 'PL', 'PK', 'PM', 'QX', 'PW', 'PN', 'QA', 'QT', 'QC'].include?(loc[:gfa_pickup]) }
pick_ups = locations.select { |loc| ['PJ', 'PA', 'PL', 'PK', 'PM', 'PT', 'QX', 'PW', 'PN', 'QA', 'QT', 'QC'].include?(loc[:gfa_pickup]) }
pick_ups << default_pick_ups[0] if pick_ups.empty?
pick_ups
else
Expand Down

0 comments on commit f818753

Please sign in to comment.