Estou procurando por
Serviços
Noticias
Ato formaliza início das obras do PAC Saúde
Alto contraste desligado
Regime:
Cargo:
tabela_vencimentos.csv
tabela_vencimentos.xls
tabela_vencimentos.pdf
$('#form_regime').on('change', function() { var tipo_regime = $('#form_regime').val(); $.ajax({ type: 'POST', url: "https://transparenciahomolog.coinpel.com.br/recursos-humanos/tabela_vencimentos", headers: { 'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content') }, dataType: 'json', data: { 'tipo_regime': tipo_regime }, beforeSend: function() { $('#form_cargo').empty(); }, success: function(response) { if (response.filtro_cargo && Array.isArray(response.filtro_cargo)) { $('#form_cargo').append('Todos'); response.filtro_cargo.forEach(function(item) { $('#form_cargo').append('' + item.cargo + ''); }); } }, }); });