Advertisement
xandeadx

Untitled

Apr 5th, 2015
272
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. { "rules_load_product_by_line_item" : {
  2. "LABEL" : "Load product by line item",
  3. "PLUGIN" : "rule",
  4. "OWNER" : "rules",
  5. "REQUIRES" : [ "rules" ],
  6. "USES VARIABLES" : {
  7. "line_item" : { "label" : "Line item", "type" : "commerce_line_item" },
  8. "product" : { "label" : "Product", "type" : "commerce_product", "parameter" : false }
  9. },
  10. "IF" : [
  11. { "entity_has_field" : { "entity" : [ "line-item" ], "field" : "commerce_product" } }
  12. ],
  13. "DO" : [
  14. { "data_set" : { "data" : [ "product" ], "value" : [ "line-item:commerce-product" ] } }
  15. ],
  16. "PROVIDES VARIABLES" : [ "product" ]
  17. }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement