Informe Fiscal

Empresa: {{$company->name}}

Fecha: {{date('Y-m-d')}}

N° Documento: {{$company->number}}

Establecimiento: {{$establishment->address}} - {{$establishment->country->name}} - {{$establishment->department->name}} - {{$establishment->city->name}}

@inject('report', 'App\Services\TaxReportService') @php $excento = $report->getTotalExcento($items); $sale_total_iva5 = $report->getTotalIva5($items, true); $sale_total_iva19 = $report->getTotalIva19($items, true); $sale_total_ic8= $report->getTotalIC8($items, true); $base_imp_iva5 = $report->getTotalIva5($items); $base_imp_iva19 = $report->getTotalIva19($items); $base_imp_ic8 = $report->getTotalIC8($items); $discount = $report->getDiscounts($items); $total_iva = ( ($sale_total_iva5 + $sale_total_iva19 ) - ( $base_imp_iva5 + $base_imp_iva19 ) ); $total_ic = ( $sale_total_ic8 - $base_imp_ic8); $total_desc = ($total_sale - $discount); @endphp
Venta Total: {{ $total_sale }}
Excento: {{ number_format($excento, 2) }}
Grav IVA 5: {{ number_format( $sale_total_iva5, 2) }}
Grav IVA 19: {{ number_format($sale_total_iva19, 2) }}
Grav I.C 8: {{ number_format($sale_total_ic8, 2) }}
Base Imp. : {{ number_format($total_sale_base, 2) }}
Excento: {{ number_format($excento, 2) }}
Grav IVA 5: {{ number_format( $base_imp_iva5, 2) }}
Grav IVA 19: {{ number_format($base_imp_iva19, 2) }}
Grav I.C 8: {{ number_format($base_imp_ic8, 2) }}

Total Iva: {{ $total_iva }}
Total IC: {{ $total_ic }}
Total Descuento: {{ $discount }}
Total - Desc.: {{ $total_desc}}