Commit 3fe481c1 by Kang Donghun

報告&定期点検連携作業の場合、PDF出力ボタンを非表示にする

parent 95bd5b9c
...@@ -7,20 +7,25 @@ ...@@ -7,20 +7,25 @@
var RL = {}; var RL = {};
RL.isQuickReport; RL.isQuickReport;
RL.isQRTableInspect;
/** /**
* init * init
*/ */
RL.init = function () { RL.init = function () {
//Check if user is logged in //Check if user is logged in
COMMON.showLoading(); COMMON.showLoading();
COMMON.checkAuth(false); COMMON.checkAuth(false);
COMMON.checkQuickReport(function(result) { COMMON.checkQuickReport(function(result) {
if (result) RL.isQuickReport = result.isQuickReport; if (result) {
} ); RL.isQuickReport = result.isQuickReport;
RL.loadCommon(); RL.isQRTableInspect = result.isQRTableInspect;
RL.initTaskReportList(); if (RL.isQRTableInspect) RL.isQuickReport = false;
COMMON.closeLoading(); };
});
RL.loadCommon();
RL.initTaskReportList();
COMMON.closeLoading();
}; };
/** /**
......
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