Shipping Method:
{% if so.shiplabel != null or so.shiplabel != '' %}
{{ so.shiplabel }}
{% else %}
You will need to make shipping/pickup arrangements for this order.
{% endif %}
{% include '@App/content/ecompages/cart-items-review.html.twig' %}
Payment Information:
Invoice Payment Status: {{ so.pmtstatus }}
{% if so.payonaccount == 1 and hascustomitems == false %}
You have chosen to charge this invoice to your account. Payment arrangements will need to be made for this order.
{% elseif so.payonaccount == 1 and hascustomitems == true %}
Your order contained custom items. No payment was processed. Unless you marked "Quote before printing" we will start processing your order right away. You will need to make
seperate shipping and payment arrangments.
{% elseif so.invoices is defined and so.invoices is not null %}
Payments Made:
{% for invoice in so.invoices %}
Amount Charged: {{ invoice.transactionamount }} Card Type: {{ invoice.cardtype }} Card Ending: {{ invoice.cardnumber }}
{% endfor %}
{% endif %}