{% extends "base.html" %} {% block content %}

{{ t('monthly_report') }}

{{ l("A summary of sales, profit and expenses for the selected month", 'নির্বাচিত মাসের বিক্রয়, লাভ ও খরচের সারসংক্ষেপ') }}

CSV Excel PDF
{{ l('This Month', 'এই মাস') }}
{{ l('Sales', 'বিক্রয়') }}
৳ {{ "%.2f"|format(total_sales_amount) }}
{{ l('Gross Profit', 'মোট লাভ') }}
৳ {{ "%.2f"|format(total_profit) }}
{{ l('Expense', 'খরচ') }}
৳ {{ "%.2f"|format(monthly_expense_total) }}
{{ l('Net Profit', 'নিট লাভ') }}
৳ {{ "%.2f"|format(monthly_net_profit) }}
{{ l('Sales Details', 'বিক্রয় বিবরণ') }} {{ '%04d-%02d'|format(selected_year, selected_month) }}
{% for invoice in sales %} {% for item in invoice.items %} {% endfor %} {% else %} {% endfor %}
{{ l('Invoice No', 'চালান নং') }} {{ l('Product', 'পণ্য') }} {{ l('Qty', 'পরিমাণ') }} {{ l('Price', 'মূল্য') }} {{ l('Total', 'মোট') }} {{ l('Date', 'তারিখ') }}
{{ invoice.invoice_no }} {% if item.product %}{{ item.product.name }}{% else %}{{ l('Deleted Product', 'মুছে ফেলা পণ্য') }}{% endif %} {{ "%.2f"|format(item.quantity) }} ৳ {{ "%.2f"|format(item.price) }} ৳ {{ "%.2f"|format(item.total) }} {{ invoice.created_at.strftime('%d-%m-%Y %H:%M') }}
{{ l('No sales found for this month', 'এই মাসে কোনো বিক্রয় পাওয়া যায়নি') }}
{% endblock %}