{% extends 'base.html.twig' %} {% block breadcrumb %} {% endblock %} {% block js_document_ready %} $('#datatable2').dataTable({ createdRow: function(row, data, dataIndex) { }, filter : false, language: { "url": "//cdn.datatables.net/plug-ins/1.12.1/i18n/es-ES.json" }, aLengthMenu: "", bAutoWidth: false, "columns": [ { "data": null, // Deja "data" en null para que DataTables no extraiga ningún dato de la columna "render": function(data, type, row) { if (type === 'display') { return "
" + row.presentacionAntecedentes.datosPersonales.apellidos + ', ' + row.presentacionAntecedentes.datosPersonales.nombres + "
"; } return data; } }, { "data": "presentacionAntecedentes.datosPersonales.dni"}, { "data": "pantecedente", "render": function(data, type, row) { if (type === 'display') { return "
"+ data+ "
"; } return data; } }, { "data": "examenEscrito", "render": function(data, type, row) { if (type === 'display') { return "
"+ data+ "
"; } return data; } }, { "data": "entrevista", "render": function(data, type, row) { if (type === 'display') { return "
"+ data+ "
"; } return data; } }, { "data": "total", "render": function(data, type, row) { if (type === 'display') { return "
"+ data+ "
"; } return data; } }, { "data": "acciones" , render: function(data, type, row, meta) { if (type === 'display') { $botones = [ ' ', 'visibility', ' ', ].join(''); {% if orden.estadoMerito != 'Definitivo' %} $botones += [ ' ', 'edit', '', ].join(''); {% endif %} return $botones; } return data; }, }, ], order: [[ 0, 'asc' ]], columnDefs: [ // These are the column name variables that will be sent to the server { "name": "dp.apellidos", "searchable": true, "targets": 0, }, { "name": "dp.dni", "searchable": true, "targets": 1 }, { "name": "pantecedente", "searchable": false, "orderable": false, "targets": 2 }, { "name": "examenEscrito", "searchable": false, "orderable": false, "targets": 3 }, { "name": "entrevista", "searchable": false, "orderable": false, "targets": 4 }, { "name": "total", "searchable": false, "orderable": false, "targets": 5 }, { "searchable": false, "orderable": false, "targets": 6 }, ], serverSide: true, processing: true, ajax: { url: '{{ path('ordenes_merito_detalle_datos', {'idView': orden.idView}) }}', type: 'POST' } }); // the "href" attribute of the modal trigger must specify the modal ID that wants to be triggered {# $('.modal1').modal(); #} $('select').formSelect(); $('.limpiar').click(function(){ window.location.href="{{ path('orden_merito_limpiar_index') }}" }); {% endblock %} {% block titulo_body %} business_center

{{ orden.cargo }} {% if orden.estadoRegistro == 'Borrador' %} {Borrador} {% endif %}

{{ orden.departamentoJudicial }} {% if orden.jurisdiccion is not null %} - {{ orden.jurisdiccion }} {% endif %}
{% endblock %} {% block titulo_acciones_body %} {% if orden.estadoRegistro == 'Terminado' and orden.estadoMerito != 'Definitivo' %} check Orden Definitivo {% endif %} {% if orden.estadoMerito != 'Definitivo' %} edit Editar Orden {% endif %}


{% if orden.estadoRegistro == 'Borrador' %} publish business_center Dar por terminado el Orden {% endif %} {% endblock %} {% block body %}
{{ form_start(form) }}
{{ form_widget(form.textoBusqueda) }} {{ form_label(form.textoBusqueda) }}
{{ form_label(form.dni) }} {{ form_widget(form.dni) }}
{% if form.children | filter(v => (v.vars.name != "_token" and not (v.vars.value == "" or v.vars.value == []))) | length > 0 %} {% endif %}
{{ form_end(form) }}
Apellido/s y Nombre/s DNI Puntaje Antecedente Puntaje Examen Puntaje Entrevista Total Acciones
Volver undo {% endblock %}