My apologies for what may be a poor explanation here, I'm a rails beginner and this problem is making my head hurt!
I have a new service form that allows a user to configure add-ons for their service based on add-on types (or categories). See:
In the new service controller, these are pulled in with:
@addon_types = Product.find(params[:product_id]).product_cat.addon_types then I have the following to create the forms:
<% for addon_type in @addon_types %>
<%= f.input :service_addons,
:label => "#{addon_type.name} <small>#{addon_type.unit}</small>",
:collection => addon_type.addons,
:label_method => :quantity, :value_method => :id %>
<% end %>
What I'm trying to achieve is for when any add-ons are selected, these are created in the HABTM table between services and addons. Seemingly as things stand, only the final :service_addons item is passed in the params. Now my first thought would be to add virtual attributes for each :service_addon so these submit, but these addons are dynamic (in that someone could add another :addon_type at a later stage).
Any help would be hugely appreciated.
My models are set up as so:
class Service < ActiveRecord::Base
belongs_to :product
has_and_belongs_to_many :addons
end
class Product < ActiveRecord::Base
belongs_to :product_cat
has_many :services
end
class ProductCat < ActiveRecord::Base
has_many :products
has_many :addon_types
end
class AddonType < ActiveRecord::Base
belongs_to :product_cat
has_many :addons
end
class Addon < ActiveRecord::Base
belongs_to :addon_type
end