From 7b2e3914749a9ff819f5cac29bb5b7f65336ab2e Mon Sep 17 00:00:00 2001 From: Edward Ribeiro Date: Tue, 19 Dec 2017 16:57:26 -0200 Subject: [PATCH] =?UTF-8?q?HOT-FIX:=20diminui=20o=20tamanho=20para=20acele?= =?UTF-8?q?rar=20renderiza=C3=A7=C3=A3o=20do=20barcode?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sapl/materia/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sapl/materia/views.py b/sapl/materia/views.py index 4f2e35b59..a6d11235e 100644 --- a/sapl/materia/views.py +++ b/sapl/materia/views.py @@ -827,7 +827,7 @@ class ReciboProposicaoView(TemplateView): _hash = 'P' + ta.hash() + '/' + str(proposicao.id) from sapl.utils import create_barcode - base64_data = create_barcode(_hash, 100, 2000) + base64_data = create_barcode(_hash, 100, 200) barcode = 'data:image/png;base64,{0}'.format(base64_data)