Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
check
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abook_web
check
Commits
2f80b26e
Commit
2f80b26e
authored
Nov 10, 2022
by
Kang Donghun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed codes for pdf print test
parent
11089b39
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
12 deletions
+19
-12
abweb/common/js/header.js
+9
-9
abweb/js/operationList/operationList.js
+10
-3
No files found.
abweb/common/js/header.js
View file @
2f80b26e
...
...
@@ -9,17 +9,17 @@
/** Direct home page setting */
HEADER
.
goToHomePage
=
function
(
pageId
)
{
DashboardSetting
.
getSettingData
(
function
(
settings
)
{
if
(
settings
.
dashboardHome
==
1
)
{
HEADER
.
goDashboard
();
}
else
{
//
DashboardSetting.getSettingData(function (settings) {
//
if(settings.dashboardHome == 1)
//
{
//
HEADER.goDashboard();
//
}
//
else
//
{
HEADER
.
goOperationList
();
}
//
}
});
//
});
}
/**
...
...
abweb/js/operationList/operationList.js
View file @
2f80b26e
...
...
@@ -506,10 +506,17 @@ OL.resetSearch = function () {
OL
.
sendOperation
=
function
(
operationId
,
operationType
,
reportType
,
enableAddReport
)
{
//save operation logs. needed for sorting
OL
.
saveOperationReadingLog
(
operationId
,
operationType
,
reportType
);
//Transition to the report form or operation list screen
let
params
=
{};
params
.
sid
=
COMMON
.
getSid
();
params
.
operationId
=
operationId
;
params
.
returnUrl
=
CONSTANT
.
URL
.
WEB
.
BASE
+
CONSTANT
.
URL
.
WEB
.
OPERATION_LIST
;
const
url
=
OL
.
createUrlOfOperation
(
enableAddReport
,
reportType
);
sessionStorage
.
OL_operationId
=
operationId
;
COMMON
.
avwScreenMove
(
"reportList.html"
);
// COMMON.avwScreenMove("taskList.html");
COMMON
.
postCommunication
(
url
,
params
);
// //Transition to the report form or operation list screen
// sessionStorage.OL_operationId = operationId;
// COMMON.avwScreenMove("reportList.html");
};
/**
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment