{% extends 'base.html' %} {% load i18n %} {% block content %}
{% trans "Tax Declaration Summary" %} / ملخص الإقرار الضريبي
| {% trans "Total Sales (Excl. VAT)" %} إجمالي المبيعات (غير شامل الضريبة) |
{{ total_sales_subtotal|floatformat:3 }} {{ global_settings.currency_symbol }} |
| {% trans "Total VAT Collected" %} إجمالي الضريبة المحصلة |
{{ total_output_vat|floatformat:3 }} {{ global_settings.currency_symbol }} |
| {% trans "Total Gross Sales" %} إجمالي المبيعات (شامل الضريبة) |
{{ total_sales_gross|floatformat:3 }} {{ global_settings.currency_symbol }} |
| {% trans "Total Purchases (Excl. VAT)" %} إجمالي المشتريات (غير شامل الضريبة) |
{{ total_purchases_subtotal|floatformat:3 }} {{ global_settings.currency_symbol }} |
| {% trans "Total VAT Paid (Recoverable)" %} إجمالي الضريبة المدفوعة (القابلة للاسترداد) |
{{ total_input_vat|floatformat:3 }} {{ global_settings.currency_symbol }} |
| {% trans "Total Gross Purchases" %} إجمالي المشتريات (شامل الضريبة) |
{{ total_purchases_gross|floatformat:3 }} {{ global_settings.currency_symbol }} |
{% if net_vat > 0 %} {% trans "Amount to be paid to Tax Authority" %} / المبلغ المستحق للدفع للهيئة الضريبية {% else %} {% trans "Amount to be refunded from Tax Authority" %} / المبلغ المستحق للاسترداد من الهيئة الضريبية {% endif %}