check-list.js 16.4 KB
Newer Older
Yujin Seo committed
1 2 3 4 5 6 7 8
// 名前空間
var CHK_L = {};

/**
 * 初期処理
 *
 */
CHK_L.init = function() {
9
	console.log("CHK_L.init design");
Yujin Seo committed
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
	CHK.useKrpano = false;
	CHK.operationType = CHK.OPERATION_TYPE.LIST;

	//ファンクション登録
	CHK.getSaveHotspotParam = CHK_L.getSaveHotspotParam;
	CHK.afterUpdateReport = CHK_L.afterUpdateReport;
	CHK.afterCancelTask = CHK_L.afterCancelTask;
	CHK.afterDeleteReport = CHK_L.afterDeleteReport;
	// 共通初期表示処理
	CHK.initCommon();
	// リストの場合、フォーム表示を全画面表示とする
	$("#checkInput").css("width", "calc(100% - 0px)");

	if (CHK.isMobile == 1) {
		CHK_L.setMobileDisplay();
	}

	var urlParam = CHK.getUrlParameter();
	if (CHK.reportType == CHK.REPORT_TYPE.INSPECT) {
		//	簡易帳票・改行改列の定期点検
		if (isQRTableInspect != 0) {
			$("#editHeader").hide();
			//	基本領域選択肢の作成
			$(".addition_list").empty();

			for (var i = 0; i < qrParentSelectData.length; i += 3) {
				var selectId = qrParentSelectData;
				var listLi = $("<li></li>", {
					id: "list_" + qrParentSelectData[i],
					class: "check"
				});

				var taskInfo = $("<div/>", {class: "taskInfoDiv"});
				var codeAndExpiration = $("<ul/>", {class: "codeAndExpiration"});

				codeAndExpiration.append($("<li/>", {class: "code"}).text(qrParentSelectData[i + 1]));
				taskInfo.append(codeAndExpiration);

				taskInfo.append($("<p/>").text(qrParentSelectData[i + 2]));

				listLi.append(taskInfo);
				listLi.append($("<p/>", {"style": "float: right; margin: auto; opacity: 0.2; font-size: 5em; width: 75px; text-align: right;"}).text(">"));

				listLi.css("cursor", "pointer");
				listLi.on("click", function() {
					qrSelectCID = $(this).attr('id').substr(5);

					$("#editHeader").show();
					$(".addition").hide();
					$("#checkListSearch").empty();
					$(".updateInspect").show();
					$("#contentType").text(getMsg("inspectList"));
					$(".totalDivPoint").text(getMsg("inspect_totalDivPoint"))

					//作業報告ロード
					if (CHK.isWeb) {
						$("#headerNav").show();
						CHK_I.initInspectWeb(function() {
							CHK_L.initInspect();
						});
						$(".updateInspect").attr("onclick", "CHK_L.updateInspectForWeb()");
					} else {
						CHK_I.initInspect(function() {
							CHK_L.initInspect();
						});
					}
				});

				$(".addition_list").append(listLi);
			}
		}
		//	定期点検プロジェクト
		else {
			$("#editHeader").show();
			$(".addition").hide();
			$("#checkListSearch").empty();
			$(".updateInspect").show();
			$("#contentType").text(getMsg("inspectList"));
			$(".totalDivPoint").text(getMsg("inspect_totalDivPoint"))

//			$("#editHeader").hide();

			//作業報告ロード
			if (CHK.isWeb) {
				$("#headerNav").show();
				CHK_I.initInspectWeb(function() {
					CHK_L.initInspect();
				});
				$(".updateInspect").attr("onclick", "CHK_L.updateInspectForWeb()");
			} else {
				CHK_I.initInspect(function() {
					CHK_L.initInspect();
				});
			}
		}
	} else {
		//通常プロジェクト
		$("#editHeader").show();
		if (CHK.isWeb) {
			$("#headerNav").show();
		}
		//作業報告ロード
		CHK.initReport(function() {
			CHK_L.initReport();
			if (addReportFlg == CHK.ADD_REPORT_FLG.UNABLE) {
				var taskKey = CHK.taskReport["taskReport_0"].length > 0 ? CHK.taskReport["taskReport_0"][0].taskKey : CHK.generateUuid();
				CHK.showReportForm(null, taskKey);
			}
			// タスク追加権限がない場合、作業追加ボタンを隠す
			if (CHK.hasAddTaskAuthority()) {
				$(".addition").show();
			}
Yujin Seo committed
122 123 124
        });

        CHK_L.sendAppCommand("finishInit");
Yujin Seo committed
125 126 127
        if (CHK.isWindows) {
            CHK.createOperationListBySavedSortType();
        }
Yujin Seo committed
128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241
	}

	if (CHK.isWeb) {
		// OZDビューワのリサイズ処理
		$(window).bind("resize", function() {
			if ($("#report_dialog").is(":visible")) {
				$(".noTitleDialog:visible").width("80%").height(window.innerHeight*0.9).position({my: 'center', at: "center", of: window});
				$("#report_dialog").height($(".noTitleDialog:visible").height() - 100)
			}
		});
	}
}

/**
 * モバイルでの表示対応
 *
 */
CHK_L.setMobileDisplay = function() {
	$("#editHeader").css("padding", "10px");
	$("#editHeader").height("auto");
	var headerDiv = $("<div/>", {class: "headerFormForMobile"});
	var childDiv = $("<div/>", {class: "childDiv"});
	if ($("#editHeader").width() < 300) {
		var secondChildDiv = $("<div/>", {class: "childDiv"});
		childDiv.prepend($("#editHeader #listIcon"), $("#editHeader #contentType").width("100%"));
		secondChildDiv.prepend($("#editHeader .totalDiv").width("100%"), $("#editHeader button.addition").width("45%"));
		headerDiv.prependTo($("#editHeader"));
		headerDiv.prepend(childDiv, secondChildDiv);
	} else {
		childDiv.prepend($("#editHeader").children());
		headerDiv.prependTo($("#editHeader"));
		headerDiv.prepend(childDiv);
		$("#contentType").width("auto");
	}
	$(".childDiv >button.addition").text(getMsg("Add"));
	$(".updateInspect").text(getMsg("Update"));
	$("#checkListSearch").appendTo(headerDiv);
	$("#checkListSearch").css("margin-top", "10px");
	$("#listValues").height("calc(100vh - 182px)");
	$(".childDiv").css("justify-content", "left");
}

/**
 * 作業指示初期処理
 *
 */
//CHK_L.initInstruct = function() {
//	$("#instruct").show();
//	CHK_L.updateList();
//}

/**
 * 作業報告初期処理
 *
 */
CHK_L.initReport = function() {
	$("#report").show();
	CHK_L.updateList();
}

/**
 * 作業報告初期処理(定期点検)
 *
 */
CHK_L.initInspect = function() {
	CHK_L.updateInspect();
}

/**
 * リストを更新
 *
 */
CHK_L.updateList = function() {
	$(".addition_list").empty();
	//シーケンスID順でソート
	CHK.taskHotspot.hotspot.sort(function(a, b) {
		if (Number(a.seqId) < Number(b.seqId)) return -1;
		if (Number(a.seqId) > Number(b.seqId)) return 1;
		return 0;
	});

	// 検索文の英文字と数字を半角、小文字に設定
	var searchWord = CHK.kataToHira(CHK.fullwidthTohalfwidth($("#searchWord").val())).toLowerCase();
	// 作業件数の初期化
	var count = 0;
	// 登録されてある作業がない場合、文言を表示して処理を停止
	if (CHK.taskHotspot.hotspot.length == 0) {
		$("#noWork").show();
		$(".totalDiv em").text(count);
		return;
	}
	else {
		$("#noWork").hide();
	}
	// 作業の表示処理で、検索文がある場合作業名に検索文が含まれてある場合は作業件数に1を追加して表示、ない場合非表示にする
	CHK.taskHotspot.hotspot.forEach(function(hotspot) {
		count += CHK_L.addTask(hotspot.taskKey, searchWord);
	});
	$(".totalDiv em").text(count);
	// 検索で表示作業がない場合、文言を表示する
	if (count == 0) {
		$("#nullValue").show();
	}
	else {
		$("#nullValue").hide();
	}
	// style設定
	if (!CHK.isWeb) {
		$(".codeAndExpiration .code").css("margin-bottom", "10px");
		$(".codeAndExpiration .period").css("font-size", "13px");
		$(".taskInfoDiv p").css("max-width", $(".read").width() + "px");
	}
}

Yujin Seo committed
242 243 244 245
/**
 * アプリにコマンド送信
 * @param {any} command
 */
246
 CHK_L.sendAppCommand = function (command, operationId, contentId, operationGroupMasterId, directPage, backPage, directTaskKey, directPhaseNo ) {
Yujin Seo committed
247
    var param = {};
Yujin Seo committed
248
    param.cmd = CHK.getCommand(command);
Yujin Seo committed
249 250
    param.operationId = operationId;
    param.contentId = contentId;
251
    param.operationGroupMasterId = operationGroupMasterId;
252 253
	param.directPage = directPage;
	param.backPage = backPage;
254
	param.directTaskKey = directTaskKey;
255
	param.directPhaseNo = directPhaseNo;
256
	console.log("CHK_L.sendAppCommand " + JSON.stringify(param));
Yujin Seo committed
257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559
    CHK.sendABookCheckApi(param);
}
/**
 * 定期点検リストを更新
 *
 */
CHK_L.updateInspect = function() {
	$(".addition_list").empty();
	$(".totalDiv em").text(CHK.taskReport.taskReport_0.length);

	//作業開始日時順でソート
	CHK.taskReport["taskReport_0"].sort(function(a, b) {
	    if (CHK.isWeb && isIE()) {
	    	a.reportStartDate = a.reportStartDate.replace(/-/g, '/');
			b.reportStartDate = b.reportStartDate.replace(/-/g, '/');
		}

		var aDate = new Date(a.reportStartDate);
		var bDate = new Date(b.reportStartDate);
		if (Number(aDate.getTime()) < Number(bDate.getTime())) return -1;
		if (Number(aDate.getTime()) > Number(bDate.getTime())) return 1;
		return 0;
	});

	//リスト作成
	var count = 0;

	CHK.taskReport["taskReport_0"].forEach(function(taskReport, idx, ar) {
		var taskKey = null;
		//	簡易帳票・改行改列時
		if (qrSelectCID > 0) {
			//	選択したデータか確認
			taskKey = qrTaskKeyList[qrSelectCID];
			//	削除が行われた直後は、taskReport 内の taskKey が消されているので、taskReportInfoId でチェックする
			if (taskReport.taskReportInfo.length <= 0) {
				if (qrTaskReportInfoIdChoiceIdList[taskReport.taskReportInfoId] != qrSelectCID) {
					return
				}
			}
			//	通常は taskKey でチェック
			else {
				if (taskReport.taskReportInfo[0].taskKey != taskKey) {
					return;
				}
			}
			//	デフォルトの基本領域選択値の設定
			CHK.taskReport.taskReportId = qrTaskReportIdList[qrSelectCID];
		}

		var now = new Date();
	    if (CHK.isWeb && isIE()) {
	    	taskReport.reportStartDate = taskReport.reportStartDate.replace(/-/g, '/');
			taskReport.reportEndDate = taskReport.reportEndDate.replace(/-/g, '/');
		}
		var reportStartDate = new Date(taskReport.reportStartDate);
		var reportEndDate = new Date(taskReport.reportEndDate);
		var startDateStr = taskReport.reportStartDate.replace(/\//g, "").replace(/:/g, "").replace(/ /, "");
		var isReported;
		if (qrSelectCID > 0) {
			isReported = (taskReport.taskReportInfo && (taskReport.taskReportInfo.length > 0) && (Object.keys(taskReport.taskReportInfo[0].task).length > 0));
		}
		else {
			isReported = taskReport.taskReportInfoId || taskReport.task || (taskReport.taskReportInfo && taskReport.taskReportInfo.length > 0);
		}

		var listLi = $("<li></li>", {
			id: "list_" + startDateStr,
			class: isReported ? "check" : "read"
		});
		var taskInfo = $("<div/>", {class: "taskInfoDiv"});
		var codeAndExpiration = $("<ul/>", {class: "codeAndExpiration"});
		codeAndExpiration.append($("<li/>", {class: "code"}).text(getMsg(isReported ? "inspect_check" : "inspect_read")));
		// モバイルの場合、文字列を縦に分けて表示
		if (CHK.isMobile) {
			taskInfo.css("width", "100% - 100px)");
			var period = $("<div/>").text(getMsg("Period") + ":");
			var startDate = $("<div/>").text(CHK_I.getInspectDate(reportStartDate));
			var tilde = $("<div/>").text("~");
			var endDate = $("<div/>").text(CHK_I.getInspectDate(reportEndDate));
			codeAndExpiration.append($("<li/>", {class: "period"}).append(period, startDate, tilde, endDate));
		} else {
			codeAndExpiration.append($("<li/>", {class: "period"}).text(getMsg("Period") + ":" + CHK_I.getInspectDate(reportStartDate) + " ~ " + CHK_I.getInspectDate(reportEndDate)));
		}
		taskInfo.append(codeAndExpiration);
		taskInfo.append($("<p/>"));
		taskInfo.append($("<p/>", {class: "workContent"}));
		listLi.append(taskInfo);
		if (taskKey == null) {
			taskKey = CHK.taskHotspot.hotspot[0].taskKey;
		}

		if (now < reportStartDate) {
			//点検不可のため非表示
			listLi.css("cursor", "default");
			listLi.append($("<p/>", {"style": "float: right; margin: auto; color: #e82e00; font-size: 3em; width: 200px; text-align: right;"}).text(getMsg("unreportable")));
		} else if (CHK_I.enableReport(taskReport.reportStartDate, taskReport.reportEndDate, isReported, taskReport.localSaveFlg)) {
			//作業報告
			listLi.css("cursor", "pointer");
			listLi.on("click", function() {
				//	簡易帳票・改行改列時
				if (qrSelectCID > 0) {
					//	バックアップの作成
					CHK_L.qrSelTaskKey = taskKey;
					CHK_L.qrSelTaskReportInfo = taskReport.taskReportInfo;
				}

				if (CHK.isWeb) {
					CHK_I.initInspectWeb(function() {
						CHK_L.updateInspect();
						CHK_I.showTaskReportForm(taskReport, taskKey, isReported);
					});
				} else {
					CHK_I.showTaskReportForm(taskReport, taskKey, isReported);
				}
			});
			listLi.append($("<p/>", {"style": "float: right; margin: auto; color: #00a200; font-size: 3em; width: 200px; text-align: right;"}).text(getMsg("reportable")));
		} else {
			//報告内容
			listLi.css("cursor", "pointer");
			listLi.on("click", function() {
				CHK_I.showTaskReportForm(taskReport, taskKey, isReported);
			});
			listLi.append($("<p/>", {"style": "float: right; margin: auto; color: #00a6e8; font-size: 3em; width: 200px; text-align: right;"}).text(getMsg("reportReference")));
		}
		listLi.append($("<p/>", {"style": "float: right; margin: auto; opacity: 0.2; font-size: 5em; width: 75px; text-align: right;"}).text(">"));

		$(".addition_list").append(listLi);
		count++;
	});

	$(".totalDiv em").text(count);
}

/**
 * タスクをリストに追加する
 *
 * @param taskKey タスクキー
 * @param searchWord 検索文
 */
CHK_L.addTask = function(taskKey, searchWord) {
	var taskReport = CHK.getRecentVersionReport(taskKey);
	var pointNo = CHK.getPointNo(taskReport);
	var taskName = CHK.getTaskName(taskReport);

	// 検索文があり、対象作業名に検索文が含まれてない場合0を返して作業の追加・表示処理を停止
	if (searchWord && !CHK.hasSearchWord(taskName, searchWord)) return 0;

	var listLi = $("<li></li>", {
		id: "list_" + taskKey,
		class: CHK_L.getListClass(taskKey)
	});

	var taskInfo = $("<div/>", {class: "taskInfoDiv"});
	var codeAndExpiration = $("<ul/>", {class: "codeAndExpiration"});

	codeAndExpiration.append($("<li/>", {class: "code"}).text(pointNo));
	taskInfo.append(codeAndExpiration);

	taskInfo.append($("<p/>").text(taskName));

	listLi.append(taskInfo);
	listLi.append($("<p/>", {"style": "float: right; margin: auto; opacity: 0.2; font-size: 5em; width: 75px; text-align: right;"}).text(">"));

	listLi.css("cursor", "pointer");
	listLi.on("click", function() {
		CHK.showReportForm(null, taskKey);
	});

	$(".addition_list").append(listLi);
	return 1;
}


/**
 * 作業登録フォームを表示
 *
 * @param taskKey taskKey
 */
CHK_L.addTaskReport = function(taskKey) {
	if (!taskKey) taskKey = CHK.generateUuid();
	CHK.showReportForm(null, taskKey);
}

/**
 * 保存処理時のホットスポット情報を取得
 *
 * @param param 入力パラメータ
 */
CHK_L.getSaveHotspotParam = function(param) {
	var newHotspot = "";
	// 登録・修正
	if (param.mode == "0") {
		newHotspot = {
			sceneId: "",
			seqId: param.seqId,
			taskKey: param.taskKey,
			name: "",
			ath: "",
			atv: "",
			x: "",
			y: ""
		};
		if (CHK.debug == "1") CHK.taskHotspot.hotspot.push(newHotspot); //DEBUG
	} else {
		newHotspot = CHK.getTaskHotspot(param.name, param.taskKey);
	}
	return newHotspot;
}


/**
 * 作業報告更新後の処理
 *
 * @param taskKey taskKey
 */
CHK_L.afterUpdateReport = function(taskKey, isLocalSave) {
	// 定期点検
	if (CHK.reportType == CHK.REPORT_TYPE.INSPECT) {
		CHK_L.updateInspect();
	} else {
		CHK_L.updateList();
		if (taskKey) {
			$("#list_" + taskKey).attr("class", CHK_L.getListClass(taskKey));
		}
	}
	if (!isLocalSave) CHK.hideReportForm();
}


/**
 * 作業指示・報告キャンセル後の処理
 *
 * @param taskKey taskKey
 */
CHK_L.afterCancelTask = function(taskKey) {
	if (CHK.changeReportFlg && taskKey) {
		CHK.showReportForm(null, taskKey, null, CHK.taskReplyNo);
	} else {
		CHK.hideReportForm();
	}
}

/**
 * 作業報告削除後の処理
 *
 * @param taskKey taskKey
 */
CHK_L.afterDeleteReport = function(taskKey, json) {
	if (CHK.reportType == CHK.REPORT_TYPE.INSPECT) {
		if (CHK.isWeb) {
			CHK_L.updateInspectForWeb();
		} else {
			CHK_I.initInspect(function() {
				CHK_L.updateInspect();
			});
		}
	} else {
		// 指示報告の削除対応
		if (CHK.taskReplyNo == CHK.BASE_TASK_REPLY_NO) {
			var callback = function() {
				CHK_L.afterUpdateReport();
			};
			if (CHK.debug != "1" && CHK.isWeb) {
				CHK.updateReportJsonWeb(json, callback);
			} else {
				CHK.loadJson(CHK.jsonPath.taskHotspot, function(jsonData) {
					CHK.taskHotspot = jsonData;
					callback();
				});
			}
		} else {
			$("#list_" + taskKey).attr("class", CHK_L.getListClass(taskKey));
		}
	}
	CHK.hideReportForm();
}

/**
 * リストのスタイルを取得
 *
 * @param taskKey taskKey
 */
CHK_L.getListClass = function(taskKey) {
	var ret;
	var progress = CHK.getTaskProgress(null, taskKey);
	// 作業状況別の表示
	if (progress == "999") {
		ret = "check";
	} else {
		ret = "read";
	}
	return ret;
}

/**
 * ウェブ版の場合、アップデートでサーバから最新の情報を取得
 *
 */
CHK_L.updateInspectForWeb = function() {
	CHK_I.initInspectWeb(function() {
		CHK_L.updateInspect();
	})
}