Aggiunto supporto a barcode I2O5 in ZebraBarcodeReader

This commit is contained in:
2023-06-13 13:00:28 +02:00
parent 1a964d7a97
commit 3e68dd2d36
3 changed files with 14 additions and 6 deletions

View File

@@ -42,6 +42,8 @@ public class ZebraBarcodeReader implements BarcodeReaderInterface {
return true;
} else if (model.equalsIgnoreCase("TC20")) {
return true;
} else if (model.equalsIgnoreCase("MBA5")) {
return true;
} else return false;
}

View File

@@ -17,6 +17,12 @@ public class ZebraBarcodeTypeMapper {
case "LABEL-TYPE-CODE39":
return BarcodeType.CODE39;
case "LABEL-TYPE-IATA2OF5":
return BarcodeType.IATA_2OF5;
case "LABEL-TYPE-I2OF5":
return BarcodeType.INTERLEAVED_2OF5;
case "LABEL-TYPE-EAN13":
return BarcodeType.EAN13;
case "LABEL-TYPE-EAN8":