Commit 74570abf by Takumi Imai

#49768 作業一覧の送信する値のロジック修正

parent a0ff7e4c
...@@ -510,7 +510,7 @@ OL.sendOperation = function (operationId, operationType, reportType, enableAddRe ...@@ -510,7 +510,7 @@ OL.sendOperation = function (operationId, operationType, reportType, enableAddRe
let params = {}; let params = {};
params.sid = COMMON.getSid(); params.sid = COMMON.getSid();
params.operationId = operationId; params.operationId = operationId;
const url = OL.createUrlOfOperation(enableAddReport, reportType, operationId); const url = OL.createUrlOfOperation(enableAddReport, reportType);
COMMON.postCommunication(url, params); COMMON.postCommunication(url, params);
}; };
...@@ -538,7 +538,6 @@ OL.saveOperationReadingLog = function (operationId, operationType, reportType) { ...@@ -538,7 +538,6 @@ OL.saveOperationReadingLog = function (operationId, operationType, reportType) {
* *
* @param {boolean} enableAddReport * @param {boolean} enableAddReport
* @param {Number} reportType * @param {Number} reportType
* @param {Number} operationId
* @returns url * @returns url
*/ */
OL.createUrlOfOperation = function (enableAddReport, reportType) { OL.createUrlOfOperation = function (enableAddReport, reportType) {
......
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