0

我有一个选择框,其中显示了我所有的 ejecutives,当我选择 ejecutive 时,它​​显示了选择的ejectuve 的策略。

我的问题是在选择了一个 ejecutive 并获得了我的结果之后,我的选择框从第一个 ejecutive 而不是选择的 ejecutive 开始,似乎已经清理了我所做的选择

我的桌子

 TABLE EJECUTIVES
       |id|  |name| |lastname1|
 TABLE POLICIES
       |id|  |num_police|  |ejecutive_id|

我的模型

class Policy < ActiveRecord::Base
   unloadable
   belongs_to :ejecutive
   has_many :policy

   def self.search(search)
    if search
      find(:all, :conditions => ["ejecutive_id = ? ", search.to_i  ] )
    else
      find(:all)
    end
   end
end

class Ejecutive < ActiveRecord::Base
  has_many :policies
end

这是我的控制器

class PolicyManagement::PolicyController < ApplicationController
    def generate_print_ejecutive_comercial
      @ejecutives = Ejecutive.find(:all)
      @policies = Policy.search(params[:search]).paginate(:page => params[:page], :per_page => 10)
    end
end

这是我的看法

<% form_tag :controller=>"policy_management/policy",:action =>"generate_print_ejecutive_comercial", :method => 'get' do %>
    <%= select_tag "search", options_for_select(@ejecutives.collect {|t| [t.name.to_s+" "+t.lastname1.to_s,t.id]}) %>
    <%= submit_tag "Search", :name => nil %>
<% end %>

 Results
     <% @policies.each do |policy| %>
     <p> <%= policy.num_policy%> </p>
     <p> <%= policy.ejecutive.name %> </p>
     <p> <%= policy.ejecutive.last_name %> </p>
     <% end %>
     <%= will_paginate @policies %>

有人知道这个问题吗?我真的很感激帮助。

4

1 回答 1

2

您需要在select_tag下面指定选定的值

<%= select_tag "search", options_for_select( @ejecutives.collect 
                   {|t| [t.name.to_s+" "+t.lastname1.to_s,t.id]},
                   params[:search].to_i ) %>
于 2013-09-21T19:32:20.220 回答