I need Order Printer to show the discounted price of each product on the original line. The code is attached.
{% if show_line_item_taxes %} {% endif %} {% for line_item in line_items %} {% if show_line_item_taxes %} {% endif %} {% endfor %}| Quantity | SKU | Item | Taxes | Price |
|---|---|---|---|---|
| {{ line_item.quantity }} x | {{ line_item.sku }} | {{ line_item.title }} |
{% for tax_line in line_item.tax_lines %}
{{ tax_line.price | money }} {{ tax_line.title }} {% endfor %} | {{ line_item.price | money }} |