{% extends "base.html" %} {% block content %}
{{ l("A summary of sales, profit and expenses for the selected day", 'নির্বাচিত দিনের বিক্রয়, লাভ ও খরচের সারসংক্ষেপ') }}
| {{ 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 date', 'এই তারিখে কোনো বিক্রয় পাওয়া যায়নি') }}
| |||||