Skip to content

Instantly share code, notes, and snippets.

@seandogg
Created October 25, 2017 17:13
Show Gist options
  • Save seandogg/c71523d99b0523792ff7d0930b05974f to your computer and use it in GitHub Desktop.
Save seandogg/c71523d99b0523792ff7d0930b05974f to your computer and use it in GitHub Desktop.
{% 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