From 7566b9d4257ef7397c2ee07ee66ca5669bb9cd5d Mon Sep 17 00:00:00 2001 From: kevin wang Date: Mon, 22 Dec 2014 17:07:49 +0800 Subject: [PATCH] [FIX] report barcode cast humanreadable --- addons/report/controllers/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/report/controllers/main.py b/addons/report/controllers/main.py index 4c6b4a9f7cf..56236990316 100644 --- a/addons/report/controllers/main.py +++ b/addons/report/controllers/main.py @@ -86,7 +86,7 @@ class ReportController(Controller): at the bottom of the output image """ try: - width, height = int(width), int(height) + width, height, humanreadable = int(width), int(height), bool(humanreadable) barcode = createBarcodeDrawing( type, value=value, format='png', width=width, height=height, humanReadable = humanreadable