Skip to content

Instantly share code, notes, and snippets.

@kshsieh
Created June 10, 2013 17:53
Show Gist options
  • Save kshsieh/5750826 to your computer and use it in GitHub Desktop.
Save kshsieh/5750826 to your computer and use it in GitHub Desktop.
hm
# helper method for cleaning taxons and properties
# if an artist changes the medium_taxon for a product
# some product propeties need to be normalized
def correct_properties
sculpture_id = Taxon.find_by_name('Sculpture').id
product_medium_taxon_id = params[:product][:medium_taxon_id]
debugger
# if artist updates product to a sculpture taxon
# make sure there isn't an associated surface property
if product_medium_taxon_id == sculpture_id
# clear params from controller
params[:product][:product_properties_attributes].each do |pp|
debugger
x = 1
end
# check for a surface product property and delete
@product.product_properties.each do |pp|
pp.destroy if pp.property.name == "Surface"
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment