Last active
July 12, 2022 11:13
-
-
Save darryn/b76c2d025381f272c8c4 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
{% 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