mirror of https://github.com/interlegis/sapl.git
Eduardo Calil
8 years ago
11 changed files with 92 additions and 4 deletions
@ -0,0 +1,9 @@ |
|||
from django.core.management.base import BaseCommand |
|||
from sapl.legacy import migration |
|||
|
|||
|
|||
class Command(BaseCommand): |
|||
help = u'Faz a migração de dados do SAPL 2.5 para o SAPL 3.1' |
|||
|
|||
def handle(self, *args, **options): |
|||
migration.migrate() |
@ -0,0 +1,19 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# Generated by Django 1.9.7 on 2016-09-29 19:35 |
|||
from __future__ import unicode_literals |
|||
|
|||
from django.db import migrations |
|||
|
|||
|
|||
class Migration(migrations.Migration): |
|||
|
|||
dependencies = [ |
|||
('norma', '0014_merge'), |
|||
] |
|||
|
|||
operations = [ |
|||
migrations.AlterModelOptions( |
|||
name='legislacaocitada', |
|||
options={'verbose_name': 'Legislação', 'verbose_name_plural': 'Legislações'}, |
|||
), |
|||
] |
@ -0,0 +1,25 @@ |
|||
{% 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() |
|||
|
|||
if (tipo) { |
|||
$.get("/materia/recuperar-materia",{tipo: tipo}, |
|||
function(data, status) { |
|||
$("#id_numero").val(data.numero); |
|||
$("#id_ano").val(data.ano); |
|||
console.log(data) |
|||
}); |
|||
} |
|||
} |
|||
$("#id_tipo").change(recuperar_numero_ano); |
|||
</script> |
|||
|
|||
{% endblock %} |
@ -0,0 +1,14 @@ |
|||
{% extends "crud/form.html" %} |
|||
{% load i18n %} |
|||
{% load crispy_forms_tags %} |
|||
{% load common_tags %} |
|||
|
|||
{% block base_content %} |
|||
{% if form.comissao.value == 0 %} |
|||
<div class="alert alert-danger alert-dismissible fade in" role="alert"> |
|||
A localização atual deve ser uma comissão! |
|||
</div> |
|||
{% else %} |
|||
{% crispy form %} |
|||
{% endif %} |
|||
{% endblock %} |
Loading…
Reference in new issue