|
|
@ -21,14 +21,13 @@ |
|
|
|
{% else %} |
|
|
|
<fieldset class="form-group"> |
|
|
|
|
|
|
|
|
|
|
|
<legend>Votos</legend> |
|
|
|
<div class="row"> |
|
|
|
{% for parlamentar in parlamentares %} |
|
|
|
<div class="col-md-4" id="styleparlamentar">{{parlamentar.0.nome_parlamentar}}</div> |
|
|
|
<div class="col-md-5"> |
|
|
|
{% if parlamentar.1 %} <input type="hidden" name="voto_parlamentar" value="{{parlamentar.1}}:{{parlamentar.0.id}}" /> {% endif %} |
|
|
|
<select id="voto_parlamentar" name="voto_parlamentar" class="form-control" {% if parlamentar.1 %} disabled {% endif %}> |
|
|
|
<select onchange="salva_votos(this)" id="voto_parlamentar" name="voto_parlamentar" class="form-control" {% if parlamentar.1 %} disabled {% endif %}> |
|
|
|
<option value="Não Votou:{{parlamentar.0.id}}">Não Votou</option> |
|
|
|
<option value="Sim:{{parlamentar.0.id}}" {% if parlamentar.1 == 'Sim' %} selected {% endif %}>Sim</option> |
|
|
|
<option value="Não:{{parlamentar.0.id}}" {% if parlamentar.1 == 'Não' %} selected {% endif %}>Não</option> |
|
|
@ -61,9 +60,9 @@ |
|
|
|
<br /><br /> |
|
|
|
<input type="submit" id="salvar-votacao" name="salvar-votacao" value="Fechar Votação" class="btn btn-primary" /> |
|
|
|
<input type="submit" id="cancelar-votacao" name="cancelar-votacao" value="Cancelar Votação" class="btn btn-warning" /> |
|
|
|
</fieldset> |
|
|
|
</form> |
|
|
|
{% endif %} |
|
|
|
</fieldset> |
|
|
|
</form> |
|
|
|
{% endblock detail_content %} |
|
|
|
|
|
|
|
{% block extra_js %} |
|
|
@ -102,16 +101,40 @@ |
|
|
|
$("#soma_votos").append("<div class='row'><div class='col-md-12'>Abstenções: " + votos_abstencao + "</div></div>"); |
|
|
|
$("#soma_votos").append("<div class='row'><div class='col-md-12'>Ainda não votaram: " + nao_votou + "</div></div>"); |
|
|
|
var t = setTimeout(function(){ |
|
|
|
conta_votos() |
|
|
|
conta_votos(); |
|
|
|
}, 500); |
|
|
|
} |
|
|
|
conta_votos(); |
|
|
|
|
|
|
|
window.onload = conta_votos(); |
|
|
|
function salva_votos(event){ |
|
|
|
$(event).each(function() { |
|
|
|
let value = $(this).val(); |
|
|
|
let parlamentar_id = value.split(":")[1]; |
|
|
|
let parlamentar_voto = value.substring(0,4); |
|
|
|
let url = window.location.pathname; |
|
|
|
let tmp = url.split('/'); |
|
|
|
let id_ordem_expediente = tmp[5]; |
|
|
|
let is_ordemdia = (tmp[3].split('mat')[1] == 'ordemdia'); |
|
|
|
$.get("{% url 'sapl.sessao:votacao_nominal_parlamentar' %}", |
|
|
|
{ |
|
|
|
parlamentar_id: parlamentar_id, |
|
|
|
parlamentar_voto: parlamentar_voto, |
|
|
|
id_ordem_expediente : id_ordem_expediente, |
|
|
|
is_ordemdia: is_ordemdia |
|
|
|
}, function(data, status) { |
|
|
|
if(status == "success") |
|
|
|
console.log("Voto salvo."); |
|
|
|
}); |
|
|
|
|
|
|
|
}); |
|
|
|
} |
|
|
|
|
|
|
|
$(window).on('beforeunload', function () { |
|
|
|
$("input[type=submit], input[type=button]").prop("disabled", "disabled"); |
|
|
|
}); |
|
|
|
|
|
|
|
$(document).ready(function(){ |
|
|
|
conta_votos(); |
|
|
|
}); |
|
|
|
|
|
|
|
</script> |
|
|
|
{% endblock extra_js%} |
|
|
|