{% extends "core/base.html" %} {% block title %}P&L Report — SwiftPOS{% endblock %} {% block content %}

Profit & Loss Report

Revenue, costs, profit, and outstanding credit for any period

Export Excel
Today
{% with cards=True %}
{{ total_revenue|floatformat:2 }}
Total Revenue
{{ total_cost|floatformat:2 }}
Total Cost
{{ total_profit|floatformat:2 }}
Net Profit
{{ credit_outstanding|floatformat:2 }}
Credit Owed
{% endwith %}
Payment Methods
{% for pm in payment_breakdown %}
{{ pm.label }}
{{ pm.count }} orders
{{ pm.revenue|floatformat:2 }}
{% empty %}

No orders in this period.

{% endfor %}
Daily Breakdown
{% for row in daily_data %} {% empty %} {% endfor %}
Date Orders Revenue
{{ row.day }} {{ row.cnt }} {{ row.rev|floatformat:2 }}
No data for selected period.
Total completed orders in period: {{ total_orders_count }}
{% endblock %}