Commit 3fe481c1 by Kang Donghun

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

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