Edward
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
19 additions and
3 deletions
-
sapl/protocoloadm/views.py
-
sapl/templates/protocoloadm/comprovante.html
|
|
@ -700,6 +700,13 @@ class ComprovanteProtocoloView(PermissionRequiredMixin, TemplateView): |
|
|
|
autenticacao = str(protocolo.tipo_processo) + \ |
|
|
|
data + str(protocolo.numero).zfill(6) |
|
|
|
|
|
|
|
if protocolo.tipo_materia: |
|
|
|
materia = MateriaLegislativa.objects.filter( |
|
|
|
numero_protocolo=protocolo.numero, |
|
|
|
ano=protocolo.ano).first() |
|
|
|
if materia: |
|
|
|
context['materia'] = materia.numero |
|
|
|
|
|
|
|
context.update({"protocolo": protocolo, |
|
|
|
"barcode": barcode, |
|
|
|
"autenticacao": autenticacao}) |
|
|
|
|
|
@ -18,6 +18,9 @@ |
|
|
|
.hide-print { |
|
|
|
display : none; |
|
|
|
} |
|
|
|
.downsize { |
|
|
|
font-size: 12px; |
|
|
|
} |
|
|
|
} |
|
|
|
@page { |
|
|
|
size: auto; /* auto is the initial value */ |
|
|
@ -74,7 +77,7 @@ |
|
|
|
{% if protocolo.tipo_processo == 1 %} |
|
|
|
<tr> |
|
|
|
<th>Ementa</th> |
|
|
|
<td>{{ protocolo.assunto_ementa }}</td> |
|
|
|
<td class="downsize">{{ protocolo.assunto_ementa }}</td> |
|
|
|
</tr> |
|
|
|
<tr> |
|
|
|
<th>Autor</th> |
|
|
@ -102,10 +105,16 @@ |
|
|
|
</tr> |
|
|
|
<tr> |
|
|
|
<th>Número Páginas</th> |
|
|
|
<td>{{ protocolo.numero_paginas }}</td> |
|
|
|
<td>{{ protocolo.numero_paginas|default_if_none:"0" }}</td> |
|
|
|
</tr> |
|
|
|
{% if materia %} |
|
|
|
<tr> |
|
|
|
<th>Número da Matéria</th> |
|
|
|
<td>{{ materia }}</td> |
|
|
|
</tr> |
|
|
|
{% endif %} |
|
|
|
<tr> |
|
|
|
<th>Comprovante emitido por</th> |
|
|
|
<th>Emitido por</th> |
|
|
|
<td>{{ request.user.username }}</td> |
|
|
|
</tr> |
|
|
|
</table> |
|
|
|