Commit 15b472cb by Takumi Imai

レビュー対応

parent 1d2aefce
...@@ -131,14 +131,14 @@ RF.initFormView = function () { ...@@ -131,14 +131,14 @@ RF.initFormView = function () {
* back page url * back page url
*/ */
RF.backPage = function () { RF.backPage = function () {
const reportType = sessionStorage.getItem('reportType');
if (sessionStorage.activeHomePage == CONSTANT.PAGE_TAB.DASHBOARD) { if (sessionStorage.activeHomePage == CONSTANT.PAGE_TAB.DASHBOARD) {
if (addReportFlg == 1 || reportType == CONSTANT.REPORT_TYPE_INT.ROUTINE) { if (sessionStorage.getItem('pickUpType') == CONSTANT.PICK_UP_TYPE.NEW_REPORT) {
COMMON.avwScreenMove('reportList.html'); COMMON.avwScreenMove('reportList.html');
} else { } else {
COMMON.avwScreenMove('pickup.html'); COMMON.avwScreenMove('pickup.html');
} }
} else { } else {
const reportType = sessionStorage.getItem('reportType');
if (addReportFlg == 1 || reportType == CONSTANT.REPORT_TYPE_INT.ROUTINE) { if (addReportFlg == 1 || reportType == CONSTANT.REPORT_TYPE_INT.ROUTINE) {
COMMON.avwScreenMove('reportList.html'); COMMON.avwScreenMove('reportList.html');
} else { } else {
......
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