Prima implementazione del barcode reader in vendita

This commit is contained in:
2018-11-28 16:20:26 +01:00
parent f41e56d0df
commit a1b31b4a37
24 changed files with 1124 additions and 57 deletions

View File

@@ -75,6 +75,9 @@ public class PointMobileBarcodeReader implements BarcodeReaderInterface {
if (mOnScanSuccessfull != null) {
try {
if(mDecodeResult.symName.equalsIgnoreCase("READ_FAIL")){
throw new Exception("Barcode non riconosciuto");
}
BarcodeScanDTO barcodeScanDTO = new BarcodeScanDTO()
.setByteValue(mDecodeResult.decodeValue)