Hi,
I am trying to create or find a Return Form that shows just the Returned Items, the quantity and the price of each item. Currently trying InvoiceWizards but the return form captures items, even the non-returned ones.
I tried using OrderPrinter as well with the below code but does not work.
{{ refund_line_item.line_item }} shows LineItemDrop instead of the returned items
{{ refund.amount | money }} is empty.
Is there an app that already has this or how should I improve the code below for OrderPrinter?
Thank you.
{{ "now" | date: "%m/%d/%y" }}
Return Form for {{ order_name }}
**{{ shop_name }}**
{{ shop.address }}
{{ shop.city }} {{ shop.province_code }} {{ shop.zip | upcase }}
{{ shop.country }}
---
### Return Item Details
{% for refund in refunds %}
{% for refund_line_item in refund.refund_line_items %}
{% endfor %}
{% endfor %}
| Quantity | Item | Refund Amount |
| - | - | - |
| {{ refund_line_item.quantity }} | {{ refund_line_item.line_item }} | {{ refund.amount | money }} |
If you have any questions, please send an email to {{ shop.email }}
