
| Path : /home/gujo45me/public_html/laclave/resources/views/electronico/ |
| Disable Functions : exec,passthru,shell_exec,system System : Linux server-604606.appsiete.com 3.10.0-1160.119.1.el7.tuxcare.els25.x86_64 #1 SMP Wed Oct 1 17:37:27 UTC 2025 x86_64 [ Home ][ Zone-h ][ Jumping ][ Symlink ][ Mass Depes ][ Command ] |
| Current File : /home/gujo45me/public_html/laclave/resources/views/electronico/detalles.blade.php |
@extends('layout.main')
@section('content')
<div class="sixteen wide tablet sixteen wide computer column ">
<div class="ui segment">
<h4 class="ui dividing header teal centered">DETALLES DE COMPROBANTE ELECTRONICO</h4>
<div class="ui warning message">
<div class="ui equal width grid">
<div class="row" style="padding-bottom: 0px !important">
<div class="sixteen wide mobile seven wide tablet five wide computer column message_header">Personal que registró la venta :</div>
<div class="sixteen wide mobile nine wide tablet eleven wide computer column">{{ ucwords(mb_strtolower($data->usuario->nombres)) }} {{ ucwords(mb_strtolower($data->usuario->apellidos)) }} ({{ $data->usuario->username }})</div>
</div>
<div class="row" style="padding-bottom: 0px !important">
<div class="sixteen wide mobile seven wide tablet five wide computer column message_header">Fecha que se registró la venta :</div>
<div class="sixteen wide mobile nine wide tablet eleven wide computer column">{{ ucwords(mb_strtolower($data->created_at)) }}</div>
</div>
<div class="row" style="padding-bottom: 0px !important">
<div class="sixteen wide mobile eight wide tablet five wide computer column message_header">Tienda donde se realizó la venta:</div>
<div class="sixteen wide mobile eight wide tablet eleven wide computer column">{{ ucwords(mb_strtolower($data->local->nombre)) }} ({{ ucwords(mb_strtolower($data->local->direccion)) }})</div>
</div>
</div>
</div>
<div class="ui success message">
<div class="ui equal width grid">
<div class="row" style="padding-bottom: 0px !important">
<div class="sixteen wide mobile six wide tablet three wide computer column message_header">Nombre de Cliente :</div>
<div class="sixteen wide mobile ten wide tablet six wide computer column"><a href="{{ url('cliente/editar/'.$data->id_cliente) }}" title="Clic para ver informacion">{{ ucwords(mb_strtolower($data->cliente->nombre)) }}</a> </div>
<div class="sixteen wide mobile six wide tablet three wide computer column message_header">{{ $data->cliente->tipo_documento->nombre }} :</div>
<div class="sixteen wide mobile ten wide tablet four wide computer column">{{ $data->cliente->numero_documento }}</div>
</div>
<div class="row" style="padding-bottom: 0px !important">
<div class="sixteen wide mobile six wide tablet three wide computer column message_header">Direccion de Cliente:</div>
<div class="sixteen wide mobile ten wide tablet thirteen wide computer column">{{ ucwords(mb_strtolower($data->cliente->direccion)) }}</div>
</div>
</div>
</div>
<div class="ui info message">
<div class="ui equal width grid">
<div class="row" style="padding-bottom: 0px !important">
<div class="sixteen wide mobile eight wide tablet four wide computer column message_header">Tipo de Comprobante :</div>
<div class="sixteen wide mobile eight wide tablet four wide computer column">{{ $data->tipo_comprobante->nombre }}</div>
<div class="sixteen wide mobile eight wide tablet four wide computer column message_header">N° Comprobante :</div>
<div class="sixteen wide mobile eight wide tablet four wide computer column"><a href="{{ url('venta/detalles/'.$data->id_venta) }}">{{ $data->nombre_comprobante }}</a></div>
</div>
<div class="row" style="padding-bottom: 0px !important">
<div class="sixteen wide mobile eight wide tablet four wide computer column message_header">Fecha de Venta :</div>
<div class="sixteen wide mobile eight wide tablet four wide computer column">{{ $data->fecha_venta }}</div>
<div class="sixteen wide mobile eight wide tablet four wide computer column message_header">Monto Total de la Venta :</div>
<div class="sixteen wide mobile eight wide tablet four wide computer column">S/ {{ $data->total_venta }}</div>
</div>
@if($data->estado_envio == "REGISTRADO" && $data->id_tipo_comprobante == 1)
<div class="row" style="padding-bottom: 0px !important">
<div class="sixteen wide mobile eight wide tablet four wide computer column message_header">Mensaje de envio a SUNAT :</div>
<div class="sixteen wide mobile eight wide tablet twelve wide computer column">PENDIENTE - El comprobante se encuentra pendiente de envio a la SUNAT</div>
</div>
@else
<div class="row" style="padding-bottom: 0px !important">
<div class="sixteen wide mobile eight wide tablet four wide computer column message_header">Mensaje de envio a SUNAT :</div>
<div class="sixteen wide mobile eight wide tablet twelve wide computer column">{{ $data->estado_envio }} - {{ $data->mensaje_envio }}</div>
</div>
@endif
@if($data->estado_envio != "REGISTRADO")
<div class="row" style="padding-bottom: 0px !important">
<div class="sixteen wide mobile eight wide tablet four wide computer column message_header">Fecha de Envio:</div>
<div class="sixteen wide mobile eight wide tablet twelve wide computer column">{{ $data->updated_at }}</div>
</div>
@endif
</div>
</div>
@if ($data->id_nota != null)
<div class="ui error message">
<div class="ui equal width grid">
<div class="row" style="padding-bottom: 0px !important">
<div class="sixteen wide mobile eight wide tablet four wide computer column message_header">Estado actual del comprobante :</div>
<div class="sixteen wide mobile eight wide tablet twelve wide computer column" style="color: red!important">El comprobante fue ANULADO con Nota de Credito <a style="text-decoration: underline;" href="{{ url('nota/detalles/'.$data->id_nota) }}">(ver detalles)</a></div>
</div>
</div>
</div>
@endif
<div class="ui hidden divider"></div>
<table class="ui table">
<thead>
<tr>
<th class="center aligned">Producto</th>
<th class="center aligned" data-tooltip="Unidad de Medida" data-position="top center" data-inverted="">U. Med.</th>
<th class="center aligned" data-tooltip="Cantidad vendida" data-position="top center" data-inverted="">Cant.</th>
<th class="center aligned" data-tooltip="Precio de venta" data-position="top center" data-inverted="">Precio S/</th>
<th class="center aligned" data-tooltip="Monto de Descuento" data-position="top center" data-inverted="">Dscto S/</th>
<th class="center aligned">Subtotal</th>
</tr>
</thead>
<tbody id="tbody">
@foreach ($detalle_venta as $venta)
<tr data-table="{{ $venta->id_detalle_venta }}">
<td><a href="{{ url('producto/editar/'.$venta->id_producto) }}" title="Clic para ver informacion">{{ ucwords(mb_strtolower($venta->producto->nombre)) }} ({{ $venta->producto->tipo_presentacion->nombre }})</a></td>
<td>{{ $venta->producto->unidad_medida->nombre }}</td>
<td>{{ $venta->cantidad }}</td>
<td>{{ $venta->precio_venta }}</td>
<td>{{ $venta->descuento==0 ? $venta->descuento : '-'.$venta->descuento }}</td>
<td class="warning">{{ $venta->precio_venta_total }}</td>
</tr>
@endforeach
</tbody>
</table>
<div class="form_footer" >
<a class="ui small left floated default button" href="{{ URL::previous() }}"><i class="arrow left icon"></i>REGRESAR</a>
@if($data->estado_envio != "ACEPTADO" && $data->id_tipo_comprobante == 1)
<div class="ui small right floated red button btn_reenviar" data-id="{{$data->id_venta}}"><i class="sync alternate icon"></i>Reenviar</div>
@endif
@if($data->estado_envio == "NO ENVIADO" && $data->id_tipo_comprobante == 1)
<div class="ui small right floated orange button btn_cdr" data-id="{{$data->id_venta}}"><i class="sync alternate icon"></i>Obtener CDR</div>
@endif
@if( ($data->estado_envio == "ACEPTADO" || $data->estado_envio == "RECHAZADO") && $data->id_tipo_comprobante == 1 )
<a class="ui small right floated primary button " href="{{ url('../sunat/cdr/comprobantes/R-'.$empresa->ruc.'-'.$data->tipo_comprobante->codigo.'-'.$data->nombre_comprobante.'.xml') }}" target="_blank"><i class="download icon"></i>Descargar CDR</a>
@endif
<a class="ui small right floated green button" href="{{ url('../sunat/xml/comprobantes/'.$empresa->ruc.'-'.$data->tipo_comprobante->codigo.'-'.$data->nombre_comprobante.'.xml') }}" target="_blank"><i class="download icon"></i>Descargar XML</a>
</div>
</div>
</div>
@stop
@section('scripts')
<script src="{{ asset('js/electronico/detalles.js') }}"></script>
@stop