{% load humanize %}

Receiver Detail

Receiver:
{{ inventory_record.receiver }}
Item:
{{ inventory_record.item }}
Cust Item Code:
{{ inventory_record.cust_item_code}}
Description:
{{ inventory_record.description}}
Lot:
{{ inventory_record.lot }}
CofA:
{{ inventory_record.cofa }}
Customer:
{{ inventory_record.customer_id}}
Class:
{{ inventory_record.inv_class_id }}
P.O. #:
{{ inventory_record.po_number }}
Package:
{{ inventory_record.package_id }}
Car:
{{ inventory_record.car_id }}
CofA MFR:
{{ inventory_record.cofa_mfr | floatformat:'4' | intcomma }}
Qty. On Hand:
{{ inventory_record.qty_on_hand | floatformat:'0' | intcomma }} lbs
Group:
{{ inventory_record.group_id }}
Cost $/lb:
{{ inventory_record.cost_lb | floatformat:'4' | intcomma }}
Unit Weight:
{{ inventory_record.unit_weight | floatformat:'0' | intcomma }}
MT Routing:
{{ inventory_record.routing }}
Lab MFR:
{{ inventory_record.lab_mfr }}
Transactions:
Trans Date
Reference
Produced/Received
Consumed
Shipped
Adjust
Posted
User
{% for transaction in transactions %}
{{ transaction.transaction_date|date:"m/d/Y" }}
{{ transaction.reference }}
{{ transaction.received | floatformat:'0' | intcomma }}
{{ transaction.consumed | floatformat:'0' | intcomma }}
{{ transaction.shipped | floatformat:'0' | intcomma }}
{{ transaction.adjustment | floatformat:'0' | intcomma }}
{{ transaction.posted_date|date:"m/d/Y" }}
{{ transaction.user.username }}
{% endfor %}
Locations:
Whse
Row
Units
Qty
{% for location in locations %}
{{ location.whse }}
{{ location.row }}
{{ location.units | floatformat:'0' | intcomma }}
{{ location.qty | floatformat:'0' | intcomma }}
{% endfor %}
Remarks:
{{ inventory_record.remarks }}