{% extends edc_base_template %} {% load static %} {% block extrastyle %} {{ block.super }} {% endblock %} {% block extrahead %} {{ block.super }} {% endblock %} {% block document_ready %} {% endblock %} {% block main %} {{ block.super }} {% url "edc_pharmacy:stock_take_discrepancy_report_url" as report_next %}
Edc PharmacyStock Take › Discrepancy Report
{% if site_choices %} {% endif %} {% if txn_choices %} {% endif %}
{% if items %} Print PDF {% endif %}
{% if not items %}
{% if selected_txn or selected_resolved %} No matches. No discrepancies match the selected filters. {% else %} All clear. No discrepancies found in the most recent stock take for any bin. {% endif %}
{% else %} {% for item in items %} {% endfor %}
Bin Code Subject Product Issue Resolve TXN
{{ item.stock_take.storage_bin.bin_identifier }} {{ item.code }} {% if not item.stock %} (not in system) {% endif %} {% include "edc_pharmacy/stock/_conflict_hint.html" with item=item %} {% include "edc_pharmacy/stock/_cannot_add_hint.html" with item=item %} {{ item.subject_identifier|default:"—" }} {{ item.stock.product.name|default:"—" }} {% if item.status == "missing" %} Missing {% else %} Unexpected {% endif %} {% include "edc_pharmacy/stock/_resolve_actions.html" with item=item next_url=report_next %} {{ item.txn_abbr }}
{% endif %}

All bins

{% endblock main %}