Skip to content

Instantly share code, notes, and snippets.

@seedcms
Created February 4, 2017 05:21
Show Gist options
  • Save seedcms/d18c9262e19260d5c67a858b44572bc6 to your computer and use it in GitHub Desktop.
Save seedcms/d18c9262e19260d5c67a858b44572bc6 to your computer and use it in GitHub Desktop.
Wholesale Customer Script
Input.cart.line_items.each do |line_item|
customer = Input.cart.customer
product = line_item.variant.product
if customer.tags.include?("Wholesale")
line_item.change_line_price(line_item.line_price * 0.90, message: "Wholesale Customer")
end
end
Output.cart = Input.cart
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment