Commit e99689a9 by Lee Munkyeong

RFID修正及びいらないインポート削除

parent 07de49e3
......@@ -181,7 +181,6 @@
<div class="fs-13 mt-4 text-center" id="alertMsg"></div>
</div>
<script type="text/javascript" src="js/app.js" defer></script>
<script type="text/javascript" src="js/bootstrap-datetimepicker.min.js" defer></script>
</body>
</html>
\ No newline at end of file
......@@ -3053,7 +3053,11 @@ CHK.scanResult = function(scannedCode, scanType) {
CHK.scanClose();
var operationList = CHK.operation.searchOperationList;
var scannedOperation = operationList.filter(function(operation) {
return operation.permitCode == scannedCode.substring(4);
var resultCode = scannedCode;
if (scanType == 1) {
resultCode = scannedCode.substring(4);
}
return operation.permitCode == resultCode;
})[0];
if (scannedOperation != null) {
CHK.sendScanResult('goOperation', scannedOperation.operationId, scannedOperation.contentId, scanType);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment