Browse Source

Fixes #926

pull/941/head
Edward Ribeiro 8 years ago
parent
commit
6f005cd450
  1. 6
      sapl/protocoloadm/views.py
  2. 13
      sapl/templates/protocoloadm/protocolo_mostrar.html

6
sapl/protocoloadm/views.py

@ -322,12 +322,12 @@ class ProtocoloMostrarView(PermissionRequiredMixin, TemplateView):
context['materia'] = materia context['materia'] = materia
elif protocolo.tipo_documento: elif protocolo.tipo_documento:
try: try:
documento = DocumentoAdministrativo.objects.get( documentos = DocumentoAdministrativo.objects.filter(
numero_protocolo=protocolo.numero, ano=protocolo.ano) numero_protocolo=protocolo.numero, ano=protocolo.ano)
except ObjectDoesNotExist: except ObjectDoesNotExist:
context['documento'] = None context['documentos'] = None
else: else:
context['documento'] = documento context['documentos'] = documentos
context['protocolo'] = protocolo context['protocolo'] = protocolo
return context return context

13
sapl/templates/protocoloadm/protocolo_mostrar.html

@ -14,12 +14,15 @@
<strong>Anulado: {% if protocolo.anulado %} <font color="red"> Sim {% else %} <font color="green"> Não {% endif %} </font></strong> <strong>Anulado: {% if protocolo.anulado %} <font color="red"> Sim {% else %} <font color="green"> Não {% endif %} </font></strong>
<br /><br /> <br /><br />
<strong>Documento Vinculado:</strong> <strong>Documentos Vinculados:</strong>
<br/>
{% if protocolo.tipo_documento %} {% if protocolo.tipo_documento %}
{% if documento %} {% if documentos %}
<a href="{% url 'sapl.protocoloadm:documentoadministrativo_detail' documento.pk %}">{{documento.tipo}} - {{documento.numero}}/{{documento.ano}}</a> {% for documento in documentos %}
</br> &nbsp;&nbsp;&nbsp;&nbsp;
<a href="{% url 'sapl.protocoloadm:documentoadministrativo_detail' documento.pk %}">{{documento.tipo}} - {{documento.numero}}/{{documento.ano}}</a>
</br>
{% endfor %}
{% else %} {% else %}
<br /> <br />
{% if not protocolo.anulado %} <a href="{% url 'sapl.protocoloadm:criar_documento' protocolo.pk %}" class="btn btn-primary">Criar Documento</a>{% endif %} {% if not protocolo.anulado %} <a href="{% url 'sapl.protocoloadm:criar_documento' protocolo.pk %}" class="btn btn-primary">Criar Documento</a>{% endif %}

Loading…
Cancel
Save