Commit 89f4ee7f by Takumi Imai

#49766 ファイル構成

parent a287a7c8
...@@ -58,7 +58,8 @@ CONSTANT.URL = { ...@@ -58,7 +58,8 @@ CONSTANT.URL = {
}, },
}, },
WEB: { WEB: {
BASE: 'abvw/html/', BASE: 'http://127.0.0.1:5500/abvw/html/',
OPERATION_LIST: 'index',
}, },
}; };
......
...@@ -462,6 +462,7 @@ OL.sendOperation = function (operationId, operationType, reportType, enableAddRe ...@@ -462,6 +462,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;
params.returnUrl = CONSTANT.URL.WEB.BASE + CONSTANT.URL.WEB.OPERATION_LIST;
const url = OL.createUrlOfOperation(enableAddReport, reportType); const url = OL.createUrlOfOperation(enableAddReport, reportType);
COMMON.postCommunication(url, params); COMMON.postCommunication(url, params);
}; };
......
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