João Rodrigues
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
85 additions and
87 deletions
-
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 %} |
|
|
|