2473
| <![CDATA[<script>
$('.collapse').collapse()
$('#protocolo').keypress(function(e) {
var regex = new RegExp("^[a-zA-Z0-9]+$");
var str = String.fromCharCode(!e.charCode ? e.which : e.charCode);
if (regex.test(str)) {
return true;
}
e.preventDefault();
return false;
});
$('#btn-ocorrencia').click(function() {
$('#tr_anexo').addClass("hidden");
$('#tr_foto').addClass("hidden");
$('#anexo_ocorrencia').html("");
$('#foto_ocorrencia').html("");
if (!$('#protocolo').val()) {
alert('Verifique se digitou o protocolo');
} else {
if (!grecaptcha.getResponse()) {
alert('Verifique o recaptcha');
} else {
$.ajax({
type: "POST",
data: {
protocolo: $('#protocolo').val(),
cpf: $('#CPF').val(),
recaptcha: grecaptcha.getResponse(),
},
url: "../paginas/ouvidoria_json.php",
dataType: "json",
success: function(result) {
// FORMATAÇÃO DA DATA DA ABERTURA
var data = result.data_abertura.split(" ");
var data_padrao = data[0].split("-");
var data_format = data_padrao[2] + "/" + data_padrao[1] + "/" + data_padrao[0] + " " + data[1];
grecaptcha.reset();
if (result.msg) {
$('.alert').removeClass("hidden");
$('#title_data').addClass("hidden");
$('#title_status').addClass("hidden");
$('#title_depto').addClass("hidden");
$('#table_ocorrencia').addClass("hidden");
} else {
$('#title_data').removeClass("hidden");
$('#title_status').removeClass("hidden");
$('#title_depto').removeClass("hidden");
$('#table_ocorrencia').removeClass("hidden");
$('.alert').addClass("hidden");
$('#status').html(result.nome_status);
$('#data').html(data_format);
$('#depto').html(result.departamento_historico);
$('#tel_depto').html(result.departamento_telefone);
$('#descricao').html(result.descricao);
switch (result.nome_status) {
case 'FINALIZADO':
$('#tr_solucao').removeClass("hidden");
$('#solucao_ocorrencia').html(result.solucao_ocorrencia);
if (result.anexo != null) {
$('#tr_anexo').removeClass("hidden");
var anexoUrl = "https://aplicativos.pma.sp.gov.br/ouvidoria-pma/uploads/empresa_1/ocorrencias/" + result.id + "/arquivos/" + result.anexo;
if (anexoUrl.includes(".pdf"))
$('#anexo_ocorrencia').html("<a href='" + anexoUrl + "' target='_blank'>ANEXO</a>");
else
$('#anexo_ocorrencia').html("<img src='" + anexoUrl + "' alt='ANEXO' width='312'></img>");
}
if (result.foto != null) {
$('#tr_foto').removeClass("hidden");
var fotoUrl = "https://aplicativos.pma.sp.gov.br/ouvidoria-pma/uploads/empresa_1/ocorrencias/" + result.id + "/arquivos/" + result.foto;
if (fotoUrl.includes(".pdf"))
$('#foto_ocorrencia').html("<a href='" + fotoUrl + "' target='_blank'>IMAGEM OCORRENCIA</a>");
else
$('#foto_ocorrencia').html("<img src='" + fotoUrl + "' alt='IMAGEM OCORRENCIA' width='312'></img>");
}
break;
default:
break;
}
}
},
error: function(xhr, status, error) {
if (error) {
$('.alert').removeClass("hidden");
$('#title_data').addClass("hidden");
$('#title_status').addClass("hidden");
$('#title_depto').addClass("hidden");
}
},
});
}
}
});
</script>]]>
|