{% extends "core/base.html" %} {% load currency_filters %} {% 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
{% money expected %}
Sum of all cash orders completed today
{% if existing %}
Last Recorded Variance
{% money existing.variance %}
Actual entered: {% money existing.actual %}
{% endif %}
{% csrf_token %}
{{ currency_symbol }}
{% if history %}
Recent Reconciliations
{% for r in history %} {% endfor %}
Date Expected Actual Variance Cashier
{{ r.date }} {% money r.expected %} {% money r.actual %} {% money r.variance %} {{ r.cashier }}
{% endif %}
{% endblock %}