Commit 6f66a2eb by Kang Donghun

Merge branch 'feature/1.0_check_web_dev_imai' into 'feature/1.0_check_web_dev'

課題 96 タイミングによるIO帳票のぼたんIDの取得

See merge request !84
parents 2954515b 03f196e9
...@@ -20,7 +20,6 @@ RF.init = function () { ...@@ -20,7 +20,6 @@ RF.init = function () {
} }
}); });
RF.loadCommon(); RF.loadCommon();
RF.initFormView();
}; };
/** /**
...@@ -91,6 +90,9 @@ RF.loadMainTitleCallback = function () { ...@@ -91,6 +90,9 @@ RF.loadMainTitleCallback = function () {
elmA.append(elmImg); elmA.append(elmImg);
$('#mainTitleHeader').after(elmA); $('#mainTitleHeader').after(elmA);
$('#mainTitleHeader').after(elmInspect); $('#mainTitleHeader').after(elmInspect);
// load form html
RF.initFormView();
}; };
/** /**
...@@ -131,6 +133,11 @@ RF.initFormView = function () { ...@@ -131,6 +133,11 @@ RF.initFormView = function () {
* back page url * back page url
*/ */
RF.backPage = function () { RF.backPage = function () {
// need to save Data
setTimeout(function () {
RF.initFormView();
}, 750);
if (sessionStorage.activeHomePage == CONSTANT.PAGE_TAB.DASHBOARD) { if (sessionStorage.activeHomePage == CONSTANT.PAGE_TAB.DASHBOARD) {
if (sessionStorage.getItem('pickUpType') == CONSTANT.PICK_UP_TYPE.NEW_REPORT) { if (sessionStorage.getItem('pickUpType') == CONSTANT.PICK_UP_TYPE.NEW_REPORT) {
COMMON.avwScreenMove('reportList.html'); COMMON.avwScreenMove('reportList.html');
......
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