Commit e8b2c9e1 by Takatoshi Miura

1.4.0.0_RFID_#44143 RFID(バーコード)メッセージのアラート化

parent d5a12c31
...@@ -42,6 +42,8 @@ CHK.operationGroupMaster; //カテゴリーデータ ...@@ -42,6 +42,8 @@ CHK.operationGroupMaster; //カテゴリーデータ
CHK.operationGroupMasterRelation; //作業・カテゴリー関係データ CHK.operationGroupMasterRelation; //作業・カテゴリー関係データ
CHK.pushMessage; //コミュニケーションデータ CHK.pushMessage; //コミュニケーションデータ
var scanResultCode; //スキャンしたRFID,バーコード
var pageLang; // ページ設定言語 var pageLang; // ページ設定言語
var isSetCategory = true var isSetCategory = true
var CATEGORY_HEIGHT; //カテゴリー描画用固定値(高さ) var CATEGORY_HEIGHT; //カテゴリー描画用固定値(高さ)
...@@ -60,8 +62,7 @@ var msgMap = { // velocity? ...@@ -60,8 +62,7 @@ var msgMap = { // velocity?
completeUpload: {ja:"登録が完了しました。<br/>右上の閉じるボタンをクリックし、画面を閉じてください。", ko:"등록했습니다. <br/>오른쪽 위의 닫기버튼을 클릭해, 화면을 닫아주세요.", en:"Registered. <br/>Please click the close button in the upper right and close the screen."}, completeUpload: {ja:"登録が完了しました。<br/>右上の閉じるボタンをクリックし、画面を閉じてください。", ko:"등록했습니다. <br/>오른쪽 위의 닫기버튼을 클릭해, 화면을 닫아주세요.", en:"Registered. <br/>Please click the close button in the upper right and close the screen."},
Yes: {ja:"はい", ko:"Yes", en:"Yes"}, Yes: {ja:"はい", ko:"Yes", en:"Yes"},
No: {ja:"いいえ", ko:"No", en:"No"}, No: {ja:"いいえ", ko:"No", en:"No"},
onlyRfid:{ja:"RFID又はバーコードが設定されています。<br/>該当コードを読み込んでください。", ko:"RFID또는 바코드가 설정되어있습니다. <br/>해당코드를 스캔해주십시오.", en:"RFID or barcode is set. <br/>Please scan the code."}, onlyRfid:{ja:"RFID又はバーコードが設定されています。\n該当コードを読み込んでください。", ko:"RFID또는 바코드가 설정되어있습니다.\n해당코드를 스캔해주십시오.", en:"RFID or barcode is set.\nPlease scan the code."},
notExistCode:{ja:"読み込んだコードと一致しません。<br/>コードを確認してもう一度お願いします。<br/>", ko:"스캔된코드와 일치하는 작업이 존재하지않습니다. <br/>코드를 확인하고 한번도 시도해주세요. <br/>", en:"No action exists that matches the scanned code. <br/>Please check the code and try it once. <br/>"},
overwriteCheck: {ja:"未公開のバージョンの簡易帳票が存在します。<br/>上書きしますか?", ko:"미공개 버전의 간이 서류가 존재합니다. <br/>덮어 쓰시겠습니까?", en:"There is an unpublished version of the quick report. <br/>Do you want to overwrite?"}, overwriteCheck: {ja:"未公開のバージョンの簡易帳票が存在します。<br/>上書きしますか?", ko:"미공개 버전의 간이 서류가 존재합니다. <br/>덮어 쓰시겠습니까?", en:"There is an unpublished version of the quick report. <br/>Do you want to overwrite?"},
}; };
...@@ -83,9 +84,9 @@ function getLang() { ...@@ -83,9 +84,9 @@ function getLang() {
return pageLang; return pageLang;
} }
// メッセージを取得 // 言語コードをセット
function getMsg(key) { function setLangCode() {
lang = getLang(); lang = getLang();
if (lang.split("-")[0] == "ja") { if (lang.split("-")[0] == "ja") {
lang = "ja"; lang = "ja";
} else if (lang.split("-")[0] == "ko") { } else if (lang.split("-")[0] == "ko") {
...@@ -93,6 +94,12 @@ function getMsg(key) { ...@@ -93,6 +94,12 @@ function getMsg(key) {
} else { } else {
lang = "en"; lang = "en";
} }
}
// メッセージを取得
function getMsg(key) {
setLangCode();
var msg = msgMap[key]; var msg = msgMap[key];
if (!msg) { if (!msg) {
return ""; return "";
...@@ -3066,6 +3073,7 @@ document.addEventListener('visibilitychange', () => { ...@@ -3066,6 +3073,7 @@ document.addEventListener('visibilitychange', () => {
}); });
CHK.scanResult = function(scannedCode, scanType) { CHK.scanResult = function(scannedCode, scanType) {
scanResultCode = scannedCode;
if (scannedCode == null || !(scannedCode.length)) { if (scannedCode == null || !(scannedCode.length)) {
return; return;
} }
...@@ -3101,9 +3109,15 @@ CHK.alertClose = function() { ...@@ -3101,9 +3109,15 @@ CHK.alertClose = function() {
} }
CHK.displayAlert = function(msgCode) { CHK.displayAlert = function(msgCode) {
$("#alertMsg").html(getMsg(msgCode)); if (msgCode == "notExistCode") {
$(".alert-overlay").removeClass("d-none"); // scanResultCodeを代入するため別で処理
$(".alert-area").removeClass("d-none"); setLangCode();
var notExistCodeMessage = {ja:"読み込んだコードと一致しません。\n\n読み込んだコード:" + scanResultCode + "\n\nコードを確認してもう一度お願いします。", ko:"스캔된코드와 일치하는 작업이 존재하지않습니다.\n\n스캔 한 코드: " + scanResultCode + "\n\n코드를 확인하고 한번도 시도해주세요.", en:"No action exists that matches the scanned code.\n\nScanned code: " + scanResultCode + "\n\nPlease check the code and try it once."};
var msg = notExistCodeMessage[lang];
alert(msg);
} else {
alert(getMsg(msgCode));
}
} }
CHK.resetSearch = function() { CHK.resetSearch = function() {
......
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