@extends('metronic.base') @section('titulo') credito fiscal @endsection @section('content')
Listado de documentos
Detalle de documento
@include('sessions') @include('compra.modals.modalFacturar') @include('documento.modals.deleteServiceDocumento') @if ($documento->posteado!=1 )
Postear
@endif
Comprobante de Crédito Fiscal
@csrf
Proveedor:
{{--
Fecha:
--}}
Dirección:
Giro:
Ciudad:
Pais:
N.R.C:
N.I.T:
Clasificación:
Cond. de la operación:
@csrf
Concepto:
{{ $documento->concepto }}
Guardar
DISTRIBUCION SERVICIOS
@for ($i=0; $i < count($services); $i++) @endfor
Servicio
Total
Asignado
Disponible
@if ($services[$i]->extra==1) {{$services[$i]->serv_name}} - Cta. Ajena @else {{$services[$i]->serv_name}} @endif
$
{{number_format($services[$i]->monto,2)}}
$
{{number_format($servicesDocumentoTotal[$i],2)}}
$
{{number_format($services[$i]->monto - $servicesDocumentoTotal[$i],2) }}
@if ($documento->state=="")
@csrf
Seleccione el servicio
@foreach ($servicesSelect as $service) @if ($service->extra==1)
{{$service->serv_name}} - Cta. Ajena
@else
{{$service->serv_name}}
@endif @endforeach
Monto
Impuesto
Gravado
No sujeto
Exento
Exportación
Clasificacion libro
Compra gravada
Compra Exenta
Sub-clasificacion libro
Internas
Importaciones
Guardar
@endif
@foreach ($documentoServices as $item) @if($item->extra!=1) @endif @endforeach
Cantidad
Código
Descripción
PrecioUnitario
Compra no sujeta
Compra exenta
Compra gravada
Eliminar
1
{{$item->servicio->service_cod}}
{{$item->servicio->serv_name}}
$
{{number_format($item->cant_asignado,2)}}
$
@if($item->impuesto==2) {{number_format($item->cant_asignado,2)}} @else 0.00 @endif
$
@if($item->impuesto==3) {{number_format($item->cant_asignado,2)}} @else 0.00 @endif
$
@if($item->impuesto==1) {{number_format($item->cant_asignado,2)}} @else 0.00 @endif
Total
$
{{number_format( $servT[0],2) }}
$
{{number_format ($servT[1],2) }}
$
{{ number_format($servT[2],2) }}
$
{{ number_format($servT[3],2) }}
Cuadro resumen
SUMAS
IVA
$
{{number_format($resumen[0],2) }}
SUB-TOTAL
$
{{number_format($resumen[1],2) }}
(+) IVA PERCIBIDO
$
{{number_format($resumen[2],2) }}
(-) IVA RETENIDO
$
{{number_format($resumen[3],2) }}
COMPRA NO SUJETA
$
{{number_format($resumen[4],2) }}
COMPRA EXENTA
$
{{number_format($resumen[5],2) }}
COMPRA TOTAL
$
{{number_format($resumen[6],2) }}
@endsection