В настоящее время у меня есть форма с вложенными моделями - пока все идет по плану.Форма позволяет мне создать продажу, и из этого я могу создать покупателя и автомобиль (отдельные модели).
Проблема возникает, когда я пытаюсь создать регистрационный номер, который является отдельной моделью, вложенной в автомобиль;по сути, я могу заставить текстовое поле появляться в форме, но попытка создать регистрационный номер приводит к ошибке can not mass assign protected attribute :registration_number
в консоли, а при редактировании продажи, которая включает автомобиль с регистрационным номером, текстовое поле пустое,
Используются следующие модели:
class Sale < ActiveRecord::Base
attr_accessible :customer_id, :vehicle_id, :sale_date,
:customer_attributes, :vehicle_attributes
belongs_to :customer
accepts_nested_attributes_for :customer
belongs_to :vehicle
accepts_nested_attributes_for :vehicle
end
и
class Vehicle < ActiveRecord::Base
attr_accessible :first_registration_date, :hidden, :registration_numbers_attributes
has_many :sales
has_many :customers, :through => :sales
has_many :vehicle_registration_numbers, :dependent => :delete_all
has_many :registration_numbers, :through => :vehicle_registration_numbers
accepts_nested_attributes_for :registration_numbers, :allow_destroy => true
end
и
class RegistrationNumber < ActiveRecord::Base
attr_accessible :number
has_many :vehicle_registration_numbers, :dependent => :delete_all
has_many :vehicles, :through => :vehicle_registration_numbers
end
и
class VehicleRegistrationNumber < ActiveRecord::Base
belongs_to :vehicle
belongs_to :registration_number
end
Форма вопроса:
<%= form_for @sale, :html => {:class => 'fullform'} do |f| %>
<%= field_set_tag 'Customer Details' do %>
<%= f.fields_for :customer do |builder| %>
<snip>
<% end %>
<% end %>
<%= field_set_tag 'Vehicle Details' do %>
<%= f.fields_for :vehicle do |vehicle_builder| %>
<snip>
<%= f.fields_for :registration_numbers do |registration_number_builder| %>
<%= registration_number_builder.text_field :number, :class => 'formtxtbox-short' %>
<% end %>
<% end %>
<% end %>
<% end %>
Любая помощь будет принята с благодарностью - спасибо!