Fixed item_qty

This commit is contained in:
Christian Anetzberger
2022-04-04 20:10:16 +02:00
parent 47b4c5d49b
commit c941ddfed8

View File

@@ -36,11 +36,11 @@ def print_label(values):
doc.qty = label["item_qty"] doc.qty = label["item_qty"]
if "information" in label: if "information" in label:
doc.information = label["information"] doc.information = label["information"]
newdoc = doc.insert() newdoc = doc.insert()
# TODO comment in print_label_by_server(
# print_label_by_server( "Label", newdoc.name, label["label_qty"], printer_setting[0], print_format, doc=None, no_letterhead=0, file_path=None)
# "Label", newdoc.name, label["label_qty"], printer_setting[0], print_format, doc=None, no_letterhead=0, file_path=None)
return 200 return 200