{% extends 'base.html' %} {% load i18n %} {% block content %}

{% trans "VAT Report" %} / تقرير ضريبة القيمة المضافة

{% trans "Tax Declaration Summary" %} / ملخص الإقرار الضريبي

1. {% trans "Sales (Output VAT)" %} / المبيعات (ضريبة المخرجات)
{% 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 }}
2. {% trans "Purchases (Input VAT)" %} / المشتريات (ضريبة المدخلات)
{% 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 }}

{% trans "Net VAT Payable / (Refundable)" %}

صافي الضريبة المستحقة الدفع / (المستردة)

{{ net_vat|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 %}

{% endblock %}