{% extends edc_base_template %} {% load static %} {% block extrastyle %} {{ block.super }} {% endblock %} {% block extrahead %} {{ block.super }} {% endblock %} {% block document_ready %} {% endblock %} {% block main %} {{ block.super }}
Edc Pharmacy › Stock Take Discrepancy report
{% if rows %} {% for row in rows %} {% with b=row.bin lt=row.last_take %} {% endwith %} {% endfor %}
Bin Location Container Items in bin Last stock take Last outcome
{{ b.bin_identifier }}{% if b.name and b.name != b.bin_identifier %} ({{ b.name }}){% endif %} {{ b.location.display_name|default:b.location.name }} {{ b.container }} {{ b.item_count }} {% if lt %} {{ lt.stock_take_datetime|date:"d-M-Y H:i" }} {% else %} Never {% endif %} {% if lt %} {{ lt.matched_count }} matched {% if lt.missing_count %} {{ lt.missing_count }} missing {% endif %} {% if lt.unexpected_count %} {{ lt.unexpected_count }} unexpected {% endif %} {% else %} — {% endif %} Start stock take {% if lt %} Last results {% endif %}
{% else %}

No active storage bins found.

{% endif %}
{% endblock main %}