Skip to content

Instantly share code, notes, and snippets.

@akurkin
Created March 17, 2015 16:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save akurkin/8f1e260530a11aa831db to your computer and use it in GitHub Desktop.
Save akurkin/8f1e260530a11aa831db to your computer and use it in GitHub Desktop.
def unit_price(item)
if item.order.is_a?(Orders::DsrOrder) && item.eligible_for_dsr_discount?
item.stylist_price
else
item.price
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment