Skip to content

Instantly share code, notes, and snippets.

@kshsieh
Created April 12, 2013 17:09
Show Gist options
  • Save kshsieh/5373546 to your computer and use it in GitHub Desktop.
Save kshsieh/5373546 to your computer and use it in GitHub Desktop.
thoughts?
namespace :artwork_stat do
desc "Checks for artwork stat for completed orders"
task :check_for_stat => :environment do
Order.all.each do |order|
if order.completed?
if order.line_items.length != 0 && order.artworks.length == 0
data_errors.create(message: "Order #{order.id} has line items but no artworks!")
elsif order.artworks.length != 0
order.artworks.each do |artwork|
if artwork.stats.length == 0
data_errors.create(message: "Artwork #{artwork.id} in Order #{order.id} is missing stats!")
end
end
end
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment