Commit c44f3f61 by NGO THI HONG

#49123 fix bug direct phase no

parent 7ecc74c7
......@@ -243,7 +243,7 @@ CHK_L.updateList = function() {
* アプリにコマンド送信
* @param {any} command
*/
CHK_L.sendAppCommand = function (command, operationId, contentId, operationGroupMasterId, directPage, backPage, directTaskKey ) {
CHK_L.sendAppCommand = function (command, operationId, contentId, operationGroupMasterId, directPage, backPage, directTaskKey, directPhaseNo ) {
var param = {};
param.cmd = CHK.getCommand(command);
param.operationId = operationId;
......@@ -252,6 +252,7 @@ CHK_L.sendAppCommand = function (command, operationId, contentId, operationGroup
param.directPage = directPage;
param.backPage = backPage;
param.directTaskKey = directTaskKey;
param.directPhaseNo = directPhaseNo;
console.log("CHK_L.sendAppCommand " + JSON.stringify(param));
CHK.sendABookCheckApi(param);
}
......
......@@ -215,7 +215,7 @@ CHK_pu.createContinousWorkList = function(operationList, isSearched = false) {
else
{
ahrefRequiredFlg = $("<a href=\"javascript:CHK_L.sendAppCommand('goOperation', '" + operationList[i].operationId + "', '" + operationList[i].contentId
+ " ', null ,'DETAIL_FORM_INPUT' ,'CONTINOUS_WORK','" + operationList[i].processList[j].processKey + "');\" class='d-block px-3 py-2 text-decoration-none text-dark'></a>");
+ " ', null ,'DETAIL_FORM_INPUT' ,'CONTINOUS_WORK','" + operationList[i].processList[j].processKey + "','" + operationList[i].processList[j].phaseList[g].phaseNo + "');\" class='d-block px-3 py-2 text-decoration-none text-dark'></a>");
}
var divTitle = $("<div class='title'>" + operationList[i].operationName + "</div>");
var divSubTitleWrap = $("<div class='sub-title-wrap'> </div>");
......
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