Advertisement
Guest User

Untitled

a guest
Oct 17th, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. Spurit.checkout.addHandler(function (cart, next) {
  2. cart.getLineItems().forEach(function (lineItem) {
  3. if (...) {
  4. lineItem.quantity = ...;
  5. lineItem.discounted_price -= ...;
  6. //cart.updateLineItem(lineItem);
  7. }
  8. });
  9.  
  10. var tags = cart.getOrderTags();
  11. tags.push(...);
  12. cart.setOrderTags(tags);
  13.  
  14. next(cart);
  15. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement