{% extends "core/base.html" %} {% load currency_tags %} {% 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|format_currency }}
Total Revenue
{{ total_cost|format_currency }}
Total Cost
{{ total_profit|format_currency }}
Net Profit
{{ credit_outstanding|format_currency }}
Credit Owed
{% endwith %}
Payment Methods
{% for pm in payment_breakdown %}
{{ pm.label }}
{{ pm.count }} orders
{{ pm.revenue|format_currency }}
{% 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|format_currency }}
No data for selected period.
Total completed orders in period: {{ total_orders_count }}
{% endblock %}