Comment traduire les éléments suivants sous forme simple?
<%= form_for(@bill) do |f| %>
<%= f.label :location_id %>
<%= f.collection_select(:location_id, @locations, :id, :location_name,
{:selected => @bill.location_id}) %>
Je ne peux pas utiliser une simple association car @locations est le résultat d'une requête where.
Essaye ça
<%= simple_form_for @bill do |f| %>
<%= f.input :location,:collection => @locations,:label_method => :location_name,:value_method => :id,:label => "Location" ,:include_blank => false %>
<%= f.button :submit %>
<%end%>
J'espère que cette aide
Voici la finale:
<%= f.input :location_id, collection: @locations, label_method: :location_name, value_method: :id,label: "Location", include_blank: false, selected: @bill.location_id %>
En termes simples, si nous avons une association entre l'emplacement et la facture, nous pouvons faire comme ceci:
<%= simple_form_for @bill do |f| %>
<%= f.association :location, collection: @locations, priority: @bill.location %>
<%= f.button :submit %>
<% end %>
J'espère que cela vous aidera.