dibbler/text_interface/printermenu.py

27 lines
890 B
Python
Raw Normal View History

2017-03-25 16:59:47 +01:00
from db import Product, User
from printer_helpers import print_bar_code, print_name_label
2017-03-22 18:02:11 +01:00
from text_interface.helpermenus import Menu
import conf
class PrintLabelMenu(Menu):
def __init__(self):
2017-03-25 17:02:29 +01:00
Menu.__init__(self, 'Print a label', uses_db=True)
2017-03-22 18:02:11 +01:00
self.help_text = '''
Prints out a product bar code on the printer
Put it up somewhere in the vicinity.
'''
def _execute(self):
self.print_header()
2017-03-25 16:59:47 +01:00
thing = self.input_thing('Prodct/User> ')
if isinstance(thing, Product):
print_bar_code(thing.bar_code, thing.name, barcode_type="ean13", rotate=conf.label_rotate,
printer_type="QL-700", label_type=conf.label_type)
elif isinstance(thing, User):
print_name_label(text=thing.name, label_type=conf.label_type, rotate=conf.label_rotate,
printer_type="QL-700")