mirror of https://github.com/interlegis/sapl.git
João Rodrigues
5 years ago
committed by
GitHub
1 changed files with 85 additions and 87 deletions
@ -1,111 +1,109 @@ |
|||||
|
|
||||
{% extends "crud/form.html" %} |
{% extends "crud/form.html" %} |
||||
{% load i18n %} |
{% load i18n %} |
||||
{% load crispy_forms_tags %} |
{% load crispy_forms_tags %} |
||||
{% load common_tags %} |
{% load common_tags %} |
||||
|
|
||||
{% block extra_js %} |
{% block extra_js %} |
||||
|
<script language="Javascript"> |
||||
|
function recuperar_numero_ano() { |
||||
|
var tipo = $("#id_tipo").val() |
||||
|
var ano = $("#id_ano").val() |
||||
|
|
||||
<script language="Javascript"> |
if (tipo){ |
||||
|
$.get("/materia/recuperar-materia", { tipo: tipo, ano: ano }, |
||||
function recuperar_numero_ano() { |
function (data, status) { |
||||
var tipo = $("#id_tipo").val() |
$("#id_numero").val(data.numero); |
||||
var ano = $("#id_ano").val() |
$("#id_ano").val(data.ano); |
||||
|
console.log(data); |
||||
if (tipo) { |
}); |
||||
$.get("/materia/recuperar-materia",{tipo: tipo, ano: ano}, |
} |
||||
function(data, status) { |
|
||||
$("#id_numero").val(data.numero); |
|
||||
$("#id_ano").val(data.ano); |
|
||||
console.log(data) |
|
||||
}); |
|
||||
} |
} |
||||
} |
$("#id_tipo, #id_ano").change(recuperar_numero_ano); |
||||
$("#id_tipo, #id_ano").change(recuperar_numero_ano); |
|
||||
|
|
||||
function compare(a, b) { |
function compare(a, b) { |
||||
if (a.text < b.text) |
if (a.text < b.text) |
||||
return -1; |
return -1; |
||||
if (a.text > b.text) |
if (a.text > b.text) |
||||
return 1; |
return 1; |
||||
return 0; |
return 0; |
||||
} |
} |
||||
|
|
||||
var modal_estilos = 'display: block;' |
var modal_estilos = 'display: block;' |
||||
+'width: 85%; max-width: 600px;' |
+'width: 85%; max-width: 600px;' |
||||
+'background: #fff; padding: 15px;' |
+'background: #fff; padding: 15px;' |
||||
+'border-radius: 5px;' |
+'border-radius: 5px;' |
||||
+'-webkit-box-shadow: 0px 6px 14px -2px rgba(0,0,0,0.75);' |
+'-webkit-box-shadow: 0px 6px 14px -2px rgba(0,0,0,0.75);' |
||||
+'-moz-box-shadow: 0px 6px 14px -2px rgba(0,0,0,0.75);' |
+'-moz-box-shadow: 0px 6px 14px -2px rgba(0,0,0,0.75);' |
||||
+'box-shadow: 0px 6px 14px -2px rgba(0,0,0,0.75);' |
+'box-shadow: 0px 6px 14px -2px rgba(0,0,0,0.75);' |
||||
+'position: fixed;' |
+'position: fixed;' |
||||
+'top: 50%; left: 50%;' |
+'top: 50%; left: 50%;' |
||||
+'transform: translate(-50%,-50%);' |
+'transform: translate(-50%,-50%);' |
||||
+'z-index: 99999999; text-align: center'; |
+'z-index: 99999999; text-align: center'; |
||||
|
|
||||
var fundo_modal_estilos = 'top: 0; right: 0;' |
var fundo_modal_estilos = 'top: 0; right: 0;' |
||||
+'bottom: 0; left: 0; position: fixed;' |
+'bottom: 0; left: 0; position: fixed;' |
||||
+'background-color: rgba(0, 0, 0, 0.6); z-index: 99999999;' |
+'background-color: rgba(0, 0, 0, 0.6); z-index: 99999999;' |
||||
+'display: none;'; |
+'display: none;'; |
||||
|
|
||||
var meu_modal = '<div id="fundo_modal" style="'+fundo_modal_estilos+'">' |
var meu_modal = '<div id="fundo_modal" style="'+fundo_modal_estilos+'">' |
||||
+'<div id="meu_modal" style="'+modal_estilos+'">' |
+'<div id="meu_modal" style="'+modal_estilos+'">' |
||||
+'<h2>Atenção! Ano de apresentação e ano da matéria são diferentes.</h2><br />' |
+'<h2>Atenção! Ano de apresentação e ano da matéria são diferentes.</h2><br />' |
||||
+'<button id="close_model_btn" type="button" class="btn btn-warning" data-dismiss="modal">' |
+'<button id="close_model_btn" type="button" class="btn btn-warning" data-dismiss="modal">' |
||||
+'Compreendo e quero continuar</button>' |
+'Compreendo e quero continuar</button>' |
||||
+'</div></div>'; |
+'</div></div>'; |
||||
|
|
||||
function verifica_ano(){ |
function verifica_ano() { |
||||
let ano = $("select#id_ano.select").val(); |
let ano = $("select#id_ano.select").val(); |
||||
let data_apresentacao = $("input#id_data_apresentacao.dateinput").val(); |
let data_apresentacao = $("input#id_data_apresentacao.dateinput").val(); |
||||
let ano_apresentacao = data_apresentacao.substr(data_apresentacao.length - 4); |
let ano_apresentacao = data_apresentacao.substr(data_apresentacao.length - 4); |
||||
|
|
||||
if(ano && ano_apresentacao && ano_apresentacao != ano){ |
if (ano && ano_apresentacao && ano_apresentacao != ano){ |
||||
$('#fundo_modal').fadeIn(); |
$('#fundo_modal').fadeIn(); |
||||
|
} |
||||
} |
} |
||||
} |
|
||||
|
|
||||
$(document).ready(function() { |
$(document).ready( function() { |
||||
$("#id_tipo_autor").change(function() { |
$("#id_tipo_autor, #id_data_apresentacao").change( function() { |
||||
var tipo_selecionado = $("#id_tipo_autor").val(); |
var tipo_selecionado = $("#id_tipo_autor").val(); |
||||
var autor_selecionado = $("#id_autor").val(); |
var autor_selecionado = $("#id_autor").val(); |
||||
$("#id_autor option").remove() |
|
||||
if (tipo_selecionado !== undefined && tipo_selecionado !== null) { |
$("#id_autor option").remove() |
||||
var json_data = { |
|
||||
|
if (tipo_selecionado !== undefined && tipo_selecionado !== null){ |
||||
|
var json_data = { |
||||
tipo : tipo_selecionado, |
tipo : tipo_selecionado, |
||||
data_relativa : $("#id_data_apresentacao").val() |
data_relativa : $("#id_data_apresentacao").val() |
||||
} |
|
||||
$.getJSON("/api/autor/possiveis", json_data, function(data){ |
|
||||
if (data) { |
|
||||
var results = data.sort(compare); |
|
||||
if (results.length > 1) { |
|
||||
$("#id_autor").append("<option>-----</option>"); |
|
||||
} |
|
||||
$.each(results, function(idx, obj) { |
|
||||
$("#id_autor") |
|
||||
.append($("<option></option>") |
|
||||
.attr("value", obj.value) |
|
||||
.text(obj.text)); |
|
||||
}); |
|
||||
$("#id_autor").val(autor_selecionado); |
|
||||
} |
} |
||||
}); |
$.getJSON("/api/autor/possiveis", json_data, function(data) { |
||||
} |
if (data) { |
||||
}); |
var results = data.sort(compare); |
||||
$("#id_tipo_autor").trigger('change'); |
if (results.length > 1) { |
||||
|
$("#id_autor").append("<option>-----</option>"); |
||||
|
} |
||||
|
$.each(results, function(idx, obj) { |
||||
|
$("#id_autor") |
||||
|
.append($("<option></option>") |
||||
|
.attr("value", obj.value) |
||||
|
.text(obj.text)); |
||||
|
}); |
||||
|
$("#id_autor").val(autor_selecionado); |
||||
|
} |
||||
|
}); |
||||
|
} |
||||
|
}); |
||||
|
$("#id_tipo_autor").trigger('change'); |
||||
|
|
||||
$("body").append(meu_modal); |
$("body").append(meu_modal); |
||||
|
|
||||
$("#fundo_modal, #close_model_btn").click(function(){ $("#fundo_modal").hide(); }); |
$("#fundo_modal, #close_model_btn").click( function() { $("#fundo_modal").hide(); }); |
||||
$("#meu_modal").click(function(e){ e.stopPropagation(); }); |
$("#meu_modal").click( function(e) { e.stopPropagation(); }); |
||||
|
|
||||
$("select#id_ano.select.form-control").change(function(){ |
$("select#id_ano.select.form-control").change( function() { |
||||
verifica_ano(); |
verifica_ano(); |
||||
|
}); |
||||
|
$("input#id_data_apresentacao.dateinput.form-control").change( function() { |
||||
|
verifica_ano(); |
||||
|
}); |
||||
}); |
}); |
||||
$("input#id_data_apresentacao.dateinput.form-control").change(function(){ |
</script> |
||||
verifica_ano(); |
|
||||
}); |
|
||||
}); |
|
||||
</script> |
|
||||
|
|
||||
{% endblock %} |
{% endblock %} |
||||
|
Loading…
Reference in new issue