diff --git a/addons/report/controllers/main.py b/addons/report/controllers/main.py index 1fcdd7c4ad3..d0b2c334455 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: - barcode = request.registry['report'].barcode(type, value, width=width, height=height, humanreadable=humanreadable) + barcode = request.registry['report'].barcode(type, value, width=width, height=height, humanreadable=humanreadable, quiet=0) except (ValueError, AttributeError): raise exceptions.HTTPException(description='Cannot convert into barcode.')