الفلاتر

حدد الفرع والفترة الضريبية
مسح تصدير Excel طباعة / حفظ PDF
ضريبة المبيعات
{{ number_format((float)($sales->vat_amount ?? 0), 2) }}
ضريبة المرتجعات
{{ number_format((float)($returns->vat_amount ?? 0), 2) }}
صافي ضريبة المخرجات
{{ number_format((float)$netOutputVat, 2) }}
إجمالي ضريبة المدخلات
{{ number_format((float)$inputVat, 2) }}
{{ $vatStatus }}
{{ number_format((float)$vatDue, 2) }}

تفصيل الإقرار الضريبي

القيم السالبة تعني مبالغ تخصم من الضريبة
@foreach($rows as $r) @php $rowClass = 'rowSales'; if ($r->type === 'deduct') $rowClass = 'rowDeduct'; if ($r->type === 'net_output') $rowClass = 'rowNetOutput'; if ($r->type === 'input') $rowClass = 'rowInput'; if ($r->type === 'input_total') $rowClass = 'rowInputTotal'; if ($r->type === 'vat_due') $rowClass = 'rowVatDue'; @endphp @endforeach
البيان عدد المستندات قبل الضريبة قيمة الضريبة الإجمالي شامل الضريبة
{{ $r->label }} {{ $r->count === null ? '-' : number_format((int)$r->count) }} {{ $r->before_tax === null ? '-' : number_format((float)$r->before_tax, 2) }} {{ $r->vat_amount === null ? '-' : number_format((float)$r->vat_amount, 2) }} {{ $r->total_with_tax === null ? '-' : number_format((float)$r->total_with_tax, 2) }}

معادلة التقرير

للمراجعة المحاسبية قبل اعتماد الإقرار
البيان قبل الضريبة قيمة الضريبة الإجمالي شامل الضريبة
صافي المخرجات {{ number_format((float)$netOutputBefore, 2) }} {{ number_format((float)$netOutputVat, 2) }} {{ number_format((float)$netOutputTotal, 2) }}
إجمالي المدخلات {{ number_format((float)$inputBefore, 2) }} {{ number_format((float)$inputVat, 2) }} {{ number_format((float)$inputTotal, 2) }}
{{ $vatStatus }} {{ number_format((float)$netDeclarationBefore, 2) }} {{ number_format((float)$vatDue, 2) }} {{ number_format((float)$netDeclarationTotal, 2) }}