{% extends "@crud\\crud\\index_inner.html.twig" %}
{% block jquery %}
{{ parent() }}
<script type="text/javascript">
$(function()
{
{% include 'ProcesoReclutamiento\\filtros_jquery.html.twig' with {'routeClassName': routeClassName, 'ctrl_proceso':'procesoReclutamiento', 'ctrl_base':'reclutaBase', 'ctrl_centro':'centroMovilizacion', 'ctrl_unidad':'unidad'} %}
/*$("#btnExportarExcel").click(function(e){
alert('entra');
$("#{{ routeClassName }}").table2excel({
filename: "listaAspirantes.xls"
});
});*/
var table = $('#{{ routeClassName }}').DataTable();
$('#btnExportarExcel').on('click', function(){
$('<table>').append($(table.table().header()).clone())
.append(table.$('tr').clone()).table2excel({
exclude: "" ,
filename: "listaAspirantes.xls",
ignoreColumn: [0],
exclude: "#noExl",
});
});
$('#form_procesoReclutamiento').change();
});
</script>
{% endblock jquery %}
{% block show_no_results %}
{% if filtrosOk is not defined %}
{{ parent() }}
{% else %}
<div class="alert alert-info">
<strong>
<i class="fas fa-info-circle bigger-150"></i>
{{ filtrosOk }}
</strong>
<br>
</div>
{% endif %}
{% endblock show_no_results %}
{% block main_column_info %}
{% if routeClassName != 'certificadovacunacion' %}
<div id="otros_botones" class="menu_int clearfix" >
<a id='exportar_excel' href='#'>
<button id="btnExportarExcel" class='btn btn-white btn-inverse btn-bold btn-round' title='Exportar a excel'><img src='{{ asset('images/icon/icono_excel.png') }}'>
<span class='hidden-xs'>{{ 'reporteresultados.botones.exportarExcel' |trans({},'crud' )}}</span>
</button>
</a>
{% if is_granted('ROLE_PSICOLOGO_JEFE') or is_granted('ROLE_PSICOLOGO') %}
<a id='exportar_excel_test' href='{{ path('export_excel_test', {'rol': rol, 'routeClassName': routeClassName}) }}'>
<button id="btnExportarExcelTest" class='btn btn-white btn-inverse btn-bold btn-round' title='Exportar Tests a excel'><img src='{{ asset('images/icon/icono_excel.png') }}'>
<span class='hidden-xs'>Exportar Tests a excel</span>
</button>
</a>
<a id='exportar_excel_test_preguntas' href='{{ path('export_excel_test_preguntas', {'rol': rol, 'routeClassName': routeClassName}) }}'>
<button id="btnExportarExcelTest" class='btn btn-white btn-inverse btn-bold btn-round' title='Exportar Tests Completos a excel'><img src='{{ asset('images/icon/icono_excel.png') }}'>
<span class='hidden-xs'>Exportar Tests Completos a excel</span>
</button>
</a>
{% endif %}
</div>
{% endif %}
{% endblock main_column_info %}
{% block cellData %}
{% if field['nombre']=='certificadoVacunacionOk' and not entity.getFieldValue(field['nombre'])%}
<i class="fa fa-question-circle"></i>
{#% else %}
{% if field['nombre']=='valorEncuesta' and filterData['pregunta'])%}
{{ entity.getValorEncuesta(filterData['pregunta']) }}
{% endif %#}
{% endif %}
{{ parent() }}
{% endblock cellData %}
{% block index_actions %}
{% if is_granted('ROLE_PSICOLOGO_JEFE') or is_granted('ROLE_PSICOLOGO') %}
<a href="{{ path('show_respuestas_test', { 'id': entity.id }) }}" itemid="{{ entity.id }}">
<i class="fas fa-tasks bigger-150 green" title="Resultado test psicológico"></i>
</a>
{% else %}
{{ parent() }}
{% endif %}
{% endblock index_actions %}