From 4cf795b88078c82cfc171bf56d7ead1736ad2af9 Mon Sep 17 00:00:00 2001 From: Edward Ribeiro Date: Thu, 20 Sep 2018 15:05:07 -0300 Subject: [PATCH] =?UTF-8?q?HOT-FIX:=20materializa=20string=20em=20relat?= =?UTF-8?q?=C3=B3rio?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sapl/relatorios/templates/pdf_pauta_sessao_gerar.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sapl/relatorios/templates/pdf_pauta_sessao_gerar.py b/sapl/relatorios/templates/pdf_pauta_sessao_gerar.py index 621b8fb75..31636401e 100755 --- a/sapl/relatorios/templates/pdf_pauta_sessao_gerar.py +++ b/sapl/relatorios/templates/pdf_pauta_sessao_gerar.py @@ -145,10 +145,10 @@ def votacao(lst_votacao): tmp += '\n' tmp += 'MatériaEmentaSituação\n' for votacao in lst_votacao: - tmp += '' + str(votacao['num_ordem']) + ' - ' + votacao['id_materia'] + '\n' + 'Processo: ' + votacao[ - 'des_numeracao'] + '\n' + 'Turno: ' + votacao['des_turno'] + '\n' + 'Autor: ' + votacao['nom_autor'] + '\n' + tmp += '' + str(votacao['num_ordem']) + ' - ' + str(votacao['id_materia']) + '\n' + 'Processo: ' + str(votacao[ + 'des_numeracao']) + '\n' + 'Turno: ' + str(votacao['des_turno']) + '\n' + 'Autor: ' + str(votacao['nom_autor']) + '\n' tmp += '' + \ - votacao['txt_ementa'] + '\n' + str(votacao['txt_ementa']) + '\n' tmp += '' + \ str(votacao['des_situacao']) + '\n'