916
| <![CDATA[<script type="text/javascript">
$(document).ready(function() {
doUpdate();
});
function doUpdate(){
$('#modalLoading').modal('show');
$('#tabela').remove();
$('#tabela-principal').html('<table class="table table-responsive display" id="tabela"><thead><tr><th class="col-md-3 text-left">Nome</th><th class="col-md-2 text-left">Curso</th><th class="col-md-2 text-left">Órgão</th><th class="col-md-2 text-left">Lotação</th><th class="col-md-2 text-left">Função</th><th class="col-md-1 text-center">Detalhes</th></tr></thead><tbody id="tbody-estagiarios"></tbody></table>');
$('#tabela').hide('fade');
$.post('https://transparencia.amaraji.pe.gov.br/get_dados_estagiarios', { _token : 'vbDrbpXhRc9OvBs9XZ5RAn6nOzuKmqsR8HPfJ6G1', snife: 'IDOELAJKDKLSKkljhLKJHJKLhjkGHOIfgtJHFGjhfrPIYUtgpJGiGutgKJHGFughDCFFsdTREDxcygTCgfxcEDXryXCERTTXerxERxer' }, function(data) {
if(data.result == 'true'){
$('#tbody-estagiarios').html('');
for (var i = 0; i < data.dados.length; i++) {
$('#tbody-estagiarios').append('<tr><td class="text-left">' + data.dados[i].nome + '</td><td>' + data.dados[i].curso + '</td><td>' + data.dados[i].orgao + '</td><td>' + data.dados[i].lotacao + '</td><td>' + data.dados[i].funcao + '</td><td class="text-center"><button class="btn btn-primary btn-xs" onclick="detalharEstagiario(\'' + data.dados[i].id + '\')"><i class="fa fa-list"></i></button></td></tr>');
}
}else{
//showMediumMessage(data.title, data.icon, data.color, data.mensagem);
$('#tbody-estagiarios').html('');
$('#tabela-tfoot').html('');
$('#tbody-estagiarios').html('<tr><td class="text-center" colspan="6"><i class="fa fa-archive text-danger"></i> ' + data.mensagem + '</td></tr>');
}
}).done(function(data) {
$('#modalLoading').modal('hide');
$('#tabela').show('fade');
if(data.result == 'true'){
inicializateExportationComplete('#tabela', 'estagiarios', true, 20, false, 0, 'desc', true);
}else{
inicializateExportationComplete('#tabela', 'estagiarios', false, 20, false, 0, 'desc', false);
}
});
}
function doSearch(){
$('#modalLoading').modal('show');
$('#tabela').remove();
$('#tabela-principal').html('<table class="table table-responsive display" id="tabela"><thead><tr><th class="col-md-3 text-left">Nome</th><th class="col-md-2 text-left">Curso</th><th class="col-md-2 text-left">Órgão</th><th class="col-md-2 text-left">Lotação</th><th class="col-md-2 text-left">Função</th><th class="col-md-1 text-center">Detalhes</th></tr></thead><tbody id="tbody-estagiarios"></tbody></table>');
$('#tabela').hide('fade');
$.post('https://transparencia.amaraji.pe.gov.br/get_dados_estagiarios', { _token : 'vbDrbpXhRc9OvBs9XZ5RAn6nOzuKmqsR8HPfJ6G1', snife: 'IDOELAJKDKLSKkljhLKJHJKLhjkGHOIfgtJHFGjhfrPIYUtgpJGiGutgKJHGFughDCFFsdTREDxcygTCgfxcEDXryXCERTTXerxERxer', do_search_all : true, nome : $('#nome').val(), universidade : $('#universidade').val() }, function(data) {
if(data.result == 'true'){
$('#tbody-estagiarios').html('');
for (var i = 0; i < data.dados.length; i++) {
$('#tbody-estagiarios').append('<tr><td class="text-left">' + data.dados[i].nome + '</td><td>' + data.dados[i].curso + '</td><td>' + data.dados[i].orgao + '</td><td>' + data.dados[i].lotacao + '</td><td>' + data.dados[i].funcao + '</td><td class="text-center"><button class="btn btn-primary btn-xs" onclick="detalharEstagiario(\'' + data.dados[i].id + '\')"><i class="fa fa-list"></i></button></td></tr>');
}
}else{
//showMediumMessage(data.title, data.icon, data.color, data.mensagem);
$('#tbody-estagiarios').html('');
$('#tabela-tfoot').html('');
$('#tbody-estagiarios').html('<tr><td class="text-center" colspan="6"><i class="fa fa-archive text-danger"></i> ' + data.mensagem + '</td></tr>');
}
}).done(function(data) {
$('#modalLoading').modal('hide');
$('#tabela').show('fade');
if(data.result == 'true'){
inicializateExportationComplete('#tabela', 'estagiarios', true, 20, false, 0, 'desc', true);
}else{
inicializateExportationComplete('#tabela', 'estagiarios', false, 20, false, 0, 'desc', false);
}
});
}
function detalharEstagiario(id){
$.post('https://transparencia.amaraji.pe.gov.br/get_dados_estagiarios', { _token : 'vbDrbpXhRc9OvBs9XZ5RAn6nOzuKmqsR8HPfJ6G1', snife: 'IDOELAJKDKLSKkljhLKJHJKLhjkGHOIfgtJHFGjhfrPIYUtgpJGiGutgKJHGFughDCFFsdTREDxcygTCgfxcEDXryXCERTTXerxERxer', do_search : true, id : id }, function(data) {
if(data.result == 'true'){
mostrarDetalhesEstagiario(data);
}else{
showMediumMessage(data.title, data.icon, data.color, data.mensagem);
}
});
}
$('#btnPDF').on('click', function() {
$('.buttons-pdf').click();
});
$('#btnPrint').on('click', function() {
$('.buttons-print').click();
});
</script>]]>
|