Skip to content

Instantly share code, notes, and snippets.

@darryn
Last active July 12, 2022 11:13
Show Gist options
  • Save darryn/b76c2d025381f272c8c4 to your computer and use it in GitHub Desktop.
Save darryn/b76c2d025381f272c8c4 to your computer and use it in GitHub Desktop.
{% for refund in refunds %}
{% for item in refund.refund_line_items %}
{% for line in line_items %}
{% if item.line_item_id == line.id %}
title: {{ line.title }}
price: {{ line.price | money }}
{% endif %}
{% endfor %}
quantity: {{ item.quantity }}
{% endfor %}
{% endfor %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment