mirror of https://github.com/interlegis/sapl.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
739 B
32 lines
739 B
{% extends "crud/form.html" %}
|
|
{% load i18n %}
|
|
{% load crispy_forms_tags %}
|
|
|
|
{% block detail_content %}
|
|
{% crispy form %}
|
|
{% endblock %}
|
|
|
|
|
|
{% block extra_js %}
|
|
|
|
<script language="Javascript">
|
|
function atualizar_numero_documento(){
|
|
var tipo = $("#id_tipo").val();
|
|
var ano = $("#id_ano").val();
|
|
|
|
if (tipo && ano){
|
|
$.get(
|
|
"{% url 'sapl.protocoloadm:atualizar_numero_documento' %}",
|
|
{tipo: tipo, ano:ano},
|
|
function(data, status) {
|
|
$("#id_numero").val(data.numero);
|
|
});
|
|
}
|
|
}
|
|
|
|
$("#id_tipo").change(atualizar_numero_documento)
|
|
$("#id_ano").change(atualizar_numero_documento)
|
|
|
|
</script>
|
|
|
|
{% endblock %}
|