diff --git a/client-barcode/freitagskasse.py b/client-barcode/freitagskasse.py index f0990da..9a6cebc 100644 --- a/client-barcode/freitagskasse.py +++ b/client-barcode/freitagskasse.py @@ -122,12 +122,12 @@ def item_info_page(item): print('und kostet') print() if item.deposit > 0: - myDisplay.display_screen("PREISINFO","%s: %4.2f Euro (%4.2f Euro Pfand)" % (item.name,item.price,item.deposit)) + myDisplay.display_screen("PREISINFO","%s: %4.2f Euro (%4.2f Euro Pfand)" % (asciify(item.name), item.price, item.deposit)) print(indent + '%s%4.2f Euro%s + %4.2f Euro Pfand = %s%4.2f Euro%s .' \ % (COLOR_SOME, item.price, COLOR_RESET, item.deposit, COLOR_MUCH, item.price + item.deposit, COLOR_RESET)) else: - myDisplay.display_screen("PREISINFO","%s: %4.2f Euro" % (item.name,item.price)) + myDisplay.display_screen("PREISINFO","%s: %4.2f Euro" % (asciify(item.name), item.price)) print(indent + '%s%4.2f Euro%s .' \ % (COLOR_MUCH, item.price, COLOR_RESET)) print()