{% extends "base.html" %} {% block title %}{{ cashier.first_name }} {{ cashier.last_name }} Report - AsapLoads POS{% endblock %} {% block header_title %}Cashier Detail Report: {{ cashier.first_name }} {{ cashier.last_name }}{% endblock %} {% block content %}
Performance Report: {{ cashier.first_name }} {{ cashier.last_name }}
Download PDF Export CSV {% if user.role != 'cashier' %} Back to Cashiers Report {% else %} Back to Dashboard {% endif %}

{{ cashier.first_name }} {{ cashier.last_name }}

{{ cashier.role|capfirst }}

{{ cashier.email }}

{% if cashier.branch %}

{{ cashier.branch.name }}

{% endif %}
Total Sales

{{ metrics.total_sales }}

Revenue Generated

{{ metrics.total_amount|floatformat:2 }}

Average Sale

{{ metrics.average_sale|floatformat:2 }}

Items Sold

{{ metrics.items_sold }}

Daily Sales
Sales by Product Category
Payment Methods
Recent Sales
{% if sales %}
{% for sale in sales %} {% endfor %}
Date Receipt # Customer Items Total Status Actions
{{ sale.created_at|date:"M d, Y H:i" }} {{ sale.receipt_number }} {{ sale.customer.full_name|default:"Walk-in Customer" }} {{ sale.items_count }} {{ sale.total_amount|floatformat:2 }} {% if sale.payment_status == 'paid' %} Paid {% elif sale.payment_status == 'partial' %} Partial {% else %} Unpaid {% endif %} View
{% else %}
No sales data available for this cashier in the selected date range.
{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}