4

has_many:through関係を処理するためにネストされたフォームを作成しようとしていますが、重複したフィールドがレンダリングされます。

モデル

会社

has_many :provides
has_many :services, :through => :provides
accepts_nested_attributes_for :services, :provides
attr_accessible :service_ids

提供

belongs_to :company
belongs_to :service

サービス

has_many :provides
has_many :companies, :through => :provides
has_many :portfolio_items
acts_as_nested_set

コントローラ

設定/サービス

def index
  @company_services = @company.services
  @service_list = Service.where("parent_id IS NULL")
end

def show
  @user = current_user

  # Find features for supplier based users
  unless @company.blank?
   @my_sectors = @company.sectors
  end
end

def update

if params[:company].nil?
  @company.service_ids = nil
end
respond_to do |format|
  if @company.update_attributes(params[:company])
    format.html { redirect_to settings_path, :notice => "Services successfully updated" }
  else
    format.html { render :index }
  end
 end
end

ビュー

形 -

<%= form_for @company, :url => settings_service_path(@company), :method => :put do |f| %>
<div>
<ul>
<% @service_list.each do |item| %>
    <%= f.fields_for :provides do |p|  %>
        <%= p.fields_for :services do |s|  %>
            <%= render :partial => "subs", :locals => {:subs => s, :service => item, :f => f, :p => p } %>
        <% end %>
    <% end %>
<% end %>
</ul>
<%= submit_tag("Update") %>
<% end %>

_subs.html.erb

<li>
<%= check_box_tag :service_ids, service.id, @company.services.include?(service), :name => "company[service_ids][]", :class => "checkbox" %>
<%= label_tag service.id, service.service_name %>

<% unless service.children.blank? %>
    <ul>
        <%= render :partial => "subs", :collection => service.children %>
    </ul>
<% end %>
</li>

fields_forが重複を引き起こしていることは知っていますが、理由はわかりません。

誰かが明確にすることができますか?

4

1 に答える 1