Created
August 25, 2015 06:44
-
-
Save DanWebb/b5544777a51e7b925002 to your computer and use it in GitHub Desktop.
Get the fulfillment status of an individual line_item (rather than order)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% assign fulfillment_status = 'unfulfilled' %} | |
{% if line_item.fulfillment.tracking_company > '' %} | |
{% assign fulfillment_status = 'fulfilled' %} | |
{% endif %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment