Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have the following models

class Order < AR::Base
  has_many :products

  accepts_nested_attributes_for :products
end

class Product < AR::Base
  belongs_to :order
  has_and_belongs_to_many :stores

  accepts_nested_attributes_for :stores
end

class Store < AR::Base
  has_and_belongs_to_many :products
end

Now I have a order view where I want to update the shops for the product. The thing is that I only want to connect the products to the existing shops in my db, not create new ones.

My form in the order view looks like this (using Formtastic):

= semantic_form_for @order do |f|
  = f.inputs :for => :live_products do |live_products_form|
    = live_products_form.inputs :for => :stores do |stores_form|
      = stores_form.input :name, :as => :select, :collection => Store.all.map(&:name)

Although its nested it works fine. The problem is that, when I select a store and try to update the order (and the products and stores with it), Rails tries to create a new store with that name. I want it to just use the existing store and connect the product to that.

Any help appreciated!

EDIT 1:

In the end I solved this problem in a very crude way:

# ProductsController

def update
  [...]

  # Filter out stores
  stores_attributes = params[:product].delete(:stores_attributes)

  @product.attributes = params[:product]

  if stores_attributes.present?
    # Set stores
    @product.stores = stores_attributes.map do |store_attributes|
      # This will raise RecordNotFound exception if a store with that name doesn't exist
      Store.find_by_name!(store_attributes[:name])
    end
  end

  @order.save

  [...]
end

EDIT 2:

Pablo's solution is much more elegant and should be preferred over mine.

share|improve this question
After reviewing the docs for a_n_a_f (api.rubyonrails.org/classes/ActiveRecord/NestedAttributes/…) I first got excited when I saw the update_only option but quickly realized there is no way to do what I want to do (update_only updates the existing objects before creating new ones). – Manuel Meurer Nov 23 '10 at 20:13

2 Answers

up vote 9 down vote accepted

Try to implement a :reject_if that check if the Store already exists and then use it:

class Product < AR::Base
  belongs_to :order
  has_and_belongs_to_many :stores

  accepts_nested_attributes_for :stores, :reject_if => :check_store

  protected

    def check_store(store_attr)
      if _store = Store.find(store_attr['id'])
        self.store = _store
        return true
      end
      return false
    end
end

I have this code working fine in a current project.

Please, let me know if you found a better solution.

share|improve this answer
Very clever! I solved the problem in a much less elegant way (I'll edit my question to show it) but your solution should work better. – Manuel Meurer May 6 '11 at 10:04
1  
This doesn't make sense to me. self in check_store is the Product... and a Product doesn't have a store relationship (it HABTM :stores). So what does this code actually do? Plus, it doesn't appear to update the found store. – orangechicken Jun 15 '11 at 20:57
I tweaked it to work for my own use by finding the existing related record and updating its attributes in the reject_if. Seems hacky, of course, but it worked. – orangechicken Jun 15 '11 at 21:20

Whoops ! Looks like you got your associations wrong. This is a correct modeling instance, as to how it could be.

class Store < AR::Base
  has_many :products
  has_many :orders, :through => :products
end    

class Order < AR::Base
  belongs_to :store
  has_many :products
  accepts_nested_attributes_for :products
end

class Product < AR::Base
  belongs_to :order
end
share|improve this answer
No, I'm just using has_and_belongs_to_many, you're using has_many :through. "If you need to work with the relationship model as its own entity, use has_many :through. Use has_and_belongs_to_many when working with legacy schemas or when you never work directly with the relationship itself." api.rubyonrails.org/classes/ActiveRecord/Associations/… – Manuel Meurer Nov 13 '10 at 10:23

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.