{% load humanize %}

Ship Order Detail

Release:
{{ ship_order_record.release }}
Order Date:
{{ ship_order_record.order_date }}
Customer:
{{ ship_order_record.customer }}
Planned Date:
{{ ship_order_record.planned_date }}
Carrier:
{{ ship_order_record.carrier }}
Ship To:
{{ ship_order_record.ship_to.name }}
{{ ship_order_record.ship_to.full_name }}
{{ ship_order_record.ship_to.city }}, {{ ship_order_record.ship_to.state_prov }} {{ ship_order_record.ship_to.zip_code }}
{{ ship_order_record.ship_to.country }}
{{ ship_order_record.ship_to.phone }}
{{ ship_order_record.ship_to.description }}
Ship Transaction Detail
Line
Item
Lot
Qty
Rev/Lb
STS
{% for transaction in transactions %}
{{ transaction.line }}
{{ transaction.item.name }}
{{ transaction.lot }}
{{ transaction.qty }}
{{ transaction.rev_lb }}
{{ transaction.sts }}
{% endfor %}