Created
June 10, 2013 17:53
-
-
Save kshsieh/5750826 to your computer and use it in GitHub Desktop.
hm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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