Commit 3fe481c1 by Kang Donghun

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

parent 95bd5b9c
...@@ -7,6 +7,7 @@ ...@@ -7,6 +7,7 @@
var RL = {}; var RL = {};
RL.isQuickReport; RL.isQuickReport;
RL.isQRTableInspect;
/** /**
* init * init
...@@ -16,8 +17,12 @@ ...@@ -16,8 +17,12 @@
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.isQRTableInspect = result.isQRTableInspect;
if (RL.isQRTableInspect) RL.isQuickReport = false;
};
});
RL.loadCommon(); RL.loadCommon();
RL.initTaskReportList(); RL.initTaskReportList();
COMMON.closeLoading(); 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