function ticketScan() {
cordova.plugins.barcodeScanner.scan(
function (result) {
if (result.format=='QR_CODE') {
if (result.text) {
$$.get(getTokenUrl(result.text), function (data, status, xhr) {
data = JSON.parse(data);
if (data.mess) myApp.alert(data.mess);
if (data.notice) setNotice(data.notice);
if (data.html) {
//
}
});
} else {
myApp.alert('Нет результата сканирования!');
}
} else {
myApp.alert('QR-код не найден!');
}
},
function (error) {
myApp.alert("Ошибка сканирования: " + error);
}
);
}