Commit f4b02a86 by Takumi Imai

#49772 ログインチェック追加

parent e3409ed3
...@@ -121,6 +121,9 @@ DASHBOARD.initHtmlItem = function (item) { ...@@ -121,6 +121,9 @@ DASHBOARD.initHtmlItem = function (item) {
/** Initialization dashboard screen */ /** Initialization dashboard screen */
DASHBOARD.init = function () { DASHBOARD.init = function () {
//Check if user is logged in
COMMON.checkAuth(false);
sessionStorage.activeHomePage = CONSTANT.PAGE_TAB.DASHBOARD; sessionStorage.activeHomePage = CONSTANT.PAGE_TAB.DASHBOARD;
DASHBOARD.loadCommon(); DASHBOARD.loadCommon();
DashboardSetting.getSettingData(function (settings) { DashboardSetting.getSettingData(function (settings) {
......
...@@ -2,33 +2,36 @@ ...@@ -2,33 +2,36 @@
var PP = {}; var PP = {};
PP.init = function() { PP.init = function () {
console.log("PP.init"); //Check if user is logged in
COMMON.checkAuth(false);
console.log('PP.init');
PP.loadCommon(); PP.loadCommon();
PP.initPdfList(); PP.initPdfList();
}; };
PP.loadCommon = function() { PP.loadCommon = function () {
$("#includedHeader").load("../html/common/header.html" , function() { $('#includedHeader').load('../html/common/header.html', function () {
I18N.initi18n(); I18N.initi18n();
HEADER.init(); HEADER.init();
}); });
$("#includedConfirmModal").load("../html/common/confirmModal.html", function() { $('#includedConfirmModal').load('../html/common/confirmModal.html', function () {
I18N.initi18n(); I18N.initi18n();
}); });
} };
PP.initPdfList = function() { PP.initPdfList = function () {
if (sessionStorage.OL_operationId) { if (sessionStorage.OL_operationId) {
let params = {}; let params = {};
params.sid = COMMON.getSid(); params.sid = COMMON.getSid();
params.operationId = sessionStorage.OL_operationId; params.operationId = sessionStorage.OL_operationId;
params.returnUrl = CONSTANT.URL.WEB.BASE + CONSTANT.URL.WEB.OPERATION_LIST; params.returnUrl = CONSTANT.URL.WEB.BASE + CONSTANT.URL.WEB.OPERATION_LIST;
let url = COMMON.format(ClientData.conf_checkApiUrl(), ClientData.userInfo_accountPath()) + CONSTANT.URL.CMS.HTML.BASE + CONSTANT.URL.CMS.HTML.QUICK_REPORT_PRINT; let url = COMMON.format(ClientData.conf_checkApiUrl(), ClientData.userInfo_accountPath()) + CONSTANT.URL.CMS.HTML.BASE + CONSTANT.URL.CMS.HTML.QUICK_REPORT_PRINT;
$("#pdfPrint").load(url, params); $('#pdfPrint').load(url, params);
} else { } else {
COMMON.displayAlert("error"); COMMON.displayAlert('error');
COMMON.avwScreenMove("reportList.html"); COMMON.avwScreenMove('reportList.html');
} }
} };
\ No newline at end of file
...@@ -7,45 +7,45 @@ var PICKUP = {}; ...@@ -7,45 +7,45 @@ var PICKUP = {};
PICKUP.newReportList; PICKUP.newReportList;
PICKUP.continousWorkReport; PICKUP.continousWorkReport;
PICKUP.reportWithWarning; PICKUP.reportWithWarning;
PICKUP.pickupDefault = "newReport"; PICKUP.pickupDefault = 'newReport';
PICKUP.pickupActive = "newReport"; PICKUP.pickupActive = 'newReport';
PICKUP.countNewReportList = 0; PICKUP.countNewReportList = 0;
PICKUP.countContinousWorkReport = 0; PICKUP.countContinousWorkReport = 0;
PICKUP.countReportWithWarning= 0; PICKUP.countReportWithWarning = 0;
/** /**
* Report type * Report type
*/ */
PICKUP.REPORT_TYPE = { PICKUP.REPORT_TYPE = {
REPORTONLY: 0, //report only REPORTONLY: 0, //report only
INSPECT: 1, //rountine INSPECT: 1, //rountine
WITHREPLY: 2, // report answer WITHREPLY: 2, // report answer
WORKFLOW: 3 // continuous WORKFLOW: 3, // continuous
} };
/** /**
* operation type * operation type
*/ */
PICKUP.OPERATION_TYPE = { PICKUP.OPERATION_TYPE = {
LIST: "0", LIST: '0',
DRAWING: "1", DRAWING: '1',
VTOUR: "2", VTOUR: '2',
PDF: "3" PDF: '3',
}; };
/** /**
* task type of report answer * task type of report answer
*/ */
PICKUP.REPLYREPORT_TASK_TYPE = { PICKUP.REPLYREPORT_TASK_TYPE = {
REPORT: 0, REPORT: 0,
ANSWER: 1 ANSWER: 1,
} };
/** /**
* default Pickup List * default Pickup List
*/ */
PICKUP.defaultPickupList = { PICKUP.defaultPickupList = {
operationList:[] operationList: [],
} };
PICKUP.baseApiUrl = COMMON.format(ClientData.conf_checkApiUrl(), ClientData.userInfo_accountPath()); PICKUP.baseApiUrl = COMMON.format(ClientData.conf_checkApiUrl(), ClientData.userInfo_accountPath());
PICKUP.getNewReportListApiUrl = PICKUP.baseApiUrl + CONSTANT.URL.CMS.API.NEW_REPORT; PICKUP.getNewReportListApiUrl = PICKUP.baseApiUrl + CONSTANT.URL.CMS.API.NEW_REPORT;
...@@ -53,71 +53,92 @@ PICKUP.getContinuousWorkListApiUrl = PICKUP.baseApiUrl + CONSTANT.URL.CMS.API.WO ...@@ -53,71 +53,92 @@ PICKUP.getContinuousWorkListApiUrl = PICKUP.baseApiUrl + CONSTANT.URL.CMS.API.WO
PICKUP.getReportWithWarningsListApiUrl = PICKUP.baseApiUrl + CONSTANT.URL.CMS.API.WARNING_WITH_REPORT; PICKUP.getReportWithWarningsListApiUrl = PICKUP.baseApiUrl + CONSTANT.URL.CMS.API.WARNING_WITH_REPORT;
/** /**
* Call get new report list api get data * Call get new report list api get data
*/ */
PICKUP.getNewreportListData = function (callback) { PICKUP.getNewreportListData = function (callback) {
let param = { let param = {
sid: COMMON.getSid(), sid: COMMON.getSid(),
}; };
COMMON.cmsAjax(PICKUP.getNewReportListApiUrl, param, false, function (json) { COMMON.cmsAjax(
if (callback) { PICKUP.getNewReportListApiUrl,
callback(json); param,
} false,
}, function() { function (json) {
console.log('DASHBOARD.getNewreportListData error'); if (callback) {
if (callback) { callback(json);
callback(PICKUP.defaultPickupList); }
} },
}); function () {
console.log('DASHBOARD.getNewreportListData error');
if (callback) {
callback(PICKUP.defaultPickupList);
}
},
);
}; };
/** /**
* Call get Continuous Work list api get data * Call get Continuous Work list api get data
* @param {*} callback * @param {*} callback
*/ */
PICKUP.getContinuousWorkListData = function (callback) { PICKUP.getContinuousWorkListData = function (callback) {
let param = { let param = {
sid: COMMON.getSid(), sid: COMMON.getSid(),
}; };
COMMON.cmsAjax(PICKUP.getContinuousWorkListApiUrl, param, false, function (json) { COMMON.cmsAjax(
if (callback) { PICKUP.getContinuousWorkListApiUrl,
callback(json); param,
} false,
}, function() { function (json) {
console.log('DASHBOARD.getContinuousWorkListData error'); if (callback) {
if (callback) { callback(json);
callback(PICKUP.defaultPickupList); }
} },
}); function () {
console.log('DASHBOARD.getContinuousWorkListData error');
if (callback) {
callback(PICKUP.defaultPickupList);
}
},
);
}; };
/** /**
* Call get Report With Warnings list api get data * Call get Report With Warnings list api get data
* @param {*} callback * @param {*} callback
*/ */
PICKUP.getReportWithWarningsListData = function (callback) { PICKUP.getReportWithWarningsListData = function (callback) {
let param = { let param = {
sid: COMMON.getSid(), sid: COMMON.getSid(),
}; };
COMMON.cmsAjax(PICKUP.getReportWithWarningsListApiUrl, param, false, function (json) { COMMON.cmsAjax(
if (callback) { PICKUP.getReportWithWarningsListApiUrl,
callback(json); param,
} false,
}, function() { function (json) {
console.log('DASHBOARD.getReportWithWarningListData error'); if (callback) {
if (callback) { callback(json);
callback(PICKUP.defaultPickupList); }
} },
}); function () {
console.log('DASHBOARD.getReportWithWarningListData error');
if (callback) {
callback(PICKUP.defaultPickupList);
}
},
);
}; };
/** /**
* Initialization pickup html * Initialization pickup html
*/ */
PICKUP.init = function() { PICKUP.init = function () {
console.log("PICKUP.init"); //Check if user is logged in
sessionStorage.activeHomePage = CONSTANT.PAGE_TAB.DASHBOARD; COMMON.checkAuth(false);
TEMPLATE.loadHearder("#includedHeader");
TEMPLATE.loadConfirmModal("#includedConfirmModal"); console.log('PICKUP.init');
const navs = [ sessionStorage.activeHomePage = CONSTANT.PAGE_TAB.DASHBOARD;
TEMPLATE.loadHearder('#includedHeader');
TEMPLATE.loadConfirmModal('#includedConfirmModal');
const navs = [
{ {
titleLang: 'dashboard', titleLang: 'dashboard',
href: 'dashboard.html', href: 'dashboard.html',
...@@ -126,610 +147,645 @@ PICKUP.init = function() { ...@@ -126,610 +147,645 @@ PICKUP.init = function() {
titleLang: 'pickup', titleLang: 'pickup',
}, },
]; ];
TEMPLATE.loadMainNavsTitle("#includedMainTitle", "pickup", navs, null); TEMPLATE.loadMainNavsTitle('#includedMainTitle', 'pickup', navs, null);
PICKUP.initSettingActivePickup(); PICKUP.initSettingActivePickup();
PICKUP.settingPickup(); PICKUP.settingPickup();
} };
/** /**
* Setting pickup data * Setting pickup data
*/ */
PICKUP.settingPickup = function() { PICKUP.settingPickup = function () {
DashboardSetting.getSettingData(function (settings) { DashboardSetting.getSettingData(function (settings) {
$("#liTabNewReport").addClass('d-none'); $('#liTabNewReport').addClass('d-none');
$("#liTabContinousWork").addClass('d-none'); $('#liTabContinousWork').addClass('d-none');
$("#liTabReportWithWarning").addClass('d-none'); $('#liTabReportWithWarning').addClass('d-none');
if(settings.newReport) if (settings.newReport) {
{ $('#liTabNewReport').removeClass('d-none');
$("#liTabNewReport").removeClass('d-none'); PICKUP.initNewReportTab();
PICKUP.initNewReportTab(); }
} if (settings.continousWork) {
if(settings.continousWork) $('#liTabContinousWork').removeClass('d-none');
{ PICKUP.initContinuosWorkTab();
$("#liTabContinousWork").removeClass('d-none'); }
PICKUP.initContinuosWorkTab(); if (settings.warningReport) {
} $('#liTabReportWithWarning').removeClass('d-none');
if(settings.warningReport) PICKUP.initReportWithWarningsTab();
{ }
$("#liTabReportWithWarning").removeClass('d-none');
PICKUP.initReportWithWarningsTab();
}
}); });
} };
/** /**
* init Setting Active Pickup * init Setting Active Pickup
*/ */
PICKUP.initSettingActivePickup = function() { PICKUP.initSettingActivePickup = function () {
var urlParam = COMMON.getUrlParameter(); var urlParam = COMMON.getUrlParameter();
if(urlParam.pickupActive == undefined || urlParam.pickupActive == '' ) if (urlParam.pickupActive == undefined || urlParam.pickupActive == '') {
{ urlParam.pickupActive = PICKUP.pickupDefault;
urlParam.pickupActive = PICKUP.pickupDefault; }
} PICKUP.pickupActive = urlParam.pickupActive;
PICKUP.pickupActive = urlParam.pickupActive; PICKUP.settingActivePickup(PICKUP.pickupActive);
PICKUP.settingActivePickup(PICKUP.pickupActive); };
}
/** /**
* setting Active Pickup * setting Active Pickup
* @param {*} pickupActive * @param {*} pickupActive
* @returns * @returns
*/ */
PICKUP.settingActivePickup = function(pickupActive) { PICKUP.settingActivePickup = function (pickupActive) {
PICKUP.pickupActive = pickupActive; PICKUP.pickupActive = pickupActive;
$('#liTabNewReport a').removeClass('active'); $('#liTabNewReport a').removeClass('active');
$('#liTabContinousWork a').removeClass('active'); $('#liTabContinousWork a').removeClass('active');
$('#liTabReportWithWarning a').removeClass('active'); $('#liTabReportWithWarning a').removeClass('active');
$('#tab-content-NewReport').removeClass('active show'); $('#tab-content-NewReport').removeClass('active show');
$('#tab-content-ContinousWork').removeClass('active show'); $('#tab-content-ContinousWork').removeClass('active show');
$('#tab-content-ReportWithWarnings').removeClass('active show'); $('#tab-content-ReportWithWarnings').removeClass('active show');
if(pickupActive == "newReport") if (pickupActive == 'newReport') {
{ $('#liTabNewReport a').addClass('active');
$('#liTabNewReport a').addClass('active'); $('#tab-content-NewReport').addClass('active show');
$('#tab-content-NewReport').addClass('active show'); return;
return; }
}
if (pickupActive == 'continousWork') {
if(pickupActive == "continousWork") $('#liTabContinousWork a').addClass('active');
{ $('#tab-content-ContinousWork').addClass('active show');
$('#liTabContinousWork a').addClass('active'); return;
$('#tab-content-ContinousWork').addClass('active show'); }
return; if (pickupActive == 'reportWarning') {
} $('#liTabReportWithWarning a').addClass('active');
if(pickupActive == "reportWarning") $('#tab-content-ReportWithWarnings').addClass('active show');
{ return;
$('#liTabReportWithWarning a').addClass('active'); }
$('#tab-content-ReportWithWarnings').addClass('active show'); };
return;
}
}
/** /**
* Initialization show not found pickup item html * Initialization show not found pickup item html
* @param {*} elementId * @param {*} elementId
*/ */
PICKUP.showNotFoundPickupItem = function(elementId) { PICKUP.showNotFoundPickupItem = function (elementId) {
$(elementId).removeClass(); $(elementId).removeClass();
$(elementId).addClass('p-0 mt-3 card-list'); $(elementId).addClass('p-0 mt-3 card-list');
let li = $("<li class='card mb-2 not-found'></li>"); let li = $("<li class='card mb-2 not-found'></li>");
let div = $("<div class='text-dark mb-1 px-3 py-5 text-center m-auto'></div>"); let div = $("<div class='text-dark mb-1 px-3 py-5 text-center m-auto'></div>");
let imgdiv = $("<img src=\"../common/img/icon_not_found.svg\" alt='" + I18N.i18nText('msgNotFound') +"' class='not-found-img mb-2'>"); let imgdiv = $('<img src="../common/img/icon_not_found.svg" alt=\'' + I18N.i18nText('msgNotFound') + "' class='not-found-img mb-2'>");
let childDiv = $("<div class='fs-9 text-secondary font-weight-bold'>" + I18N.i18nText('msgNotFound') +"</div>"); let childDiv = $("<div class='fs-9 text-secondary font-weight-bold'>" + I18N.i18nText('msgNotFound') + '</div>');
div.append(imgdiv); div.append(imgdiv);
div.append(childDiv); div.append(childDiv);
li.append(div); li.append(div);
$(elementId).append(li); $(elementId).append(li);
} };
/** /**
* Initialization view pickup menu html * Initialization view pickup menu html
* @param {*} elementId * @param {*} elementId
* @param {*} count * @param {*} count
*/ */
PICKUP.showCountDisplayPickupItem = function(elementId, count) { PICKUP.showCountDisplayPickupItem = function (elementId, count) {
let span = $('<span>' + I18N.i18nText('display') +'</span>'); let span = $('<span>' + I18N.i18nText('display') + '</span>');
$(elementId).append(count); $(elementId).append(count);
$(elementId).append(span); $(elementId).append(span);
} };
/** /**
* Initialization new report list html * Initialization new report list html
*/ */
PICKUP.initNewReportTab = function() { PICKUP.initNewReportTab = function () {
PICKUP.getNewreportListData(function (json) { PICKUP.getNewreportListData(function (json) {
PICKUP.createNewReportList(json.operationList); PICKUP.createNewReportList(json.operationList);
}); });
} };
/** /**
* Initialization continuous work list html * Initialization continuous work list html
*/ */
PICKUP.initContinuosWorkTab = function() { PICKUP.initContinuosWorkTab = function () {
PICKUP.getContinuousWorkListData(function (json) { PICKUP.getContinuousWorkListData(function (json) {
PICKUP.createContinousWorkList(json.operationList); PICKUP.createContinousWorkList(json.operationList);
}); });
} };
/** /**
* Initialization continuous work list html * Initialization continuous work list html
*/ */
PICKUP.initReportWithWarningsTab = function() { PICKUP.initReportWithWarningsTab = function () {
PICKUP.getReportWithWarningsListData(function (json) { PICKUP.getReportWithWarningsListData(function (json) {
PICKUP.createReportWithWarningList(json.operationList); PICKUP.createReportWithWarningList(json.operationList);
}); });
} };
/** /**
* sort New report operation list * sort New report operation list
* @param {*} operationList * @param {*} operationList
* @returns * @returns
*/ */
PICKUP.sortNewReportList = function(operationList) { PICKUP.sortNewReportList = function (operationList) {
operationList = operationList.sort(function(a,b) { operationList = operationList.sort(function (a, b) {
if (a.operationId < b.operationId) return 1; if (a.operationId < b.operationId) return 1;
if (a.operationId > b.operationId) return -1; if (a.operationId > b.operationId) return -1;
return 0; return 0;
}); });
return operationList; return operationList;
} };
/** /**
* Implement new report list html * Implement new report list html
* @param {*} operationListOld * @param {*} operationListOld
* @returns * @returns
*/ */
PICKUP.createNewReportList = function(operationListOld) { PICKUP.createNewReportList = function (operationListOld) {
if (typeof operationListOld === 'undefined' || operationListOld.length < 1) { if (typeof operationListOld === 'undefined' || operationListOld.length < 1) {
PICKUP.showNotFoundPickupItem("#newReport-list"); PICKUP.showNotFoundPickupItem('#newReport-list');
$('#viewMenuNewReport').addClass('d-none'); $('#viewMenuNewReport').addClass('d-none');
return; return;
} }
let operationList = PICKUP.sortNewReportList(operationListOld); let operationList = PICKUP.sortNewReportList(operationListOld);
$('#viewMenuNewReport').removeClass('d-none'); $('#viewMenuNewReport').removeClass('d-none');
$("#newReport-list").empty(); $('#newReport-list').empty();
PICKUP.countNewReportList = 0; PICKUP.countNewReportList = 0;
$('#newReport-list').addClass('task-list view-content view-block'); $('#newReport-list').addClass('task-list view-content view-block');
let classIcon ; let classIcon;
for (let i = 0; i < operationList.length; i++) { for (let i = 0; i < operationList.length; i++) {
switch (operationList[i].reportType) switch (operationList[i].reportType) {
{ case PICKUP.REPORT_TYPE.REPORTONLY:
case PICKUP.REPORT_TYPE.REPORTONLY: classIcon = 'report';
classIcon = "report"; break;
break; case PICKUP.REPORT_TYPE.INSPECT:
case PICKUP.REPORT_TYPE.INSPECT: classIcon = 'inspection';
classIcon = "inspection"; break;
break; case PICKUP.REPORT_TYPE.WITHREPLY:
case PICKUP.REPORT_TYPE.WITHREPLY: classIcon = 'questionary';
classIcon = "questionary"; break;
break; case PICKUP.REPORT_TYPE.WORKFLOW:
case PICKUP.REPORT_TYPE.WORKFLOW: classIcon = 'proccess';
classIcon = "proccess"; break;
break; }
} let messageli = $("<li class='card mb-2' name = 'operationId_" + operationList[i].operationId + "' ></li>");
let messageli = $("<li class='card mb-2' name = 'operationId_" + operationList[i].operationId + "' ></li>"); let ahrefRequiredFlg = $(
let ahrefRequiredFlg = $("<a href=\"javascript:PICKUP.sendReportFormFromNewReport ('" '<a href="javascript:PICKUP.sendReportFormFromNewReport (\'' + operationList[i].operationId + "');\" class='h-100 d-block px-3 py-2 text-decoration-none text-dark position-relative'></a>",
+ operationList[i].operationId +"');\" class='h-100 d-block px-3 py-2 text-decoration-none text-dark position-relative'></a>"); );
let divIcon = $("<div class='position-absolute translate-middle top-50 left-0 ml-3'>" let divIcon = $("<div class='position-absolute translate-middle top-50 left-0 ml-3'>" + "<div class='type-icon'>" + "<span class='" + classIcon + "'></span>" + '</div></div>');
+ "<div class='type-icon'>"
+ "<span class='" + classIcon + "'></span>" let divText = $(
+ "</div></div>") "<div class='pl-5 h-100 d-flex align-items-center'>" + "<div class='w-100'>" + "<div class='fs-12 text-truncate'>" + operationList[i].operationName + '</div>' + '</div></div>',
);
let divText = $("<div class='pl-5 h-100 d-flex align-items-center'>" ahrefRequiredFlg.append(divIcon);
+ "<div class='w-100'>" ahrefRequiredFlg.append(divText);
+ "<div class='fs-12 text-truncate'>" + operationList[i].operationName + "</div>" messageli.append(ahrefRequiredFlg);
+ "</div></div>");
ahrefRequiredFlg.append(divIcon); $('#newReport-list').append(messageli);
ahrefRequiredFlg.append(divText); PICKUP.countNewReportList = PICKUP.countNewReportList + 1;
messageli.append(ahrefRequiredFlg); }
// show not found if
$("#newReport-list").append(messageli); if (PICKUP.countNewReportList == 0) {
PICKUP.countNewReportList = PICKUP.countNewReportList + 1; PICKUP.showNotFoundPickupItem('#newReport-list');
$('#viewMenuNewReport').addClass('d-none');
} return;
// show not found if
if (PICKUP.countNewReportList == 0) {
PICKUP.showNotFoundPickupItem("#newReport-list");
$('#viewMenuNewReport').addClass('d-none');
return;
} }
PICKUP.showCountDisplayPickupItem("#count-NewReport", PICKUP.countNewReportList ) PICKUP.showCountDisplayPickupItem('#count-NewReport', PICKUP.countNewReportList);
};
}
/** /**
* sort continuous work operation list * sort continuous work operation list
* @param {*} operationList * @param {*} operationList
* @returns * @returns
*/ */
PICKUP.sortContinousWorkList = function(operationList) { PICKUP.sortContinousWorkList = function (operationList) {
let newOperationList = []; let newOperationList = [];
for (let i = 0; i < operationList.length; i++) { for (let i = 0; i < operationList.length; i++) {
if (operationList[i].reportType === 3) if (operationList[i].reportType === 3) {
{ if (typeof operationList[i].processList === 'undefined') continue;
if(typeof operationList[i].processList === 'undefined' ) continue; if (operationList[i].processList && operationList[i].processList.length != 0) {
if (operationList[i].processList && operationList[i].processList.length != 0) for (let j = 0; j < operationList[i].processList.length; j++) {
{ if (typeof operationList[i].processList[j].phaseList === 'undefined') continue;
for( let j = 0; j < operationList[i].processList.length; j++ ) for (let g = 0; g < operationList[i].processList[j].phaseList.length; g++) {
{ if (operationList[i].processList[j].phaseList[g].phaseStatus != 999) {
if(typeof operationList[i].processList[j].phaseList === 'undefined' ) continue; let item = {
for(let g = 0; g < operationList[i].processList[j].phaseList.length; g++ ) reportType: operationList[i].reportType,
{ operationType: operationList[i].operationType,
if(operationList[i].processList[j].phaseList[g].phaseStatus != 999) phaseList: operationList[i].processList[j].phaseList,
{ processKey: operationList[i].processList[j].processKey,
let item = {reportType: operationList[i].reportType, permitCodeRequiredFlg: operationList[i].permitCodeRequiredFlg,
operationType: operationList[i].operationType, operationId: operationList[i].operationId,
phaseList: operationList[i].processList[j].phaseList, contentId: operationList[i].contentId,
processKey: operationList[i].processList[j].processKey, operationName: operationList[i].operationName,
permitCodeRequiredFlg: operationList[i].permitCodeRequiredFlg, taskCode: operationList[i].processList[j].taskCode,
operationId: operationList[i].operationId, taskKey: operationList[i].processList[j].taskKey,
contentId: operationList[i].contentId, taskName: operationList[i].processList[j].taskName,
operationName: operationList[i].operationName, updateDate: operationList[i].processList[j].phaseList[g].updateDate,
taskCode: operationList[i].processList[j].taskCode, phaseNo: operationList[i].processList[j].phaseList[g].phaseNo,
taskKey: operationList[i].processList[j].taskKey, phaseName: operationList[i].processList[j].phaseList[g].phaseName,
taskName: operationList[i].processList[j].taskName, };
updateDate: operationList[i].processList[j].phaseList[g].updateDate,
phaseNo: operationList[i].processList[j].phaseList[g].phaseNo,
phaseName: operationList[i].processList[j].phaseList[g].phaseName
};
newOperationList.push(item); newOperationList.push(item);
} }
}
} }
}
} }
} }
} newOperationList = newOperationList.sort(function (a, b) {
} if (!a.updateDate) {
newOperationList = newOperationList.sort(function(a,b) { a.updateDate = '1900-01-01 00:00:00';
if (!a.updateDate) { }
a.updateDate = "1900-01-01 00:00:00"; if (!b.updateDate) {
} b.updateDate = '1900-01-01 00:00:00';
if (!b.updateDate) { }
b.updateDate = "1900-01-01 00:00:00"; if (a.updateDate < b.updateDate) return 1;
} if (a.updateDate > b.updateDate) return -1;
if (a.updateDate < b.updateDate) return 1; return 0;
if (a.updateDate > b.updateDate) return -1; });
return 0; //console.log("newOperationList: " + JSON.stringify(newOperationList));
}); return newOperationList;
//console.log("newOperationList: " + JSON.stringify(newOperationList)); };
return newOperationList;
}
/** /**
* Implement continous work html * Implement continous work html
* @param {*} operationListOld * @param {*} operationListOld
* @returns * @returns
*/ */
PICKUP.createContinousWorkList = function(operationListOld) { PICKUP.createContinousWorkList = function (operationListOld) {
if (typeof operationListOld === 'undefined' || operationListOld.length < 1) { if (typeof operationListOld === 'undefined' || operationListOld.length < 1) {
PICKUP.showNotFoundPickupItem("#continousWork-list"); PICKUP.showNotFoundPickupItem('#continousWork-list');
$('#viewMenuContinuousWork').addClass('d-none'); $('#viewMenuContinuousWork').addClass('d-none');
return; return;
} }
let operationList = PICKUP.sortContinousWorkList(operationListOld); let operationList = PICKUP.sortContinousWorkList(operationListOld);
$('#viewMenuContinuousWork').removeClass('d-none'); $('#viewMenuContinuousWork').removeClass('d-none');
$("#continousWork-list").empty(); $('#continousWork-list').empty();
PICKUP.countContinousWorkReport = 0; PICKUP.countContinousWorkReport = 0;
$('#continousWork-list').addClass('task-list view-content view-block'); $('#continousWork-list').addClass('task-list view-content view-block');
for (let i = 0; i < operationList.length; i++) { for (let i = 0; i < operationList.length; i++) {
let directKey = operationList[i].processKey; let directKey = operationList[i].processKey;
if (operationList[i].operationType == PICKUP.OPERATION_TYPE.VTOUR || operationList[i].operationType == PICKUP.OPERATION_TYPE.PDF) { if (operationList[i].operationType == PICKUP.OPERATION_TYPE.VTOUR || operationList[i].operationType == PICKUP.OPERATION_TYPE.PDF) {
directKey = operationList[i].taskKey; directKey = operationList[i].taskKey;
}
let messageli = $("<li class='card mb-2' id = 'list_" + operationList[i].processKey + "$" + operationList[i].phaseNo + "'></li>") ;
let ahrefRequiredFlg ;
if (operationList[i].permitCodeRequiredFlg == 1)
{
ahrefRequiredFlg = $("<a href=\"javascript:CHK.displayAlert('onlyRfid');\" class='h-100 d-block px-3 py-2 text-decoration-none text-dark position-relative'></a>");
} }
else let messageli = $("<li class='card mb-2' id = 'list_" + operationList[i].processKey + '$' + operationList[i].phaseNo + "'></li>");
{
ahrefRequiredFlg = $("<a href=\"javascript:PICKUP.sendReportFormFromContinuousWork ('" let ahrefRequiredFlg;
+ operationList[i].operationId +"','" + operationList[i].taskKey + "','" + operationList[i].processKey + "'," + operationList[i].phaseNo + ");\" class='h-100 d-block px-3 py-2 text-decoration-none text-dark position-relative'></a>"); if (operationList[i].permitCodeRequiredFlg == 1) {
ahrefRequiredFlg = $("<a href=\"javascript:CHK.displayAlert('onlyRfid');\" class='h-100 d-block px-3 py-2 text-decoration-none text-dark position-relative'></a>");
} else {
ahrefRequiredFlg = $(
'<a href="javascript:PICKUP.sendReportFormFromContinuousWork (\'' +
operationList[i].operationId +
"','" +
operationList[i].taskKey +
"','" +
operationList[i].processKey +
"'," +
operationList[i].phaseNo +
");\" class='h-100 d-block px-3 py-2 text-decoration-none text-dark position-relative'></a>",
);
} }
let divProccess = $("<div class='position-absolute translate-middle top-50 left-0 ml-3'><div class='type-icon'><span class='proccess'></span></div></div>"); let divProccess = $("<div class='position-absolute translate-middle top-50 left-0 ml-3'><div class='type-icon'><span class='proccess'></span></div></div>");
let divInfor = $("<div class='pl-5 h-100 d-flex align-items-center'></div>");
let divChildInfor = $("<div class='w-100'></div>");
let divOperationName = $("<div class='fs-8 bg-dark10 px-2 py-1 mr-2 rounded mb-1 w-fit-content text-truncate mw-100'>" + operationList[i].phaseName + '</div>');
let divProcessName = $("<div class='fs-12 text-truncate'>" + operationList[i].operationName + '</div>');
let divReportInfor = $("<div class='d-flex justify-content-between align-items-center'></div>");
let divReportName = $("<div class='fs-10 text-truncate'>" + operationList[i].taskName + '</div>');
let divReportCode = $("<div class='fs-8 text-secondary text-truncate'>" + operationList[i].taskCode + '</div>');
let divInfor = $("<div class='pl-5 h-100 d-flex align-items-center'></div>"); divReportInfor.append(divReportName);
let divChildInfor = $("<div class='w-100'></div>"); divReportInfor.append(divReportCode);
let divOperationName = $("<div class='fs-8 bg-dark10 px-2 py-1 mr-2 rounded mb-1 w-fit-content text-truncate mw-100'>" + operationList[i].phaseName + "</div>");
let divProcessName = $("<div class='fs-12 text-truncate'>" + operationList[i].operationName + "</div>");
let divReportInfor = $("<div class='d-flex justify-content-between align-items-center'></div>");
let divReportName = $("<div class='fs-10 text-truncate'>" + operationList[i].taskName + "</div>");
let divReportCode = $("<div class='fs-8 text-secondary text-truncate'>" + operationList[i].taskCode + "</div>");
divReportInfor.append(divReportName);
divReportInfor.append(divReportCode);
divChildInfor.append(divOperationName); divChildInfor.append(divOperationName);
divChildInfor.append(divProcessName); divChildInfor.append(divProcessName);
divChildInfor.append(divReportInfor); divChildInfor.append(divReportInfor);
divInfor.append(divChildInfor); divInfor.append(divChildInfor);
ahrefRequiredFlg.append(divProccess); ahrefRequiredFlg.append(divProccess);
ahrefRequiredFlg.append(divInfor); ahrefRequiredFlg.append(divInfor);
messageli.append(ahrefRequiredFlg); messageli.append(ahrefRequiredFlg);
$("#continousWork-list").append(messageli); $('#continousWork-list').append(messageli);
PICKUP.countContinousWorkReport = PICKUP.countContinousWorkReport + 1; PICKUP.countContinousWorkReport = PICKUP.countContinousWorkReport + 1;
}
// show not found if
if (PICKUP.countContinousWorkReport == 0) {
PICKUP.showNotFoundPickupItem("#continousWork-list");
$('#viewMenuContinuousWork').addClass('d-none');
return;
} }
PICKUP.showCountDisplayPickupItem("#count-ContinuousWork", PICKUP.countContinousWorkReport )
// show not found if
if (PICKUP.countContinousWorkReport == 0) {
PICKUP.showNotFoundPickupItem('#continousWork-list');
$('#viewMenuContinuousWork').addClass('d-none');
return;
}
PICKUP.showCountDisplayPickupItem('#count-ContinuousWork', PICKUP.countContinousWorkReport);
}; };
/** /**
* sort report with warnings list * sort report with warnings list
* @param {*} operationList * @param {*} operationList
* @returns * @returns
*/ */
PICKUP.sortWarningList = function(operationList) { PICKUP.sortWarningList = function (operationList) {
let newOperationList = []; let newOperationList = [];
for (let i = 0; i < operationList.length; i++) { for (let i = 0; i < operationList.length; i++) {
if(typeof operationList[i].warningReportList === 'undefined' ) continue; if (typeof operationList[i].warningReportList === 'undefined') continue;
if (operationList[i].warningReportList && operationList[i].warningReportList.length != 0) if (operationList[i].warningReportList && operationList[i].warningReportList.length != 0) {
{ for (let j = 0; j < operationList[i].warningReportList.length; j++) {
for( let j = 0; j < operationList[i].warningReportList.length; j++ ) let item = {
{ reportType: operationList[i].reportType,
let item = {reportType: operationList[i].reportType, operationType: operationList[i].operationType,
operationType: operationList[i].operationType, permitCodeRequiredFlg: operationList[i].permitCodeRequiredFlg,
permitCodeRequiredFlg: operationList[i].permitCodeRequiredFlg, operationId: operationList[i].operationId,
operationId: operationList[i].operationId, contentId: operationList[i].contentId,
contentId: operationList[i].contentId, operationName: operationList[i].operationName,
operationName: operationList[i].operationName, taskCode: operationList[i].warningReportList[j].taskCode,
taskCode: operationList[i].warningReportList[j].taskCode, taskKey: operationList[i].warningReportList[j].taskKey,
taskKey: operationList[i].warningReportList[j].taskKey, taskName: operationList[i].warningReportList[j].taskName,
taskName: operationList[i].warningReportList[j].taskName, taskType: operationList[i].warningReportList[j].taskType,
taskType: operationList[i].warningReportList[j].taskType, updateDate: operationList[i].warningReportList[j].updateDate,
updateDate: operationList[i].warningReportList[j].updateDate, reportStartDateString: operationList[i].warningReportList[j].reportStartDateString,
reportStartDateString: operationList[i].warningReportList[j].reportStartDateString, reportEndDateString: operationList[i].warningReportList[j].reportEndDateString,
reportEndDateString: operationList[i].warningReportList[j].reportEndDateString, processKey: operationList[i].warningReportList[j].processKey,
processKey: operationList[i].warningReportList[j].processKey, phaseNo: operationList[i].warningReportList[j].phaseNo,
phaseNo: operationList[i].warningReportList[j].phaseNo, phaseName: operationList[i].warningReportList[j].phaseName,
phaseName: operationList[i].warningReportList[j].phaseName };
}; newOperationList.push(item);
newOperationList.push(item); }
} }
} }
} newOperationList = newOperationList.sort(function (a, b) {
newOperationList = newOperationList.sort(function(a,b) { if (!a.updateDate) {
if (!a.updateDate) { a.updateDate = '1900-01-01 00:00:00';
a.updateDate = "1900-01-01 00:00:00"; }
} if (!b.updateDate) {
if (!b.updateDate) { b.updateDate = '1900-01-01 00:00:00';
b.updateDate = "1900-01-01 00:00:00"; }
} if (a.updateDate < b.updateDate) return 1;
if (a.updateDate < b.updateDate) return 1; if (a.updateDate > b.updateDate) return -1;
if (a.updateDate > b.updateDate) return -1; return 0;
return 0; });
}); //console.log("newOperationList: " + JSON.stringify(newOperationList));
//console.log("newOperationList: " + JSON.stringify(newOperationList)); return newOperationList;
return newOperationList; };
}
/** /**
* init Warning Report With ReportOnly Type * init Warning Report With ReportOnly Type
* @param {*} report * @param {*} report
* @returns * @returns
*/ */
PICKUP.initWarningReportWithReportOnlyType = function(report) { PICKUP.initWarningReportWithReportOnlyType = function (report) {
let ele = $("<li class='card mb-2'>" let ele = $(
+ "<a href=\"javascript:PICKUP.sendReportFormFromWarningReport ('" "<li class='card mb-2'>" +
+ report.operationId +"'," + PICKUP.REPORT_TYPE.REPORTONLY + ",'" + report.taskKey + "', null,null,null);\" class='h-100 d-block px-3 py-2 text-decoration-none text-dark position-relative'>" '<a href="javascript:PICKUP.sendReportFormFromWarningReport (\'' +
+ "<div class='position-absolute translate-middle top-50 left-0 ml-3'>" report.operationId +
+ "<div class='type-icon'><span class='report'></span></div></div>" "'," +
+ "<div class='pl-5 h-100 d-flex align-items-center'><div class='w-100'>" PICKUP.REPORT_TYPE.REPORTONLY +
+ "<div class='fs-12 text-truncate'>" + report.operationName + "</div>" ",'" +
+ "<div class='d-flex justify-content-between align-items-center'>" report.taskKey +
+ "<div class='fs-10 text-truncate'>" + report.taskName+ "</div>" "', null,null,null);\" class='h-100 d-block px-3 py-2 text-decoration-none text-dark position-relative'>" +
+ "<div class='fs-8 text-secondary text-truncate'> " + report.taskCode + "</div>" "<div class='position-absolute translate-middle top-50 left-0 ml-3'>" +
+ "</div></div></div></a></li>"); "<div class='type-icon'><span class='report'></span></div></div>" +
return ele; "<div class='pl-5 h-100 d-flex align-items-center'><div class='w-100'>" +
} "<div class='fs-12 text-truncate'>" +
report.operationName +
PICKUP.initWarningReportWithInspectType = function(report) { '</div>' +
let ele = $("<li class='card mb-2'>" "<div class='d-flex justify-content-between align-items-center'>" +
+ "<a href=\"javascript:PICKUP.sendReportFormFromWarningReport ('" "<div class='fs-10 text-truncate'>" +
+ report.operationId +"'," + PICKUP.REPORT_TYPE.INSPECT + ",'" + report.taskKey + "', null,null,null);\" class='h-100 d-block px-3 py-2 text-decoration-none text-dark position-relative'>" report.taskName +
+ "<div class='position-absolute translate-middle top-50 left-0 ml-3'>" '</div>' +
+ "<div class='type-icon'><span class='inspection'></span></div></div>" "<div class='fs-8 text-secondary text-truncate'> " +
+ "<div class='pl-5 h-100 d-flex align-items-center'><div class='w-100'>" report.taskCode +
+ "<div class='fs-12 text-truncate'>" + report.operationName + "</div>" '</div>' +
+ "<div class='d-flex justify-content-between align-items-center'>" '</div></div></div></a></li>',
+ "<div class='fs-10 text-truncate'></div>" );
+ "<div class='fs-8 text-secondary text-truncate'>" + PICKUP.getInspectDate(report.reportStartDateString) + " ~ " + PICKUP.getInspectDate(report.reportEndDateString) return ele;
+ "</div></div></div></div></a></li>"); };
return ele;
} PICKUP.initWarningReportWithInspectType = function (report) {
let ele = $(
"<li class='card mb-2'>" +
'<a href="javascript:PICKUP.sendReportFormFromWarningReport (\'' +
report.operationId +
"'," +
PICKUP.REPORT_TYPE.INSPECT +
",'" +
report.taskKey +
"', null,null,null);\" class='h-100 d-block px-3 py-2 text-decoration-none text-dark position-relative'>" +
"<div class='position-absolute translate-middle top-50 left-0 ml-3'>" +
"<div class='type-icon'><span class='inspection'></span></div></div>" +
"<div class='pl-5 h-100 d-flex align-items-center'><div class='w-100'>" +
"<div class='fs-12 text-truncate'>" +
report.operationName +
'</div>' +
"<div class='d-flex justify-content-between align-items-center'>" +
"<div class='fs-10 text-truncate'></div>" +
"<div class='fs-8 text-secondary text-truncate'>" +
PICKUP.getInspectDate(report.reportStartDateString) +
' ~ ' +
PICKUP.getInspectDate(report.reportEndDateString) +
'</div></div></div></div></a></li>',
);
return ele;
};
/** /**
* init Warning Report With AnswerReport Type * init Warning Report With AnswerReport Type
* @param {*} report * @param {*} report
* @param {*} reportTypeMsg * @param {*} reportTypeMsg
* @returns * @returns
*/ */
PICKUP.initWarningReportWithAnswerReportType = function(report, reportTypeMsg) { PICKUP.initWarningReportWithAnswerReportType = function (report, reportTypeMsg) {
let ele = $("<li class='card mb-2'>" let ele = $(
+ "<a href=\"javascript:PICKUP.sendReportFormFromWarningReport ('" "<li class='card mb-2'>" +
+ report.operationId +"'," + PICKUP.REPORT_TYPE.WITHREPLY + ",null, null,null," + report.replyNo +");\" class='h-100 d-block px-3 py-2 text-decoration-none text-dark position-relative'>" '<a href="javascript:PICKUP.sendReportFormFromWarningReport (\'' +
+ "<div class='position-absolute translate-middle top-50 left-0 ml-3'><div class='type-icon'>" report.operationId +
+ "<span class='questionary'></span></div></div><div class='pl-5 h-100 d-flex align-items-center'><div class='w-100'>" "'," +
+ "<div class='fs-8 bg-dark10 px-2 py-1 mr-2 rounded mb-1 w-fit-content text-truncate mw-100'>" + reportTypeMsg + "</div>" PICKUP.REPORT_TYPE.WITHREPLY +
+ "<div class='fs-12 text-truncate'>" + report.operationName + "</div>" ',null, null,null,' +
+ "<div class='d-flex justify-content-between align-items-center'>" report.replyNo +
+ "<div class='fs-10 text-truncate'>" + report.taskName+ "</div>" ");\" class='h-100 d-block px-3 py-2 text-decoration-none text-dark position-relative'>" +
+ "<div class='fs-8 text-secondary text-truncate'>" + report.taskCode+ "</div>" "<div class='position-absolute translate-middle top-50 left-0 ml-3'><div class='type-icon'>" +
+ "</div></div></div></a></li>"); "<span class='questionary'></span></div></div><div class='pl-5 h-100 d-flex align-items-center'><div class='w-100'>" +
return ele; "<div class='fs-8 bg-dark10 px-2 py-1 mr-2 rounded mb-1 w-fit-content text-truncate mw-100'>" +
} reportTypeMsg +
'</div>' +
"<div class='fs-12 text-truncate'>" +
report.operationName +
'</div>' +
"<div class='d-flex justify-content-between align-items-center'>" +
"<div class='fs-10 text-truncate'>" +
report.taskName +
'</div>' +
"<div class='fs-8 text-secondary text-truncate'>" +
report.taskCode +
'</div>' +
'</div></div></div></a></li>',
);
return ele;
};
/** /**
* init Warning Report With Continuous Report Type * init Warning Report With Continuous Report Type
* @param {*} report * @param {*} report
* @returns * @returns
*/ */
PICKUP.initWarningReportWithContinuousReportType = function(report) { PICKUP.initWarningReportWithContinuousReportType = function (report) {
let directKey = report.processKey; let directKey = report.processKey;
if (report.operationType == PICKUP.OPERATION_TYPE.VTOUR || report.operationType == PICKUP.OPERATION_TYPE.PDF) { if (report.operationType == PICKUP.OPERATION_TYPE.VTOUR || report.operationType == PICKUP.OPERATION_TYPE.PDF) {
directKey = report.taskKey; directKey = report.taskKey;
if (report.phaseNo > 1) { if (report.phaseNo > 1) {
//find taskKey of phaseNo 1 //find taskKey of phaseNo 1
for (let k = 0; k < operationList.length; k++) { for (let k = 0; k < operationList.length; k++) {
if (operationList[k].phaseNo == 1 && operationList[k].processKey == report.processKey) { if (operationList[k].phaseNo == 1 && operationList[k].processKey == report.processKey) {
directKey = operationList[k].taskKey; directKey = operationList[k].taskKey;
break; break;
} }
} }
} }
} }
let ele = $("<li class='card mb-2'>" let ele = $(
+ "<a href=\"javascript:PICKUP.sendReportFormFromWarningReport ('" "<li class='card mb-2'>" +
+ report.operationId +"'," + PICKUP.REPORT_TYPE.WORKFLOW + ",null,'" + report.processKey +"' ,'"+ report.phaseNo +"',null);\" class='h-100 d-block px-3 py-2 text-decoration-none text-dark position-relative'>" '<a href="javascript:PICKUP.sendReportFormFromWarningReport (\'' +
+ "<div class='position-absolute translate-middle top-50 left-0 ml-3'>" report.operationId +
+ "<div class='type-icon'><span class='proccess'></span></div></div>" "'," +
+ "<div class='pl-5 h-100 d-flex align-items-center'><div class='w-100'>" PICKUP.REPORT_TYPE.WORKFLOW +
+ "<div class='fs-8 bg-dark10 px-2 py-1 mr-2 rounded mb-1 w-fit-content text-truncate mw-100'>" + report.phaseName + "</div>" ",null,'" +
+ "<div class='fs-12 text-truncate'>" + report.operationName + "</div>" report.processKey +
+ "<div class='d-flex justify-content-between align-items-center'>" "' ,'" +
+ "<div class='fs-10 text-truncate'>" + report.taskName+ "</div>" report.phaseNo +
+ "<div class='fs-8 text-secondary text-truncate'>" + report.taskCode+ "</div>" "',null);\" class='h-100 d-block px-3 py-2 text-decoration-none text-dark position-relative'>" +
+ "</div></div></div></a></li>"); "<div class='position-absolute translate-middle top-50 left-0 ml-3'>" +
return ele; "<div class='type-icon'><span class='proccess'></span></div></div>" +
} "<div class='pl-5 h-100 d-flex align-items-center'><div class='w-100'>" +
"<div class='fs-8 bg-dark10 px-2 py-1 mr-2 rounded mb-1 w-fit-content text-truncate mw-100'>" +
report.phaseName +
'</div>' +
"<div class='fs-12 text-truncate'>" +
report.operationName +
'</div>' +
"<div class='d-flex justify-content-between align-items-center'>" +
"<div class='fs-10 text-truncate'>" +
report.taskName +
'</div>' +
"<div class='fs-8 text-secondary text-truncate'>" +
report.taskCode +
'</div>' +
'</div></div></div></a></li>',
);
return ele;
};
/** /**
* create Report With Warnings List html * create Report With Warnings List html
* @param {*} operationListOld * @param {*} operationListOld
* @returns * @returns
*/ */
PICKUP.createReportWithWarningList = function(operationListOld) { PICKUP.createReportWithWarningList = function (operationListOld) {
if (typeof operationListOld === 'undefined' || operationListOld.length < 1) { if (typeof operationListOld === 'undefined' || operationListOld.length < 1) {
PICKUP.showNotFoundPickupItem("#reportWithWarnings-list"); PICKUP.showNotFoundPickupItem('#reportWithWarnings-list');
$('#viewMenuReportWithWarnings').addClass('d-none'); $('#viewMenuReportWithWarnings').addClass('d-none');
return; return;
} }
let operationList = PICKUP.sortWarningList(operationListOld); let operationList = PICKUP.sortWarningList(operationListOld);
$('#viewMenuReportWithWarnings').removeClass('d-none'); $('#viewMenuReportWithWarnings').removeClass('d-none');
$("#reportWithWarnings-list").empty(); $('#reportWithWarnings-list').empty();
PICKUP.countReportWithWarning = 0; PICKUP.countReportWithWarning = 0;
$('#reportWithWarnings-list').addClass('task-list view-content view-block'); $('#reportWithWarnings-list').addClass('task-list view-content view-block');
const msgLevelReport = I18N.i18nText('reportLevelReport'); const msgLevelReport = I18N.i18nText('reportLevelReport');
const msgLevelAnswer = I18N.i18nText('reportLevelAnswer'); const msgLevelAnswer = I18N.i18nText('reportLevelAnswer');
for (let i = 0; i < operationList.length; i++) { for (let i = 0; i < operationList.length; i++) {
let operationNameLi; let operationNameLi;
switch (operationList[i].reportType) switch (operationList[i].reportType) {
{ case PICKUP.REPORT_TYPE.REPORTONLY:
case PICKUP.REPORT_TYPE.REPORTONLY: operationNameLi = PICKUP.initWarningReportWithReportOnlyType(operationList[i]);
operationNameLi = PICKUP.initWarningReportWithReportOnlyType(operationList[i]); break;
break; case PICKUP.REPORT_TYPE.INSPECT:
case PICKUP.REPORT_TYPE.INSPECT: operationNameLi = PICKUP.initWarningReportWithInspectType(operationList[i]);
operationNameLi = PICKUP.initWarningReportWithInspectType(operationList[i]); break;
break; case PICKUP.REPORT_TYPE.WITHREPLY: // report answer
case PICKUP.REPORT_TYPE.WITHREPLY: // report answer if (operationList[i].taskType == PICKUP.REPLYREPORT_TASK_TYPE.REPORT) {
if( operationList[i].taskType == PICKUP.REPLYREPORT_TASK_TYPE.REPORT ) operationNameLi = PICKUP.initWarningReportWithAnswerReportType(operationList[i], msgLevelReport);
{ } else {
operationNameLi = PICKUP.initWarningReportWithAnswerReportType(operationList[i], msgLevelReport); operationNameLi = PICKUP.initWarningReportWithAnswerReportType(operationList[i], msgLevelAnswer);
} }
else break;
{ case PICKUP.REPORT_TYPE.WORKFLOW: // continouswork
operationNameLi = PICKUP.initWarningReportWithAnswerReportType(operationList[i], msgLevelAnswer); operationNameLi = PICKUP.initWarningReportWithContinuousReportType(operationList[i]);
} break;
break; }
case PICKUP.REPORT_TYPE.WORKFLOW: // continouswork $('#reportWithWarnings-list').append(operationNameLi);
operationNameLi = PICKUP.initWarningReportWithContinuousReportType(operationList[i]); PICKUP.countReportWithWarning = PICKUP.countReportWithWarning + 1;
break; }
// show not found if
} if (PICKUP.countReportWithWarning == 0) {
$("#reportWithWarnings-list").append(operationNameLi); PICKUP.showNotFoundPickupItem('#reportWithWarnings-list');
PICKUP.countReportWithWarning = PICKUP.countReportWithWarning + 1; $('#viewMenuReportWithWarnings').addClass('d-none');
} return;
// show not found if
if (PICKUP.countReportWithWarning == 0) {
PICKUP.showNotFoundPickupItem("#reportWithWarnings-list");
$('#viewMenuReportWithWarnings').addClass('d-none');
return;
} }
PICKUP.showCountDisplayPickupItem("#count-ReportWithWarnings", PICKUP.countReportWithWarning ) PICKUP.showCountDisplayPickupItem('#count-ReportWithWarnings', PICKUP.countReportWithWarning);
}; };
/** /**
* get Inspect Date format * get Inspect Date format
* @param {*} dateString * @param {*} dateString
* @returns * @returns
*/ */
PICKUP.getInspectDate = function(dateString) { PICKUP.getInspectDate = function (dateString) {
let date = new Date(dateString) let date = new Date(dateString);
return date.getFullYear() + "/" + ("0" + (date.getMonth() + 1)).slice(-2) + "/" + ("0" + date.getDate()).slice(-2) ; return date.getFullYear() + '/' + ('0' + (date.getMonth() + 1)).slice(-2) + '/' + ('0' + date.getDate()).slice(-2);
} };
/** /**
* send data to open report form from New report pickup * send data to open report form from New report pickup
* @returns * @returns
*/ */
PICKUP.sendReportFormFromNewReport = function(operationId) { PICKUP.sendReportFormFromNewReport = function (operationId) {
//Transition to the report form or operation list screen //Transition to the report form or operation list screen
let params = {}; let params = {};
params.sid = COMMON.getSid(); params.sid = COMMON.getSid();
params.operationId = operationId; params.operationId = operationId;
let url = COMMON.format(ClientData.conf_checkApiUrl(), ClientData.userInfo_accountPath()) + CONSTANT.URL.CMS.HTML.BASE + CONSTANT.URL.CMS.HTML.LIST_REPORT_FORM ; let url = COMMON.format(ClientData.conf_checkApiUrl(), ClientData.userInfo_accountPath()) + CONSTANT.URL.CMS.HTML.BASE + CONSTANT.URL.CMS.HTML.LIST_REPORT_FORM;
COMMON.postCommunication(url, params); COMMON.postCommunication(url, params);
} };
/** /**
* send data to open report form of event click continuous work operation report * send data to open report form of event click continuous work operation report
* @returns * @returns
*/ */
PICKUP.sendReportFormFromContinuousWork = function(operationId, taskKey, processKey,phaseNo) { PICKUP.sendReportFormFromContinuousWork = function (operationId, taskKey, processKey, phaseNo) {
//Transition to the report form or operation list screen //Transition to the report form or operation list screen
let params = {}; let params = {};
params.sid = COMMON.getSid(); params.sid = COMMON.getSid();
params.operationId = operationId; params.operationId = operationId;
params.processKey = processKey; params.processKey = processKey;
params.phaseNo = phaseNo; params.phaseNo = phaseNo;
let url = COMMON.format(ClientData.conf_checkApiUrl(), ClientData.userInfo_accountPath()) + CONSTANT.URL.CMS.HTML.BASE + CONSTANT.URL.CMS.HTML.LIST_REPORT_FORM ; let url = COMMON.format(ClientData.conf_checkApiUrl(), ClientData.userInfo_accountPath()) + CONSTANT.URL.CMS.HTML.BASE + CONSTANT.URL.CMS.HTML.LIST_REPORT_FORM;
COMMON.postCommunication(url, params); COMMON.postCommunication(url, params);
} };
/** /**
* send data to open report form of event click warning operation report * send data to open report form of event click warning operation report
* @returns * @returns
*/ */
PICKUP.sendReportFormFromWarningReport = function(operationId,reportType, taskKey, processKey,phaseNo, replyNo) { PICKUP.sendReportFormFromWarningReport = function (operationId, reportType, taskKey, processKey, phaseNo, replyNo) {
//Transition to the report form or operation list screen //Transition to the report form or operation list screen
let params = {}; let params = {};
params.sid = COMMON.getSid(); params.sid = COMMON.getSid();
params.operationId = operationId; params.operationId = operationId;
switch(reportType) { switch (reportType) {
case PICKUP.REPORT_TYPE.REPORTONLY: case PICKUP.REPORT_TYPE.REPORTONLY:
params.taskKey = taskKey; params.taskKey = taskKey;
break; break;
case PICKUP.REPORT_TYPE.INSPECT: case PICKUP.REPORT_TYPE.INSPECT:
params.taskKey = taskKey; params.taskKey = taskKey;
break; break;
case PICKUP.REPORT_TYPE.WITHREPLY: case PICKUP.REPORT_TYPE.WITHREPLY:
params.replyNo = replyNo; params.replyNo = replyNo;
break; break;
case PICKUP.REPORT_TYPE.WORKFLOW: case PICKUP.REPORT_TYPE.WORKFLOW:
params.processKey = processKey; params.processKey = processKey;
params.phaseNo = phaseNo; params.phaseNo = phaseNo;
break; break;
} }
let url = COMMON.format(ClientData.conf_checkApiUrl(), ClientData.userInfo_accountPath()) + CONSTANT.URL.CMS.HTML.BASE + CONSTANT.URL.CMS.HTML.LIST_REPORT_FORM ; let url = COMMON.format(ClientData.conf_checkApiUrl(), ClientData.userInfo_accountPath()) + CONSTANT.URL.CMS.HTML.BASE + CONSTANT.URL.CMS.HTML.LIST_REPORT_FORM;
COMMON.postCommunication(url, params); COMMON.postCommunication(url, params);
} };
...@@ -7,18 +7,20 @@ PushMessageDetail.baseApiUrl = COMMON.format(ClientData.conf_checkApiUrl(), Clie ...@@ -7,18 +7,20 @@ PushMessageDetail.baseApiUrl = COMMON.format(ClientData.conf_checkApiUrl(), Clie
*/ */
PushMessageDetail.dummyMessageDetailJson = { PushMessageDetail.dummyMessageDetailJson = {
pushMessageId: 1, pushMessageId: 1,
pushMessage: "内容が入ります。内容が入ります。内容が入ります。内容が入ります。", pushMessage: '内容が入ります。内容が入ります。内容が入ります。内容が入ります。',
pushSendDate: "2022/07/06 14:14", pushSendDate: '2022/07/06 14:14',
operationName: "絞り検索", operationName: '絞り検索',
pushSendLoginId: "agentec" pushSendLoginId: 'agentec',
} };
/** /**
* init when html loaded * init when html loaded
*/ */
PushMessageDetail.init = function() { PushMessageDetail.init = function () {
//Check if user is logged in
COMMON.checkAuth(false);
//load common html //load common html
TEMPLATE.loadHearder("#includedHeader"); TEMPLATE.loadHearder('#includedHeader');
const navs = [ const navs = [
{ {
titleLang: 'dashboard', titleLang: 'dashboard',
...@@ -32,44 +34,50 @@ PushMessageDetail.init = function() { ...@@ -32,44 +34,50 @@ PushMessageDetail.init = function() {
titleLang: 'messageDetail', titleLang: 'messageDetail',
}, },
]; ];
TEMPLATE.loadMainNavsTitle("#includedMainTitle", "messageDetail", navs, null); TEMPLATE.loadMainNavsTitle('#includedMainTitle', 'messageDetail', navs, null);
//request message detail data //request message detail data
let urlParam = COMMON.getUrlParameter(); let urlParam = COMMON.getUrlParameter();
if (typeof urlParam !== 'object' || typeof urlParam.pushMessageId === 'undefined') { if (typeof urlParam !== 'object' || typeof urlParam.pushMessageId === 'undefined') {
return; return;
} }
PushMessageDetail.getMessageDetail(urlParam.pushMessageId, function(message) { PushMessageDetail.getMessageDetail(urlParam.pushMessageId, function (message) {
PushMessageDetail.showMessage(message); PushMessageDetail.showMessage(message);
}); });
} };
/** /**
* request message data * request message data
* @param {string} pushMessageId * @param {string} pushMessageId
* @param {object} callback * @param {object} callback
*/ */
PushMessageDetail.getMessageDetail = function(pushMessageId, callback) { PushMessageDetail.getMessageDetail = function (pushMessageId, callback) {
let param = { let param = {
sid: COMMON.getSid(), sid: COMMON.getSid(),
pushMessageId: pushMessageId pushMessageId: pushMessageId,
}; };
const url = PushMessageDetail.baseApiUrl; const url = PushMessageDetail.baseApiUrl;
COMMON.cmsAjax(url, param, true, function (json) { COMMON.cmsAjax(
if (callback && json && json.pushMessage) { url,
callback(json.pushMessage); param,
} true,
}, function() { function (json) {
console.log('PushMessageDetail.getMessageDetail error'); if (callback && json && json.pushMessage) {
}); callback(json.pushMessage);
} }
},
function () {
console.log('PushMessageDetail.getMessageDetail error');
},
);
};
/** /**
* Show message data * Show message data
* @param {object} message * @param {object} message
*/ */
PushMessageDetail.showMessage = function(message) { PushMessageDetail.showMessage = function (message) {
$('#content').text(message.pushMessage); $('#content').text(message.pushMessage);
$('#sendDate').text(message.pushSendDate); $('#sendDate').text(message.pushSendDate);
$('#operationName').text(message.operationName); $('#operationName').text(message.operationName);
$('#sender').text(message.pushSendLoginId); $('#sender').text(message.pushSendLoginId);
} };
...@@ -8,8 +8,10 @@ PushMessageList.baseApiUrl = COMMON.format(ClientData.conf_checkApiUrl(), Client ...@@ -8,8 +8,10 @@ PushMessageList.baseApiUrl = COMMON.format(ClientData.conf_checkApiUrl(), Client
/** /**
* Init when html onload * Init when html onload
*/ */
PushMessageList.init = function() { PushMessageList.init = function () {
TEMPLATE.loadHearder("#includedHeader"); //Check if user is logged in
COMMON.checkAuth(false);
TEMPLATE.loadHearder('#includedHeader');
const navs = [ const navs = [
{ {
titleLang: 'dashboard', titleLang: 'dashboard',
...@@ -19,44 +21,50 @@ PushMessageList.init = function() { ...@@ -19,44 +21,50 @@ PushMessageList.init = function() {
titleLang: 'messageListTitle', titleLang: 'messageListTitle',
}, },
]; ];
TEMPLATE.loadMainNavsTitle("#includedMainTitle", "messageListTitle", navs, null); TEMPLATE.loadMainNavsTitle('#includedMainTitle', 'messageListTitle', navs, null);
PushMessageList.getMessageList(function(messageList) { PushMessageList.getMessageList(function (messageList) {
PushMessageList.generateMessageListHtml(messageList.pushMessageList); PushMessageList.generateMessageListHtml(messageList.pushMessageList);
}); });
} };
/** /**
* get Message List from CMS * get Message List from CMS
* @param {function} callback * @param {function} callback
*/ */
PushMessageList.getMessageList = function (callback) { PushMessageList.getMessageList = function (callback) {
let param = { let param = {
sid: COMMON.getSid(), sid: COMMON.getSid(),
}; };
const url = PushMessageList.baseApiUrl; const url = PushMessageList.baseApiUrl;
COMMON.cmsAjax(url, param, true, function (json) { COMMON.cmsAjax(
if (callback) { url,
callback(json); param,
} true,
}, function() { function (json) {
console.log('PushMessageList.getMessageList error'); if (callback) {
}); callback(json);
}
},
function () {
console.log('PushMessageList.getMessageList error');
},
);
}; };
/** /**
* handle click message event * handle click message event
* @param {string} pushMessageId * @param {string} pushMessageId
*/ */
PushMessageList.clickMessage = function(pushMessageId) { PushMessageList.clickMessage = function (pushMessageId) {
COMMON.goUrlWithCurrentParams('pushMessageDetail.html', {pushMessageId: pushMessageId}); COMMON.goUrlWithCurrentParams('pushMessageDetail.html', { pushMessageId: pushMessageId });
} };
/** /**
* generate message list html * generate message list html
* @param {array} messageList * @param {array} messageList
* @returns * @returns
*/ */
PushMessageList.generateMessageListHtml = function(messageList) { PushMessageList.generateMessageListHtml = function (messageList) {
if (typeof messageList === 'undefined' || messageList.length < 1) { if (typeof messageList === 'undefined' || messageList.length < 1) {
//show not found //show not found
$('#messageList .not-found').removeClass('d-none'); $('#messageList .not-found').removeClass('d-none');
...@@ -69,42 +77,45 @@ PushMessageList.generateMessageListHtml = function(messageList) { ...@@ -69,42 +77,45 @@ PushMessageList.generateMessageListHtml = function(messageList) {
var mTitle = message.pushMessage; var mTitle = message.pushMessage;
var mDate = message.pushSendDate; var mDate = message.pushSendDate;
var mSubtitle = message.operationName; var mSubtitle = message.operationName;
var messageLi = $('<li class="card mb-2" id="pushMessageId_' + messageId + '"/>'); var messageLi = $('<li class="card mb-2" id="pushMessageId_' + messageId + '"/>');
if (message.readingFlg) { if (message.readingFlg) {
messageLi.addClass('read'); messageLi.addClass('read');
} else { } else {
messageLi.addClass('unread'); messageLi.addClass('unread');
} }
var messageA = $('<a class="d-block px-3 py-2 text-decoration-none text-dark"/>'); var messageA = $('<a class="d-block px-3 py-2 text-decoration-none text-dark"/>');
messageA.attr('href', "javascript:PushMessageList.clickMessage('" + messageId +"');"); messageA.attr('href', "javascript:PushMessageList.clickMessage('" + messageId + "');");
var titleDiv = $('<div class="fs-12 text-truncate">' + mTitle + '</div>'); var titleDiv = $('<div class="fs-12 text-truncate">' + mTitle + '</div>');
var subTitleMainDiv = $('<div class="d-flex justify-content-between align-items-center"></div>'); var subTitleMainDiv = $('<div class="d-flex justify-content-between align-items-center"></div>');
var subTitleDiv = $('<div class="fs-10 text-truncate">' + mSubtitle + '</div>'); var subTitleDiv = $('<div class="fs-10 text-truncate">' + mSubtitle + '</div>');
var dateDiv = $('<div class="fs-8 text-secondary text-nowrap">' + mDate + '</div>'); var dateDiv = $('<div class="fs-8 text-secondary text-nowrap">' + mDate + '</div>');
subTitleMainDiv.append(subTitleDiv); subTitleMainDiv.append(subTitleDiv);
subTitleMainDiv.append(dateDiv); subTitleMainDiv.append(dateDiv);
messageA.append(titleDiv); messageA.append(titleDiv);
messageA.append(subTitleMainDiv); messageA.append(subTitleMainDiv);
messageLi.append(messageA); messageLi.append(messageA);
$('#messageList').append(messageLi); $('#messageList').append(messageLi);
} }
}; };
/** /**
* dummy message list JSON for test * dummy message list JSON for test
*/ */
PushMessageList.dummyMessageListJson = { PushMessageList.dummyMessageListJson = {
pushMessageList: [{ pushMessageList: [
pushMessageId: 1, {
pushMessage: 'メッセージ内容が入ります。', pushMessageId: 1,
pushSendDate: '2022/07/06 14:14', pushMessage: 'メッセージ内容が入ります。',
operationName: '作業名が入ります。', pushSendDate: '2022/07/06 14:14',
readingFlg: 0, operationName: '作業名が入ります。',
}, { readingFlg: 0,
pushMessageId: 2, },
pushMessage: 'メッセージ内容が入ります。メッセージ内容が入ります。メッセージ内容が入ります。メッセージ内容が入ります。', {
pushSendDate: 'xxxxxxxxxxxxxxxxxxxxxxxxxx', pushMessageId: 2,
operationName: '作業名が入ります。作業名が入ります。作業名が入ります。作業名が入ります。作業名が入ります。作業名が入ります。', pushMessage: 'メッセージ内容が入ります。メッセージ内容が入ります。メッセージ内容が入ります。メッセージ内容が入ります。',
readingFlg: 1, pushSendDate: 'xxxxxxxxxxxxxxxxxxxxxxxxxx',
}] operationName: '作業名が入ります。作業名が入ります。作業名が入ります。作業名が入ります。作業名が入ります。作業名が入ります。',
readingFlg: 1,
},
],
}; };
...@@ -3,6 +3,9 @@ ...@@ -3,6 +3,9 @@
var RF = {}; var RF = {};
RF.init = function () { RF.init = function () {
//Check if user is logged in
COMMON.checkAuth(false);
RF.loadCommon(); RF.loadCommon();
RF.initFormView(); RF.initFormView();
......
...@@ -2,39 +2,39 @@ ...@@ -2,39 +2,39 @@
var RL = {}; var RL = {};
RL.init = function() { RL.init = function () {
console.log("ReportList init start"); //Check if user is logged in
// COMMON.checkAuth(true); COMMON.checkAuth(false);
console.log('ReportList init start');
RL.loadCommon(); RL.loadCommon();
RL.initTaskReportList(); RL.initTaskReportList();
}; };
RL.loadCommon = function() { RL.loadCommon = function () {
$("#includedHeader").load("../html/common/header.html" , function() { $('#includedHeader').load('../html/common/header.html', function () {
I18N.initi18n(); I18N.initi18n();
HEADER.init(); HEADER.init();
}); });
$("#includedConfirmModal").load("../html/common/confirmModal.html", function() { $('#includedConfirmModal').load('../html/common/confirmModal.html', function () {
I18N.initi18n(); I18N.initi18n();
}); });
} };
RL.initTaskReportList = function() { RL.initTaskReportList = function () {
if (sessionStorage.OL_operationId) { if (sessionStorage.OL_operationId) {
let params = {}; let params = {};
params.sid = COMMON.getSid(); params.sid = COMMON.getSid();
params.operationId = sessionStorage.OL_operationId; params.operationId = sessionStorage.OL_operationId;
params.returnUrl = CONSTANT.URL.WEB.BASE + CONSTANT.URL.WEB.OPERATION_LIST; params.returnUrl = CONSTANT.URL.WEB.BASE + CONSTANT.URL.WEB.OPERATION_LIST;
let url = COMMON.format(ClientData.conf_checkApiUrl(), ClientData.userInfo_accountPath()) + CONSTANT.URL.CMS.HTML.BASE + CONSTANT.URL.CMS.HTML.TASK_REPORT_LIST; let url = COMMON.format(ClientData.conf_checkApiUrl(), ClientData.userInfo_accountPath()) + CONSTANT.URL.CMS.HTML.BASE + CONSTANT.URL.CMS.HTML.TASK_REPORT_LIST;
$("#reportList").load(url, params); $('#reportList').load(url, params);
} else { } else {
COMMON.displayAlert("error"); COMMON.displayAlert('error');
COMMON.avwScreenMove("index.html"); COMMON.avwScreenMove('index.html');
} }
} };
RL.goPdfPrint = function() {
COMMON.avwScreenMove("pdfPrint.html");
}
RL.goPdfPrint = function () {
COMMON.avwScreenMove('pdfPrint.html');
};
...@@ -12,49 +12,49 @@ SendMessage.contentMaxLength = 207; ...@@ -12,49 +12,49 @@ SendMessage.contentMaxLength = 207;
* Get input content * Get input content
* @returns string * @returns string
*/ */
SendMessage.getCurrentMessageContent = function() { SendMessage.getCurrentMessageContent = function () {
return $('#messageContent').val(); return $('#messageContent').val();
} };
/** /**
* Get operation id selected * Get operation id selected
* @returns string * @returns string
*/ */
SendMessage.getCurrentOperationId = function() { SendMessage.getCurrentOperationId = function () {
return $('#operationSelected').attr('data-operation-id'); return $('#operationSelected').attr('data-operation-id');
} };
/** /**
* Get send type selected * Get send type selected
* @returns string * @returns string
*/ */
SendMessage.getCurrentSendType = function() { SendMessage.getCurrentSendType = function () {
return $('input[name="sendType"]:checked').val(); return $('input[name="sendType"]:checked').val();
} };
/** /**
* Check data required when send message request to cms * Check data required when send message request to cms
* @returns boolean * @returns boolean
*/ */
SendMessage.checkValidation = function() { SendMessage.checkValidation = function () {
const message = SendMessage.getCurrentMessageContent(); const message = SendMessage.getCurrentMessageContent();
if (!ValidationUtil.CheckRequiredForText(message)) { if (!ValidationUtil.CheckRequiredForText(message)) {
alert(I18N.i18nText('msgContentRequired')); alert(I18N.i18nText('msgContentRequired'));
return false; return false;
} }
if (!ValidationUtil.CheckMaxLengthForByte(message, SendMessage.contentMaxLength)) { if (!ValidationUtil.CheckMaxLengthForByte(message, SendMessage.contentMaxLength)) {
alert(COMMON.format(I18N.i18nText('msgContentInvalidLength'), SendMessage.contentMaxLength)); alert(COMMON.format(I18N.i18nText('msgContentInvalidLength'), SendMessage.contentMaxLength));
return false; return false;
} }
const operationId = SendMessage.getCurrentOperationId(); const operationId = SendMessage.getCurrentOperationId();
if (!ValidationUtil.IsNumber(operationId)) { if (!ValidationUtil.IsNumber(operationId)) {
alert(I18N.i18nText('msgOperationRequired')); alert(I18N.i18nText('msgOperationRequired'));
return false; return false;
} }
const sendType = SendMessage.getCurrentSendType(); const sendType = SendMessage.getCurrentSendType();
if (!ValidationUtil.IsNumber(sendType)) { if (!ValidationUtil.IsNumber(sendType)) {
alert(I18N.i18nText('msgSendTypeRequired')); alert(I18N.i18nText('msgSendTypeRequired'));
return false; return false;
} }
return true; return true;
}; };
...@@ -62,7 +62,7 @@ SendMessage.checkValidation = function() { ...@@ -62,7 +62,7 @@ SendMessage.checkValidation = function() {
/** /**
* handle click event of send button * handle click event of send button
*/ */
SendMessage.onClickSend = function() { SendMessage.onClickSend = function () {
if (!SendMessage.checkValidation()) { if (!SendMessage.checkValidation()) {
return; return;
} }
...@@ -74,39 +74,44 @@ SendMessage.onClickSend = function() { ...@@ -74,39 +74,44 @@ SendMessage.onClickSend = function() {
/** /**
* post message data to cms * post message data to cms
* @param {string} message * @param {string} message
* @param {long} operationId * @param {long} operationId
* @param {int} sendType - 0: Group, 1: All * @param {int} sendType - 0: Group, 1: All
*/ */
SendMessage.postMessage = function(message, operationId, sendType) { SendMessage.postMessage = function (message, operationId, sendType) {
let param = { let param = {
sid: COMMON.getSid(), sid: COMMON.getSid(),
message: message, message: message,
operationId: operationId, operationId: operationId,
sendType: sendType sendType: sendType,
}; };
COMMON.cmsAjax(SendMessage.baseApiUrl, param, false, function (json) { COMMON.cmsAjax(
SendMessage.baseApiUrl,
}, function() { param,
console.log('SendMessage.postMessage error'); false,
function (json) {},
}); function () {
console.log('SendMessage.postMessage error');
},
);
}; };
SendMessage.operationSelectedCallback = function(operationId, operationName) { SendMessage.operationSelectedCallback = function (operationId, operationName) {
$('#operationSelected').attr('data-operation-id', operationId); $('#operationSelected').attr('data-operation-id', operationId);
$('#operationSelected').text(operationName); $('#operationSelected').text(operationName);
} };
SendMessage.templateSelectedCallback = function(template) { SendMessage.templateSelectedCallback = function (template) {
$('#messageContent').val(template); $('#messageContent').val(template);
} };
/** /**
* init data, action when screen onload * init data, action when screen onload
*/ */
SendMessage.init = function () { SendMessage.init = function () {
TEMPLATE.loadHearder("#includedHeader"); //Check if user is logged in
COMMON.checkAuth(false);
TEMPLATE.loadHearder('#includedHeader');
const navs = [ const navs = [
{ {
titleLang: 'dashboard', titleLang: 'dashboard',
...@@ -116,7 +121,7 @@ SendMessage.init = function () { ...@@ -116,7 +121,7 @@ SendMessage.init = function () {
titleLang: 'sendMessageTitle', titleLang: 'sendMessageTitle',
}, },
]; ];
TEMPLATE.loadMainNavsTitle("#includedMainTitle", "sendMessageTitle", navs, null); TEMPLATE.loadMainNavsTitle('#includedMainTitle', 'sendMessageTitle', navs, null);
TEMPLATE.loadOperationSelect('#includeOperationSelect', SendMessage.operationSelectedCallback); TEMPLATE.loadOperationSelect('#includeOperationSelect', SendMessage.operationSelectedCallback);
TEMPLATE.loadNotificationSelect('#includeTemplateModal', SendMessage.templateSelectedCallback); TEMPLATE.loadNotificationSelect('#includeTemplateModal', SendMessage.templateSelectedCallback);
$('#messageContent').attr('maxlength', SendMessage.contentMaxLength); $('#messageContent').attr('maxlength', SendMessage.contentMaxLength);
...@@ -124,4 +129,4 @@ SendMessage.init = function () { ...@@ -124,4 +129,4 @@ SendMessage.init = function () {
I18N.initi18n(); I18N.initi18n();
$("label[for='sendTypeGroup']").append(I18N.i18nText('labelSendTypeGroup')); $("label[for='sendTypeGroup']").append(I18N.i18nText('labelSendTypeGroup'));
$("label[for='sendTypeAll']").append(I18N.i18nText('labelSendTypeAll')); $("label[for='sendTypeAll']").append(I18N.i18nText('labelSendTypeAll'));
}; };
\ No newline at end of file
...@@ -4,27 +4,27 @@ var SETTINGS = {}; ...@@ -4,27 +4,27 @@ var SETTINGS = {};
// Init function of page // Init function of page
$(document).ready(function () { $(document).ready(function () {
//Check if user is logged in
COMMON.checkAuth(false); COMMON.checkAuth(false);
SETTINGS.initScreen(); SETTINGS.initScreen();
$("#dspPwdUpd1").click(SETTINGS.dspPwdUpd1_Click); $('#dspPwdUpd1').click(SETTINGS.dspPwdUpd1_Click);
}); });
// Process changing password // Process changing password
SETTINGS.dspPwdUpd1_Click = function(e) { SETTINGS.dspPwdUpd1_Click = function (e) {
e.preventDefault(); e.preventDefault();
var isOK = true; var isOK = true;
var msgError = $('#main-error-message'); var msgError = $('#main-error-message');
// Check validation // Check validation
if (!ValidationUtil.CheckRequiredForText(SETTINGS.getCurrentPassword())) { if (!ValidationUtil.CheckRequiredForText(SETTINGS.getCurrentPassword())) {
isOK = false; isOK = false;
msgError.html(COMMON.format(I18N.i18nText('msgEssential'), I18N.i18nText('txtPwdCurr')).toString()); msgError.html(COMMON.format(I18N.i18nText('msgEssential'), I18N.i18nText('txtPwdCurr')).toString());
msgError.show(); msgError.show();
} } else {
else {
if (!ValidationUtil.CheckRequiredForText(SETTINGS.getNewPassword())) { if (!ValidationUtil.CheckRequiredForText(SETTINGS.getNewPassword())) {
isOK = false; isOK = false;
msgError.html(COMMON.format(I18N.i18nText('msgEssential'), I18N.i18nText('txtPwdNew')).toString()); msgError.html(COMMON.format(I18N.i18nText('msgEssential'), I18N.i18nText('txtPwdNew')).toString());
msgError.show(); msgError.show();
} else if (!ValidationUtil.CheckRequiredForText(SETTINGS.getNewPasswordRe())) { } else if (!ValidationUtil.CheckRequiredForText(SETTINGS.getNewPasswordRe())) {
isOK = false; isOK = false;
msgError.html(COMMON.format(I18N.i18nText('msgEssential'), I18N.i18nText('txtPwdNewRe')).toString()); msgError.html(COMMON.format(I18N.i18nText('msgEssential'), I18N.i18nText('txtPwdNewRe')).toString());
...@@ -38,7 +38,6 @@ SETTINGS.dspPwdUpd1_Click = function(e) { ...@@ -38,7 +38,6 @@ SETTINGS.dspPwdUpd1_Click = function(e) {
} }
} }
if (isOK) { if (isOK) {
// Check min length // Check min length
if (!ValidationUtil.CheckMinLengthForByte(SETTINGS.getNewPassword(), 6)) { if (!ValidationUtil.CheckMinLengthForByte(SETTINGS.getNewPassword(), 6)) {
isOK = false; isOK = false;
...@@ -53,58 +52,53 @@ SETTINGS.dspPwdUpd1_Click = function(e) { ...@@ -53,58 +52,53 @@ SETTINGS.dspPwdUpd1_Click = function(e) {
} }
// Check at least 3 consecutive characters // Check at least 3 consecutive characters
if (ValidationUtil.HasSeqChar(SETTINGS.getNewPassword(), 3)) { if (ValidationUtil.HasSeqChar(SETTINGS.getNewPassword(), 3)) {
isOK = false; isOK = false;
msgError.html(I18N.i18nText('msgHasSeqChar')); msgError.html(I18N.i18nText('msgHasSeqChar'));
msgError.show(); msgError.show();
} }
// Check 4 same characters in before password // Check 4 same characters in before password
if (ValidationUtil.ContainSameSeqChar(SETTINGS.getCurrentPassword(), SETTINGS.getNewPassword(), 4)) { if (ValidationUtil.ContainSameSeqChar(SETTINGS.getCurrentPassword(), SETTINGS.getNewPassword(), 4)) {
isOK = false; isOK = false;
msgError.html(I18N.i18nText('msgContainSameSeqChar')); msgError.html(I18N.i18nText('msgContainSameSeqChar'));
msgError.show(); msgError.show();
} }
} }
// Do changing password // Do changing password
if (isOK) { if (isOK) {
var params = { var params = {
sid: ClientData.userInfo_sid(), sid: ClientData.userInfo_sid(),
loginId: ClientData.userInfo_loginId_session(), loginId: ClientData.userInfo_loginId_session(),
password: SETTINGS.getCurrentPassword(), password: SETTINGS.getCurrentPassword(),
newPassword: SETTINGS.getNewPassword(), newPassword: SETTINGS.getNewPassword(),
language: I18N.getCurrentLanguage(), language: I18N.getCurrentLanguage(),
appId: 4 appId: 4,
}; };
const url = COMMON.format(ClientData.conf_checkApiUrl(), ClientData.userInfo_accountPath()) + CONSTANT.URL.CMS.API.PASSWORD_CHANGE; const url = COMMON.format(ClientData.conf_checkApiUrl(), ClientData.userInfo_accountPath()) + CONSTANT.URL.CMS.API.PASSWORD_CHANGE;
COMMON.cmsAjax(url, params, false, COMMON.cmsAjax(url, params, false, SETTINGS.avwCmsApi_passwordChange_success, SETTINGS.avwCmsApi_passwordChange_fail);
SETTINGS.avwCmsApi_passwordChange_success, } else {
SETTINGS.avwCmsApi_passwordChange_fail);
}
else {
//alert('error'); //alert('error');
} }
}; };
SETTINGS.avwCmsApi_passwordChange_success = function(data) { SETTINGS.avwCmsApi_passwordChange_success = function (data) {
// OK // OK
var msgError = $('#main-error-message'); var msgError = $('#main-error-message');
if (data.httpStatus != CONSTANT.HTTP_STATUS.OK) { if (data.httpStatus != CONSTANT.HTTP_STATUS.OK) {
msgError.html(I18N.i18nText('msgPwdChangeNG')); msgError.html(I18N.i18nText('msgPwdChangeNG'));
msgError.show(); msgError.show();
} } else {
else {
msgError.html(''); msgError.html('');
$("#txtPwdCur").val(""); $('#txtPwdCur').val('');
$("#txtPwdNew").val(""); $('#txtPwdNew').val('');
$("#txtPwdNewRe").val(""); $('#txtPwdNewRe').val('');
/* show messages */ /* show messages */
COMMON.displayAlert('msgPwdChangeOK'); COMMON.displayAlert('msgPwdChangeOK');
} }
}; };
SETTINGS.avwCmsApi_passwordChange_fail = function(xhr, b, c) { SETTINGS.avwCmsApi_passwordChange_fail = function (xhr, b, c) {
/* show error messages */ /* show error messages */
var msgError = $('#main-error-message'); var msgError = $('#main-error-message');
if (xhr.errorMessage && xhr.httpStatus != 0) { if (xhr.errorMessage && xhr.httpStatus != 0) {
...@@ -115,7 +109,6 @@ SETTINGS.avwCmsApi_passwordChange_fail = function(xhr, b, c) { ...@@ -115,7 +109,6 @@ SETTINGS.avwCmsApi_passwordChange_fail = function(xhr, b, c) {
msgError.show(); msgError.show();
}; };
/* /*
---------------------------------------------------------------------------- ----------------------------------------------------------------------------
Event groups [ end ] Event groups [ end ]
...@@ -123,33 +116,32 @@ Event groups [ end ] ...@@ -123,33 +116,32 @@ Event groups [ end ]
*/ */
// Get input current password // Get input current password
SETTINGS.getCurrentPassword = function() { SETTINGS.getCurrentPassword = function () {
return $("#txtPwdCur").val(); return $('#txtPwdCur').val();
}; };
// Get input new password // Get input new password
SETTINGS.getNewPassword = function() { SETTINGS.getNewPassword = function () {
return $("#txtPwdNew").val(); return $('#txtPwdNew').val();
}; };
// Get input new password // Get input new password
SETTINGS.getNewPasswordRe = function() { SETTINGS.getNewPasswordRe = function () {
return $("#txtPwdNewRe").val(); return $('#txtPwdNewRe').val();
}; };
// Initalize screen // Initalize screen
SETTINGS.initScreen = function() { SETTINGS.initScreen = function () {
$("#includedHeader").load("../html/common/header.html" , function() { $('#includedHeader').load('../html/common/header.html', function () {
I18N.initi18n(); I18N.initi18n();
HEADER.init(); HEADER.init();
}); });
$("#includedConfirmModal").load("../html/common/confirmModal.html", function() { $('#includedConfirmModal').load('../html/common/confirmModal.html', function () {
I18N.initi18n(); I18N.initi18n();
}); });
// Login ID // Login ID
$("#txtLoginId").text(ClientData.userInfo_loginId_session()); $('#txtLoginId').text(ClientData.userInfo_loginId_session());
// Account Path // Account Path
$("#txtLoginAccPath").text(ClientData.userInfo_accountPath_session()); $('#txtLoginAccPath').text(ClientData.userInfo_accountPath_session());
// Recent login date // Recent login date
$("#txtLastLoginTime").text(ClientData.userInfo_lastLoginTime()); $('#txtLastLoginTime').text(ClientData.userInfo_lastLoginTime());
}; };
/** /**
* template js * template js
* @since cms:1.4.3.2&1.4.3.3 web:1.0 * @since cms:1.4.3.2&1.4.3.3 web:1.0
*/ */
var TEMPLATE = {}; var TEMPLATE = {};
/** template load header */ /** template load header */
TEMPLATE.loadHearder = function(elmentId) { TEMPLATE.loadHearder = function (elmentId) {
$(elmentId).load("../html/common/header.html" , function() { $(elmentId).load('../html/common/header.html', function () {
$("#iconHomeDashboard").removeClass('active'); $('#iconHomeDashboard').removeClass('active');
$("#iconHomeWorkList").removeClass('active'); $('#iconHomeWorkList').removeClass('active');
if(sessionStorage.activeHomePage == CONSTANT.PAGE_NAME.OPERATION_LIST) if (sessionStorage.activeHomePage == CONSTANT.PAGE_NAME.OPERATION_LIST) {
{ $('#iconHomeWorkList').addClass('active');
$("#iconHomeWorkList").addClass('active'); } else {
} $('#iconHomeDashboard').addClass('active');
else
{
$("#iconHomeDashboard").addClass('active');
} }
I18N.initi18n(); I18N.initi18n();
}); });
} };
/** /**
* template load dashboard setting * template load dashboard setting
* @param {string} elmentId - element to load setting html * @param {string} elmentId - element to load setting html
* @param {*} changeCallback - callback when setting changed * @param {*} changeCallback - callback when setting changed
*/ */
TEMPLATE.loadDashboardSetting = function(elmentId, changeCallback) { TEMPLATE.loadDashboardSetting = function (elmentId, changeCallback) {
$(elmentId).load("dashboardSetting.html", function() { $(elmentId).load('dashboardSetting.html', function () {
DashboardSetting.init(changeCallback); DashboardSetting.init(changeCallback);
I18N.initi18n(); I18N.initi18n();
}); });
} };
/** Template load confirm model */ /** Template load confirm model */
TEMPLATE.loadConfirmModal = function(elmentId) { TEMPLATE.loadConfirmModal = function (elmentId) {
$(elmentId).load("../html/common/confirmModal.html", function() { $(elmentId).load('../html/common/confirmModal.html', function () {
I18N.initi18n(); I18N.initi18n();
}); });
} };
/** Template load operation select */ /** Template load operation select */
TEMPLATE.loadOperationSelect = function(elmentId, selectCallback) { TEMPLATE.loadOperationSelect = function (elmentId, selectCallback) {
$(elmentId).load("operationSelect.html", function() { $(elmentId).load('operationSelect.html', function () {
OperationSelect.init(selectCallback); OperationSelect.init(selectCallback);
I18N.initi18n(); I18N.initi18n();
}); });
} };
/** /**
* show confirm model * show confirm model
*/ */
TEMPLATE.showModalConfirm = function () { TEMPLATE.showModalConfirm = function () {
$("#showConfirm").click(function(){ $('#showConfirm').click(function () {
$("#confirm-modal").modal(); $('#confirm-modal').modal();
}); });
}; };
/** Template load notification content*/ /** Template load notification content*/
TEMPLATE.loadNotificationSelect = function(elmentId, selectCallback) { TEMPLATE.loadNotificationSelect = function (elmentId, selectCallback) {
$(elmentId).load("notificationContent.html", function() { $(elmentId).load('notificationContent.html', function () {
NotificationSelect.init(selectCallback); NotificationSelect.init(selectCallback);
I18N.initi18n(); I18N.initi18n();
}); });
} };
/** /**
* load main navs title html to a element by id * load main navs title html to a element by id
...@@ -71,15 +68,15 @@ TEMPLATE.loadNotificationSelect = function(elmentId, selectCallback) { ...@@ -71,15 +68,15 @@ TEMPLATE.loadNotificationSelect = function(elmentId, selectCallback) {
* @param {string} titleLang - lang of title * @param {string} titleLang - lang of title
* @param {Array} navs - array nav items (titleLang, href) * @param {Array} navs - array nav items (titleLang, href)
*/ */
TEMPLATE.loadMainNavsTitle = function(elmentId, titleLang, navs, completeCallback) { TEMPLATE.loadMainNavsTitle = function (elmentId, titleLang, navs, completeCallback) {
var titleHtmlPath = '../common/mainTitle.html'; var titleHtmlPath = '../common/html/mainTitle.html';
if (navs) { if (navs) {
titleHtmlPath = '../common/mainNavTitle.html'; titleHtmlPath = '../common/html/mainNavTitle.html';
} }
$(elmentId).load(titleHtmlPath , function(data) { $(elmentId).load(titleHtmlPath, function (data) {
$(elmentId).replaceWith(data); $(elmentId).replaceWith(data);
if (titleLang) { if (titleLang) {
$('#mainTitleHeader').attr("lang", titleLang); $('#mainTitleHeader').attr('lang', titleLang);
} }
if (navs) { if (navs) {
var olElm = $('#mainTitleNavs ol'); var olElm = $('#mainTitleNavs ol');
...@@ -109,4 +106,4 @@ TEMPLATE.loadNotificationSelect = function(elmentId, selectCallback) { ...@@ -109,4 +106,4 @@ TEMPLATE.loadNotificationSelect = function(elmentId, selectCallback) {
completeCallback(); completeCallback();
} }
}); });
} };
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