I want to create a reservationsystem for hotels as a project for my university, i have a searchform which should display all available rooms.
<%= form_tag mainpage_path, :method => 'get' do %>
<p>
<%= select_tag(:search, options_for_select([['Einzelzimmer'], ['Doppelzimmer']]))%>
<br/>
Arrival: <%= date_select :arrival, 'Arrival', use_short_month: true, order: [:day, :month, :year] %> <br/>
Departure: <%= date_select :departure, 'Departure', use_short_month: true, order: [:day, :month, :year], default:Date.tomorrow %> <br/>
<%params[:search] %>
<%params[:arrival]%>
<%params[:departure]%>
<%= submit_tag "Search" %>
</p>
<% end %>
if this all works, you should see an available room, which you can reserve.
but i want to save the params[:arrival]
and params[:departure]
and pass them to the booking form
, because otherwise the user has to fill in the arrival
and departure
dates again.
Is there any technique i can use to solve that?
Thank you in advance
You would need to store the arrival and departure time in an instance variable in your search controller, so you can access it during view rendering, i.e. during displaying available rooms.
Then render your view for selecting a room
and link each room to the booking path and pass in the arrival and departure date:
By passing in a hash to #link_to, you can set GET parameters, which you can read out again in your BookingsController.
This is a pretty basic example, but you can extend it in any way you like.