Advertisement
Guest User

Export of reaction rule "Add $5.70 for Two x 500ML/750ML bot

a guest
Jul 26th, 2013
16
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.69 KB | None | 0 0
  1. { "rules_add_5_70_for_two_x_500ml_750ml_bottles_shipped" : {
  2. "LABEL" : "Add $5.70 for Two x 500ML\/750ML bottles shipped",
  3. "PLUGIN" : "reaction rule",
  4. "REQUIRES" : [ "rules", "commerce_line_item", "commerce_shipping" ],
  5. "ON" : [ "commerce_shipping_calculate_rate" ],
  6. "IF" : [
  7. { "data_is" : { "data" : [ "commerce-line-item:type" ], "value" : "shipping" } },
  8. { "data_is" : {
  9. "data" : [ "commerce-line-item:commerce-shipping-service" ],
  10. "value" : "up_to_two_x_500ml_or_750ml_bottl"
  11. }
  12. }
  13. ],
  14. "DO" : [
  15. { "LOOP" : {
  16. "USING" : { "list" : [ "commerce-line-item:order:commerce-line-items" ] },
  17. "ITEM" : { "500ml_750ml_line_items" : "500ML\/750ML Line Items" },
  18. "DO" : [
  19. { "data_calc" : {
  20. "USING" : {
  21. "input_1" : [ "500ml-750ml-line-items:quantity" ],
  22. "op" : "*",
  23. "input_2" : "570"
  24. },
  25. "PROVIDE" : { "result" : { "calcualted_shipping_price_two_500ml_750ml_bottles" : "Calculated Shipping Price for Two x 500ML\/750ML Bottles" } }
  26. }
  27. },
  28. { "commerce_line_item_unit_price_add" : {
  29. "commerce_line_item" : [ "commerce_line_item" ],
  30. "amount" : [ "calcualted-shipping-price-two-500ml-750ml-bottles" ],
  31. "component_name" : "flat_rate_up_to_two_x_500ml_or_750ml_bottl",
  32. "round_mode" : "0"
  33. }
  34. },
  35. { "commerce_shipping_delete_shipping_line_items" : { "commerce_order" : [ "500ml-750ml-line-items:order" ] } }
  36. ]
  37. }
  38. }
  39. ]
  40. }
  41. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement