Created
October 25, 2017 17:13
-
-
Save seandogg/c71523d99b0523792ff7d0930b05974f to your computer and use it in GitHub Desktop.
This file contains hidden or 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
{% if line_item.fulfillment %} | |
<div class="note"> | |
{% assign date = line_item.fulfillment.created_at | date: format: "month_date_year" %} | |
{% if fulfillment.item_count == line_item.quantity %} | |
{{ 'customer.order.fulfilled_at' | t: date: date }} | |
{% elsif fulfillment.item_count != line_item.quantity and line_item.fulfillment.item_count > 0 %} | |
Fulfilled {{ date }} | |
{% else %} | |
Unfulfilled | |
</div> | |
{% endif %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment