I have the following code:
# app/models/part.rb
class Part < ActiveRecord::Base
has_many :lots
# attributes: id, number
end
#app/models/lot.rb
class Lot < ActiveRecord::Base
belongs_to :part
# attributes: id, number, part_id, quantity
end
# app/views/lots/_form.html.erb
...
<p>
<%= f.label :number %><br />
<%= f.text_field :number %>
</p>
<p>
<% f.fields_for :part do |p| %>
<%= p.label :number, 'Part' %><br />
<%= p.text_field :number %>
<% end %>
</p>
<p>
<%= f.label :quantity %><br />
<%= f.text_field :quantity %>
</p>
...
The form is supposed to edit or create lots. The form is to accept the part number of an existing part and save the part_id to the lot. The fields_for group isn't rendering for me. I'm sure this is easy. What is going on here is that the part number is a natural key but Rails uses surrogate keys. I could have used a select list but I need to accept keyboard input. I'll need to wire up ajax for the form eventually. What are your thoughts?