Browse Source

Fix #3203 - Atualização lista autores (#3213)

pull/3218/head
João Rodrigues 5 years ago
committed by GitHub
parent
commit
469a08e296
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 10
      sapl/templates/materia/materialegislativa_form.html

10
sapl/templates/materia/materialegislativa_form.html

@ -1,13 +1,10 @@
{% extends "crud/form.html" %}
{% load i18n %}
{% load crispy_forms_tags %}
{% load common_tags %}
{% block extra_js %}
<script language="Javascript">
function recuperar_numero_ano() {
var tipo = $("#id_tipo").val()
var ano = $("#id_ano").val()
@ -17,7 +14,7 @@
function (data, status) {
$("#id_numero").val(data.numero);
$("#id_ano").val(data.ano);
console.log(data)
console.log(data);
});
}
}
@ -66,10 +63,12 @@
}
$(document).ready( function() {
$("#id_tipo_autor").change(function() {
$("#id_tipo_autor, #id_data_apresentacao").change( function() {
var tipo_selecionado = $("#id_tipo_autor").val();
var autor_selecionado = $("#id_autor").val();
$("#id_autor option").remove()
if (tipo_selecionado !== undefined && tipo_selecionado !== null){
var json_data = {
tipo : tipo_selecionado,
@ -107,5 +106,4 @@
});
});
</script>
{% endblock %}

Loading…
Cancel
Save