Commit 594f5980 by Lee JaeWon

jsファイル戻し

parent 7218f2c2
...@@ -24,28 +24,6 @@ CHK_L.init = function() { ...@@ -24,28 +24,6 @@ CHK_L.init = function() {
} }
var urlParam = CHK.getUrlParameter(); var urlParam = CHK.getUrlParameter();
if (CHK.isAndroid || CHK.isIOS || CHK.isWindows) {
var relatedOperation;
if (CHK.isAndroid) {
relatedOperation = JSON.parse(android.getOperation()).operationList[0];
} else if (CHK.isIOS) {
relatedOperation = CHK_iOS.getOperationListJson().operationList[0];
} else if (CHK.isWindows) {
CHK.loadJson(CHK.jsonPath.operation, function(operation) {
relatedOperation = operation;
});
}
if (CHK.isWindows) {
var yyyyMMddStartDate = relatedOperation.operationStartDate;
var yyyyMMddEndDate = relatedOperation.operationEndDate;
$("#operationStartDate").html(yyyyMMddStartDate.substring(1,12));
$("#operationEndDate").html(yyyyMMddEndDate.substring(1,12));
} else {
$("#operationStartDate").html(relatedOperation.operationStartDate);
$("#operationEndDate").html(relatedOperation.operationEndDate);
}
$("#contentType").html(relatedOperation.operationName);
}
if (CHK.reportType == CHK.REPORT_TYPE.INSPECT) { if (CHK.reportType == CHK.REPORT_TYPE.INSPECT) {
// 簡易帳票・改行改列の定期点検 // 簡易帳票・改行改列の定期点検
if (isQRTableInspect != 0) { if (isQRTableInspect != 0) {
......
...@@ -29,7 +29,6 @@ CHK.questionApertureList; //絞り検索グループ ...@@ -29,7 +29,6 @@ CHK.questionApertureList; //絞り検索グループ
CHK.groupTreeInfo; //担当グループ参照用 ログインユーザーが所属しているグループ情報 CHK.groupTreeInfo; //担当グループ参照用 ログインユーザーが所属しているグループ情報
CHK.operationGroup; //担当グループ参照用 作業の報告担当グループ情報 CHK.operationGroup; //担当グループ参照用 作業の報告担当グループ情報
CHK.operation; //作業情報
// PDFプロジェクト対応 // PDFプロジェクト対応
CHK.pdf_numPages; CHK.pdf_numPages;
...@@ -128,8 +127,7 @@ CHK.jsonPath = { ...@@ -128,8 +127,7 @@ CHK.jsonPath = {
operationList: "operationList.json", // 作業一覧JSONデータ operationList: "operationList.json", // 作業一覧JSONデータ
operationGroupMasterList: "operationGroupMasterList.json", // カテゴリーJSONデータ operationGroupMasterList: "operationGroupMasterList.json", // カテゴリーJSONデータ
operationGroupMasterRelationList: "operationGroupMasterRelationList.json", // 作業・カテゴリー関係JSONデータ operationGroupMasterRelationList: "operationGroupMasterRelationList.json", // 作業・カテゴリー関係JSONデータ
pushMessageList: "pushMessageList.json", // コミュニケーションデータJSONデータ pushMessageList: "pushMessageList.json" // コミュニケーションデータJSONデータ
operation: "operation.json" //作業情報
}; };
//アプリ送信用コマンド //アプリ送信用コマンド
CHK.apiCmd = { CHK.apiCmd = {
......
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