@extends('adminlte::page') @section('plugins.Datatables', true) @section('plugins.Sweetalert2', true) @section('plugins.Select1', true) @section('plugins.Sortable', true) @section('plugins.ClockPicker', true) @section('title', 'Intranet | Detalle Postulantes') @section('content_header')
@stop @section('content')
@csrf
@if ($cargo->experiencia_laboral > 0)
@else
@endif
@isset($cargo->observacion)
@endisset
@php $cantidadPostulante = 0; $cantidadDePostulantesEnviadoParaAprobacion = 0; $cantidadDePostulantesNoEnviadoParaAprobacion = 0; @endphp @foreach ($link->detalleLinks as $key => $detalleLink) @php $cantidadPostulante++; $listadoEnfermedades = json_encode($detalleLink->postulante->enfermedades); $listadoPartes = json_encode($detalleLink->postulante->partes); $listadoEstudios = json_encode($detalleLink->postulante->estudios); $listadoExperiencias = json_encode($detalleLink->postulante->experiencias); $listadoArchivos = json_encode($detalleLink->postulante->archivos); $postulanteEnvioSondeo = false; if (isset($detalleLink->postulante->envioSondeo)) { $postulanteEnvioSondeo = true; $cantidadDePostulantesEnviadoParaAprobacion++; } else { $cantidadDePostulantesNoEnviadoParaAprobacion++; } @endphp @if ($detalleLink->postulante->discapacidad == true) @else @endif @if ($detalleLink->postulante->experiencia_general > 0) @else @endif @if ($detalleLink->postulante->experiencia_especifica > 0) @else @endif @if (isset($detalleLink->postulante->usuarioQueAceptoElPostulante)) @else @endif @if (isset($detalleLink->postulante->fecha_entrevista_tecnica)) @else @endif @if (isset($detalleLink->postulante->fichaRespondida)) @else @endif @endforeach
POSTULANTES
# Acción Rut Postulante Nombre Postulante Correo Postulante Telefono Postulante Ciudad Referido Pretencion De Renta Licencia De Conducir Tiene Discapacidad Nombre Discapasidad Disponibilidad Experencia General Experencia Especifica Fecha Aprobación Usuario Que Aprobo Al Postulante Fecha Y Hora Entrevista Tecnica Resultado Ficha Entrevista Tecnica Estado
{{ $cantidadPostulante }} @if ($detalleLink->postulante->enfermedades->count() > 0 || $detalleLink->postulante->partes->count() > 0 || $detalleLink->postulante->estudios->count() > 0 || $detalleLink->postulante->experiencias->count() > 0 || $detalleLink->postulante->archivos->count() > 0)
@endif
{{ $detalleLink->postulante->rut }} {{ $detalleLink->postulante->nombre }} {{ $detalleLink->postulante->correo }} {{ $detalleLink->postulante->telefono }} {{ $detalleLink->postulante->ciudad }} @if ($detalleLink->postulante->referido == true) Si @else No @endif {{ $detalleLink->postulante->pretencion_renta_texto }} {{ $detalleLink->postulante->licencia_conducir }}SiNo{{ $detalleLink->postulante->nombre_discapacidad }} {{ $detalleLink->postulante->disponibilidad }}{{ $detalleLink->postulante->experiencia_general }} AñosSin Experiencia{{ $detalleLink->postulante->experiencia_especifica }} AñosSin Experiencia{{ fechaConFormatoDeChile($detalleLink->postulante->fecha_postulante_aceptado) }}{{ $detalleLink->postulante->usuarioQueAceptoElPostulante->name }}{{ fechaHoraConFormatoDeChile($detalleLink->postulante->fecha_entrevista_tecnica) }}{{ $detalleLink->postulante->fichaRespondida->porcentaje . '%' }} @switch($detalleLink->postulante->estado) @case('Descartado') {{ $detalleLink->postulante->estado }} @break @case('Aceptado') {{ $detalleLink->postulante->estado }} @break @case('Pendiente') {{ $detalleLink->postulante->estado }} @break @endswitch
@stop @section('css') @stop @section('js') @stop