Browse Source

Remove situação de matéria em relatorios sessão (#3241)

pull/3244/head
Vinícius Cantuária 4 years ago
committed by GitHub
parent
commit
8da914361e
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      sapl/sessao/views.py
  2. 3
      sapl/templates/relatorios/blocos_sessao_plenaria/materias_expediente.html
  3. 3
      sapl/templates/relatorios/blocos_sessao_plenaria/materias_ordemdia.html
  4. 18
      sapl/templates/relatorios/relatorio_pauta_sessao.html
  5. 3
      sapl/templates/sessao/blocos_ata/materias_expediente.html
  6. 3
      sapl/templates/sessao/blocos_ata/materias_ordem_dia.html
  7. 5
      sapl/templates/sessao/blocos_resumo/materias_expediente.html
  8. 5
      sapl/templates/sessao/blocos_resumo/materias_ordem_dia.html
  9. 18
      sapl/templates/sessao/pauta_sessao_detail.html

2
sapl/sessao/views.py

@ -226,14 +226,12 @@ def customize_link_materia(context, pk, has_permission, is_expediente):
.select_related("materia", "tramitacao")\ .select_related("materia", "tramitacao")\
.filter(materia=materia)\ .filter(materia=materia)\
.first() .first()
situacao = materia_em_tramitacao.tramitacao.status if materia_em_tramitacao else '-'
title_materia = f"""<a id={obj.materia.id} href={url_materia}>{row[1][0]}</a></br> title_materia = f"""<a id={obj.materia.id} href={url_materia}>{row[1][0]}</a></br>
<b>Processo:</b> {numeracao}</br> <b>Processo:</b> {numeracao}</br>
<b>Autor:</b> {autor}</br> <b>Autor:</b> {autor}</br>
<b>Protocolo:</b> {num_protocolo}</br> <b>Protocolo:</b> {num_protocolo}</br>
<b>Turno:</b> {turno}</br> <b>Turno:</b> {turno}</br>
<b>Situação:</b> {situacao}</br>
""" """
# Na linha abaixo, o segundo argumento é None para não colocar # Na linha abaixo, o segundo argumento é None para não colocar
# url em toda a string de title_materia # url em toda a string de title_materia

3
sapl/templates/relatorios/blocos_sessao_plenaria/materias_expediente.html

@ -18,9 +18,6 @@
<dt><b>{{materia.num_ordem}} -</b> {{materia.id_materia}}</dt> <dt><b>{{materia.num_ordem}} -</b> {{materia.id_materia}}</dt>
<dt style="text-align: left;"><b>Turno:</b> {{materia.des_turno}}</dt> <dt style="text-align: left;"><b>Turno:</b> {{materia.des_turno}}</dt>
<dt style="text-align: left;"><b>{{materia.num_autores}}: </b>{{materia.nom_autor}}</dt> <dt style="text-align: left;"><b>{{materia.num_autores}}: </b>{{materia.nom_autor}}</dt>
{% if materia.situacao %}
<dt style="text-align: left;"><b>Situação: </b>{{materia.situacao}}</dt>
{% endif %}
</dl> </dl>
</td> </td>
<td style="width:60%"><div style="margin:10px">{{materia.txt_ementa}}<br>{{materia.ordem_observacao}}</div></td> <td style="width:60%"><div style="margin:10px">{{materia.txt_ementa}}<br>{{materia.ordem_observacao}}</div></td>

3
sapl/templates/relatorios/blocos_sessao_plenaria/materias_ordemdia.html

@ -16,9 +16,6 @@
<dt><b>{{materia.num_ordem}} -</b> {{materia.id_materia}}</dt> <dt><b>{{materia.num_ordem}} -</b> {{materia.id_materia}}</dt>
<dt style="text-align: left;"><b>Turno:</b> {{materia.des_turno}}</dt> <dt style="text-align: left;"><b>Turno:</b> {{materia.des_turno}}</dt>
<dt style="text-align: left;"><b>{{materia.num_autores}}: </b>{{materia.nom_autor}}</dt> <dt style="text-align: left;"><b>{{materia.num_autores}}: </b>{{materia.nom_autor}}</dt>
{% if materia.situacao %}
<dt style="text-align: left;"><b>Situação: </b>{{materia.situacao}}</dt>
{% endif %}
</dl> </dl>
</td> </td>
<td style="width:60%">{{materia.txt_ementa}} <br>{{materia.ordem_observacao}}</td> <td style="width:60%">{{materia.txt_ementa}} <br>{{materia.ordem_observacao}}</td>

18
sapl/templates/relatorios/relatorio_pauta_sessao.html

@ -16,20 +16,17 @@
<h2 class="gray-title">Matérias do Expediente</h2> <h2 class="gray-title">Matérias do Expediente</h2>
{% if materia_expediente %} {% if materia_expediente %}
<table class="grayTable"> <table class="grayTable">
<thead><tr><th>Matéria</th><th>Ementa</th> {% if not object.finalizada %} <th>Situação</th> {% endif %} </tr></thead> <thead><tr><th>Matéria</th><th>Ementa</th></tr></thead>
{% for m in materia_expediente %} {% for m in materia_expediente %}
<tr> <tr>
<td style="width:20%;"> <td style="width:25%;">
{{ m.numero }} - {{ m.titulo }}<br /> {{ m.numero }} - {{ m.titulo }}<br />
<b>Processo</b>: {{ m.processo }}<br/> <b>Processo</b>: {{ m.processo }}<br/>
<b>Autor{{ m.autor|length|pluralize:"es" }}</b>: {{ m.autor|join:', ' }} <b>Autor{{ m.autor|length|pluralize:"es" }}</b>: {{ m.autor|join:', ' }}
</td> </td>
<td style="width:60%;"> <td style="width:75%;">
{{ m.ementa|safe }}<br>{{ m.observacao|linebreaksbr|safe }} {{ m.ementa|safe }}<br>{{ m.observacao|linebreaksbr|safe }}
</td> </td>
{% if not object.finalizada %}
<td style="width:20%;">{{m.situacao|linebreaksbr|safe}}</td>
{% endif %}
</tr> </tr>
{% endfor %} {% endfor %}
</table> </table>
@ -39,18 +36,15 @@
<h2 class="gray-title">Matérias da Ordem do Dia</h2> <h2 class="gray-title">Matérias da Ordem do Dia</h2>
{% if materias_ordem %} {% if materias_ordem %}
<table class="grayTable"> <table class="grayTable">
<thead><tr><th>Matéria</th><th>Ementa</th> {% if not object.finalizada %} <th>Situação</th> {% endif %} </tr></thead> <thead><tr><th>Matéria</th><th>Ementa</th></tr></thead>
{% for m in materias_ordem %} {% for m in materias_ordem %}
<tr> <tr>
<td style="width:20%;"> <td style="width:25%;">
{{m.numero}} - <b>{{m.titulo}}</b><br /> {{m.numero}} - <b>{{m.titulo}}</b><br />
<b>Processo</b>: {{ m.processo }}<br/> <b>Processo</b>: {{ m.processo }}<br/>
<b>Autor{{ m.autor|length|pluralize:"es" }}</b>: {{ m.autor|join:', ' }} <b>Autor{{ m.autor|length|pluralize:"es" }}</b>: {{ m.autor|join:', ' }}
</td> </td>
<td style="width:60%;">{{m.ementa|safe}}<br>{{m.observacao|linebreaksbr|safe}}</td> <td style="width:75%;">{{m.ementa|safe}}<br>{{m.observacao|linebreaksbr|safe}}</td>
{% if not object.finalizada %}
<td style="width:20%;">{{m.situacao|linebreaksbr|safe}}</td>
{% endif %}
</tr> </tr>
{% endfor %} {% endfor %}
</table> </table>

3
sapl/templates/sessao/blocos_ata/materias_expediente.html

@ -15,9 +15,6 @@
{% if m.turno %} {% if m.turno %}
Turno: {{m.turno}}, Turno: {{m.turno}},
{% endif %} {% endif %}
{% if m.situacao %}
Situação: {{m.situacao}},
{% endif %}
{% if m.tipo_votacao %} {% if m.tipo_votacao %}
Tipo: {{m.tipo_votacao}}, Tipo: {{m.tipo_votacao}},
Sim: {{ m.voto_sim }}, Sim: {{ m.voto_sim }},

3
sapl/templates/sessao/blocos_ata/materias_ordem_dia.html

@ -15,9 +15,6 @@
{% if m.turno %} {% if m.turno %}
Turno: {{m.turno}}, Turno: {{m.turno}},
{% endif %} {% endif %}
{% if m.situacao %}
Situação: {{m.situacao}},
{% endif %}
{% if m.tipo_votacao %} {% if m.tipo_votacao %}
Tipo: {{m.tipo_votacao}}, Tipo: {{m.tipo_votacao}},
Sim: {{ m.voto_sim }}, Sim: {{ m.voto_sim }},

5
sapl/templates/sessao/blocos_resumo/materias_expediente.html

@ -34,11 +34,6 @@
<br /> <br />
<b>Processo:</b> {{ m.numero_processo }} <b>Processo:</b> {{ m.numero_processo }}
{% endif %} {% endif %}
{% if m.situacao %}
<br />
<b>Situação:</b> {{ m.situacao }}
{% endif %}
</td> </td>
<td> <td>
{{m.ementa|dont_break_out}}<br/> {{m.ementa|dont_break_out}}<br/>

5
sapl/templates/sessao/blocos_resumo/materias_ordem_dia.html

@ -35,11 +35,6 @@
<br /> <br />
<b>Processo:</b> {{ m.numero_processo }} <b>Processo:</b> {{ m.numero_processo }}
{% endif %} {% endif %}
{% if m.situacao %}
<br />
<b>Situação:</b> {{ m.situacao }}
{% endif %}
</td> </td>
<td>{{m.ementa|dont_break_out}}</b><br/>{{m.observacao|dont_break_out}}</td> <td>{{m.ementa|dont_break_out}}</b><br/>{{m.observacao|dont_break_out}}</td>
<td><b>{{m.resultado}}</b><br/>{{m.resultado_observacao}}</td> <td><b>{{m.resultado}}</b><br/>{{m.resultado_observacao}}</td>

18
sapl/templates/sessao/pauta_sessao_detail.html

@ -38,19 +38,16 @@
<legend>Matérias do Expediente</legend> <legend>Matérias do Expediente</legend>
{% if materia_expediente %} {% if materia_expediente %}
<table class="table table-striped"> <table class="table table-striped">
<thead><tr><th>Matéria</th><th>Ementa</th> {% if not object.finalizada %} <th>Situação</th> {% endif %} </tr></thead> <thead><tr><th>Matéria</th><th>Ementa</th></tr></thead>
{% for m in materia_expediente %} {% for m in materia_expediente %}
<tr> <tr>
<td style="width:20%;"> <td style="width:25%;">
{{m.numero}} - {{m.numero}} -
<a href="{% url 'sapl.materia:materialegislativa_detail' m.id %}">{{m.titulo}}</a><br/> <a href="{% url 'sapl.materia:materialegislativa_detail' m.id %}">{{m.titulo}}</a><br/>
<b>Processo</b>: {{ m.processo }}<br/> <b>Processo</b>: {{ m.processo }}<br/>
<b>Autor{{ m.autor|length|pluralize:"es" }}</b>: {{ m.autor|join:', ' }} <b>Autor{{ m.autor|length|pluralize:"es" }}</b>: {{ m.autor|join:', ' }}
</td> </td>
<td style="width:60%;">{{m.ementa|safe}}<br>{{m.observacao|linebreaksbr|safe}}</td> <td style="width:75%;">{{m.ementa|safe}}<br>{{m.observacao|linebreaksbr|safe}}</td>
{% if not object.finalizada %}
<td style="width:20%;">{{m.situacao|linebreaksbr|safe}}</td>
{% endif %}
</tr> </tr>
{% endfor %} {% endfor %}
</table> </table>
@ -62,19 +59,16 @@
<legend>Matérias da Ordem do Dia</legend> <legend>Matérias da Ordem do Dia</legend>
{% if materias_ordem %} {% if materias_ordem %}
<table class="table table-striped"> <table class="table table-striped">
<thead><tr><th>Matéria</th><th>Ementa</th> {% if not object.finalizada %} <th>Situação</th> {% endif %} </tr></thead> <thead><tr><th>Matéria</th><th>Ementa</th></tr></thead>
{% for m in materias_ordem %} {% for m in materias_ordem %}
<tr> <tr>
<td style="width:20%;"> <td style="width:25%;">
{{m.numero}} - {{m.numero}} -
<a href="{% url 'sapl.materia:materialegislativa_detail' m.id %}">{{m.titulo}}</a><br/> <a href="{% url 'sapl.materia:materialegislativa_detail' m.id %}">{{m.titulo}}</a><br/>
<b>Processo</b>: {{ m.processo }}<br/> <b>Processo</b>: {{ m.processo }}<br/>
<b>Autor{{ m.autor|length|pluralize:"es" }}</b>: {{ m.autor|join:', ' }} <b>Autor{{ m.autor|length|pluralize:"es" }}</b>: {{ m.autor|join:', ' }}
</td> </td>
<td style="width:60%;">{{m.ementa|safe}}<br>{{m.observacao|linebreaksbr|safe}}</td> <td style="width:75%;">{{m.ementa|safe}}<br>{{m.observacao|linebreaksbr|safe}}</td>
{% if not object.finalizada %}
<td style="width:20%;">{{m.situacao|linebreaksbr|safe}}</td>
{% endif %}
</tr> </tr>
{% endfor %} {% endfor %}
</table> </table>

Loading…
Cancel
Save