{% extends "core/base.html" %} {% load static %} {% block title %}End of Day Reconciliation — SwiftPOS{% endblock %} {% block topbar_title %}End of Day Reconciliation{% endblock %} {% block content %}
{% if messages %}
{% for message in messages %} {% endfor %}
{% endif %}
Cash Count — {{ today }}
Expected Cash Today
{{ currency_symbol }}{{ expected|floatformat:2 }}
Sum of all cash orders completed today
{% if existing %}
Last Recorded Variance
{{ currency_symbol }}{{ existing.variance|floatformat:2 }}
Actual entered: {{ currency_symbol }}{{ existing.actual|floatformat:2 }}
{% endif %}
{% csrf_token %}
{{ currency_symbol }}
{% if history %}
Recent Reconciliations
{% for r in history %} {% endfor %}
Date Expected Actual Variance Cashier
{{ r.date }} {{ currency_symbol }}{{ r.expected|floatformat:2 }} {{ currency_symbol }}{{ r.actual|floatformat:2 }} {{ currency_symbol }}{{ r.variance|floatformat:2 }} {{ r.cashier }}
{% endif %}
{% endblock %}