@php
$excenta = 0;
$gravada = 0;
@endphp
# |
Código |
Descripción |
Venta no sujeta |
Venta exenta |
Venta gravada |
Eliminar |
@foreach ($documentoServices as $key => $item)
@if ($item->extra != 1)
{{ $key + 1 }} |
@if ($item->servicio)
{{ $item->servicio->service_cod }} |
{{ $item->servicio->serv_name }} |
@endif
@if ($item->producto)
{{ $item->producto->codigo }} |
{{ $item->producto->producto }} |
@endif
@if ($item->combo)
{{ $item->combo->codigo }} |
{{ $item->combo->combo }} |
@endif
|
|
|
@if ($item->cant_asignado > 0)
@if ($documento->state == 'SIN FACTURAR')
@include('documento.libre.deleteServiceDocumento')
@else
NO DISPONIBLE
@endif
@endif
|
@endif
@endforeach
Total |
|
|
|
|
@php
$total = $servT[1] + $servT[2] + $servT[3] + $resumen[0];
$retension = (($servT[1] + $servT[2] + $servT[3]) * 0.01);
@endphp
Iva |
|
@if ($cliente -> tipo_contribuyente == 'GRAN CONTRIBUYENTE' && $total >= 100 )
Retención |
|
@endif
Total + Iva |
|
@if ($cliente->tipo_contribuyente == 'GRAN CONTRIBUYENTE' && $total >= 100 )
Total |
|
@endif