fixes in inventory sticker
This commit is contained in:
parent
7d863c7040
commit
4daf424b06
@ -441,6 +441,8 @@ class InventorySticker(inkex.Effect):
|
||||
|
||||
with open(inventoryCSV, 'r', encoding="utf-8") as csv_file:
|
||||
csv_reader = csv.reader(csv_file, delimiter=",")
|
||||
|
||||
totalOutputs = 0
|
||||
for row in csv_reader:
|
||||
internal_id = row[0]
|
||||
doc_title = row[1]
|
||||
@ -449,10 +451,11 @@ class InventorySticker(inkex.Effect):
|
||||
zone = row[4]
|
||||
|
||||
if sticker_ids is None or sticker_id in sticker_ids:
|
||||
totalOutputs += 1
|
||||
#create new sub directories for each non-existent FabLab zone (if flat export is disabled)
|
||||
if self.options.flat_export == False:
|
||||
if not zone:
|
||||
zoneDir = os.path.join(inventoryCSVParent, "Keinem Bereich zugeordnet")
|
||||
zoneDir = os.path.join(inventoryCSVParent, get_valid_filename("Keinem Bereich zugeordnet"))
|
||||
else:
|
||||
zoneDir = os.path.join(inventoryCSVParent, get_valid_filename(zone)) #remove invalid charaters from zone
|
||||
if not os.path.exists(zoneDir):
|
||||
@ -588,7 +591,12 @@ class InventorySticker(inkex.Effect):
|
||||
stdout, stderr = p.communicate()
|
||||
p.wait()
|
||||
if p.returncode != 0:
|
||||
inkex.errormsg("brother_ql returned: %d %s %s" % (p.returncode, stdout, stderr))
|
||||
std_out = stdout.decode('utf-8')
|
||||
std_err = stderr.decode('utf-8')
|
||||
if std_err.endswith("ValueError: Device not found\n") is True:
|
||||
self.msg("Printer device not found or offline. Check for power, cables and entered printer interface ID")
|
||||
else:
|
||||
inkex.errormsg("brother_ql returned errors:\nError code {:d}\n{}\n{}".format(p.returncode, std_out, std_err))
|
||||
|
||||
if self.options.export_svg != True: #If user selected PNG only we need to remove SVG again
|
||||
os.remove(export_file_path + ".svg")
|
||||
@ -597,6 +605,8 @@ class InventorySticker(inkex.Effect):
|
||||
else: #create preview by just breaking the for loop without executing remove(stickerGroup)
|
||||
break
|
||||
csv_file.close()
|
||||
if totalOutputs == 0:
|
||||
self.msg("No output was generated. Check if your entered IDs are valid!")
|
||||
except Exception as e:
|
||||
inkex.errormsg(e)
|
||||
#inkex.errormsg("Wrong inventory.csv URL or invalid credentials for Basic Auth")
|
||||
|
Reference in New Issue
Block a user