|
|
@ -29,7 +29,8 @@ from sapl.materia.views import (AcompanhamentoConfirmarView, |
|
|
MateriaPesquisaSimplesView, |
|
|
MateriaPesquisaSimplesView, |
|
|
DespachoInicialMultiCreateView) |
|
|
DespachoInicialMultiCreateView) |
|
|
from sapl.norma.views import NormaPesquisaSimplesView |
|
|
from sapl.norma.views import NormaPesquisaSimplesView |
|
|
from sapl.protocoloadm.views import (FichaPesquisaAdmView, FichaSelecionaAdmView) |
|
|
from sapl.protocoloadm.views import ( |
|
|
|
|
|
FichaPesquisaAdmView, FichaSelecionaAdmView) |
|
|
|
|
|
|
|
|
from .apps import AppConfig |
|
|
from .apps import AppConfig |
|
|
|
|
|
|
|
|
@ -63,6 +64,7 @@ urlpatterns_impressos = [ |
|
|
] |
|
|
] |
|
|
|
|
|
|
|
|
urlpatterns_materia = [ |
|
|
urlpatterns_materia = [ |
|
|
|
|
|
|
|
|
url(r'^materia/', include(MateriaLegislativaCrud.get_urls() + |
|
|
url(r'^materia/', include(MateriaLegislativaCrud.get_urls() + |
|
|
AnexadaCrud.get_urls() + |
|
|
AnexadaCrud.get_urls() + |
|
|
AutoriaCrud.get_urls() + |
|
|
AutoriaCrud.get_urls() + |
|
|
@ -77,7 +79,8 @@ urlpatterns_materia = [ |
|
|
url(r'^materia/(?P<pk>[0-9]+)/create_simplificado$', |
|
|
url(r'^materia/(?P<pk>[0-9]+)/create_simplificado$', |
|
|
CriarProtocoloMateriaView.as_view(), |
|
|
CriarProtocoloMateriaView.as_view(), |
|
|
name='materia_create_simplificado'), |
|
|
name='materia_create_simplificado'), |
|
|
url(r'^materia/recuperar-materia', recuperar_materia, name='recuperar_materia'), |
|
|
url(r'^materia/recuperar-materia', |
|
|
|
|
|
recuperar_materia, name='recuperar_materia'), |
|
|
url(r'^materia/(?P<pk>[0-9]+)/ta$', |
|
|
url(r'^materia/(?P<pk>[0-9]+)/ta$', |
|
|
MateriaTaView.as_view(), name='materia_ta'), |
|
|
MateriaTaView.as_view(), name='materia_ta'), |
|
|
|
|
|
|
|
|
@ -97,6 +100,7 @@ urlpatterns_materia = [ |
|
|
AutoriaMultiCreateView.as_view(), |
|
|
AutoriaMultiCreateView.as_view(), |
|
|
name='autoria_multicreate'), |
|
|
name='autoria_multicreate'), |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
url(r'^materia/acessorio-em-lote', DocumentoAcessorioEmLoteView.as_view(), |
|
|
url(r'^materia/acessorio-em-lote', DocumentoAcessorioEmLoteView.as_view(), |
|
|
name='acessorio_em_lote'), |
|
|
name='acessorio_em_lote'), |
|
|
url(r'^materia/(?P<pk>\d+)/anexada-em-lote', MateriaAnexadaEmLoteView.as_view(), |
|
|
url(r'^materia/(?P<pk>\d+)/anexada-em-lote', MateriaAnexadaEmLoteView.as_view(), |
|
|
@ -138,8 +142,6 @@ urlpatterns_proposicao = [ |
|
|
url(r'^proposicao/(?P<pk>\d+)/retornar', RetornarProposicao.as_view(), |
|
|
url(r'^proposicao/(?P<pk>\d+)/retornar', RetornarProposicao.as_view(), |
|
|
name='retornar-proposicao'), |
|
|
name='retornar-proposicao'), |
|
|
|
|
|
|
|
|
url(r'^materia/(?P<pk>\d+)/despachoinicialmulti/create', DespachoInicialMultiCreateView.as_view(), |
|
|
|
|
|
name='despacho-inicial-multi'), |
|
|
|
|
|
] |
|
|
] |
|
|
|
|
|
|
|
|
urlpatterns_sistema = [ |
|
|
urlpatterns_sistema = [ |
|
|
|