{% extends 'base.html' %} {% load static %} {% block title %}Receive Transfer {% endblock title %} {% block page_style %} {% endblock page_style %} {% block page_js %} {% endblock page_js %} {% block page_content %} {% include 'messages.html' %}
Details
Dispatched{{ transfer.transfer_date }}
From{{ transfer.transfer_from }}
To{{ transfer.transfer_to }}
By{{ transfer.staff }}
Value{{ transfer.value }}
{% if transfer.transfer_to.name == user.branch.name and transfer.received == False %}

Confirm list items and receive as is

Receive Items {% elif transfer.transfer_to.name != user.branch.name %}

To be received in {{ transfer.transfer_to.name }}

{% else %}

Already Received

{% endif %}

Receive {{ transfer_products|length }} Items

{% if transfer_products|length > 0 %} {% for product in transfer_products %} {% endfor %}
ItemQtyPriceTotal
{{ product.product.name }} {{ product.quantity }} {{ product.unit_cost }} {% widthratio product.unit_cost 1 product.quantity %}.0
{% else %}
No items, shopping cart is empty
{% endif %}
{% endblock page_content %}