997
| <![CDATA[<script type="text/javascript">
$(document).ready(function() {
pegarDadosComParametros(false);
$(".datepicker").datepicker({
changeMonth: true,
changeYear: false,
yearRange: "2024:2024",
buttonText: "<i class='fa fa-calendar'></i>"
});
$('#btnDtInicioEmpenhos').on('click', function() {
$('#txtDtInicioEmpenhos').focus();
});
$('#btnDtFimEmpenhos').on('click', function() {
$('#txtDtFimEmpenhos').focus();
});
$('#show-empenho-detalhado').on('show.bs.modal', function() {
$('.modal-body-custom').css('overflow-y', 'auto');
$('.modal-body-custom').css('height', $(window).height() * 0.75);
$('#detalhamento-empenho').attr('height', $(window).height() * 0.72);
});
});
$('#btnPesquisarDados').on('click', function(e) {
if ($('#txtAno').val() == 0) {
alert('Selecione um ano para sua pesquisa!');
} else {
pegarDadosComParametros(true);
}
});
function pegarDadosComParametros(flag) {
$('#modalLoading').modal('show');
if (flag) {
var variaveis = {
_token: 'MMossDmg9MhRlWEpr5Z4vHULVQzFBsWEmuCHmZzM',
snife: 'IDOELAJKDKLSKkljhLKJHJKLhjkGHOIfgtJHFGjhfrPIYUtgpJGiGutgKJHGFughDCFFsdTREDxcygTCgfxcEDXryXCERTTXerxERxer',
do_search: true,
ano: $('#txtAno').val(),
txtDtInicioEmpenhos: $('#txtDtInicioEmpenhos').val(),
txtDtFimEmpenhos: $('#txtDtFimEmpenhos').val(),
ddlModalidade: $('#ddlModalidade').val(),
ddlSituacao: $('#ddlSituacao').val()
};
} else {
var variaveis = { _token: 'MMossDmg9MhRlWEpr5Z4vHULVQzFBsWEmuCHmZzM', snife: 'IDOELAJKDKLSKkljhLKJHJKLhjkGHOIfgtJHFGjhfrPIYUtgpJGiGutgKJHGFughDCFFsdTREDxcygTCgfxcEDXryXCERTTXerxERxer', id_unidade: $('#id_unidade').val() };
}
$.post('https://transparencia.amaraji.pe.gov.br/get_dadoslicitacao', variaveis, function(data) {
$('#tabela').remove();
if (data.result === 'true') {
$('#tabela-principal').html('<table class="table table-striped table-hover table-responsive display no-m-b" id="tabela"><thead><tr class="bg-default"><th colspan="5"><small>Código de Autenticidade: ' + data.codigo + '</small></th><th colspan="3" class="text-right"><small>' + data.created_at + '</small></th></tr><tr><th class="hidden hidden-print"></th><th class="col-md-1 text-center">Ano</th><th class="col-md-1 text-center">Processo</th><th class="col-md-1 text-center">Modalidade</th><th class="col-md-1 text-center">Procedimento</th><th class="col-md-5 text-left">Objeto</th><th class="col-md-2 text-center">Valor Adjudicado</th><th class="col-md-1 text-center">Situação</th><th class="col-md-1 text-center">Opções</th></tr></thead><tbody id="tbody-licitacao"></tbody></table>')
$('#tabela').hide('fade');
if (parseInt(data.dados.length) > 0) {
$('#tbody-licitacao').html('');
var url_licitacao = 'https://transparencia.amaraji.pe.gov.br/app/pe/amaraji/1/licitacoes/detalhamento-de-licitacao';
for (var i = 0; i < parseInt(data.dados.length); i++) {
$('#tbody-licitacao').append('<tr id="tr-principal-'+ data.dados[i].numero_processo +'-'+ data.dados[i].numero_procedimento +'"><td class="hidden hidden-print">' + data.dados[i].numero_processo + '</td><td class="text-center">' + data.dados[i].ano + '</td><td class="text-center">' + data.dados[i].numero_processo + '</td><td class="text-center">' + data.dados[i].modalidade + '</td><td class="text-center">' + data.dados[i].numero_procedimento + '</td><td class="text-justify">' + data.dados[i].objeto + '</td><td class="text-center">R$ ' + formatMoney(data.dados[i].valor_adjudicado, 2, ',', '.') + '</td><td class="text-center">' + data.dados[i].situacao + '</td><td class="text-center"><a href="' + url_licitacao + '/' + data.dados[i].id + '" class="btn btn-primary btn-sm" data-toggle="tooltip" data-placement="left" title="Informações detalhadas sobre o Processo de Licitação nº ' + data.dados[i].numero_processo + '/' + data.dados[i].ano + '"><i class="fa fa-list"></i></a></td></tr>');
}
}
} else {
$('#tabela-principal').html('<table class="table table-striped table-hover table-responsive display no-m-b" id="tabela"><thead><tr><th class="hidden hidden-print"></th><th class="col-md-1 text-center">Ano</th><th class="col-md-1 text-center">Processo</th><th class="col-md-1 text-center">Modalidade</th><th class="col-md-1 text-center">Procedimento</th><th class="col-md-5 text-left">Objeto</th><th class="col-md-2 text-center">Valor Adjudicado</th><th class="col-md-1 text-center">Situação</th><th class="col-md-1 text-center">Opções</th></tr></thead><tbody id="tbody-licitacao"></tbody></table>')
$('#tabela').show('fade');
$('#tbody-licitacao').html('');
$('#tfoot-licitacao').html('');
$('#tbody-licitacao').html('<tr><td class="text-center" colspan="8"><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' && parseInt(data.dados.length) > 0) {
inicializateExportationComplete('#tabela', 'licitacoes', true, 20, true, 0, 'desc', true);
$('[data-toggle="tooltip"]').tooltip();
}else{
inicializateExportationComplete('#table', 'licitacoes', false);
}
});
}
$(function() {
$('#txtAno').change(function() {
changeYear();
});
//changeYear();
});
function changeYear() {
var ano = $('#txtAno').val();
if (ano == '') {
var ano = $('#txtAnoHd').val();
}
$('#txtDtInicioEmpenhos').val("");
//$('#txtDtInicioEmpenhos').val("01/01/" + ano);
$('#txtDtFimEmpenhos').val("");
//$('#txtDtFimEmpenhos').val("31/12/" + ano);
}
$('#btnPDF').on('click', function() {
$('.buttons-pdf').click();
});
$('#btnPrint').on('click', function() {
$('.buttons-print').click();
});
</script>]]>
|