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
80510bf8
Commit
80510bf8
authored
Nov 16, 2022
by
Kang Donghun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
change url to report list and delete unused log
parent
953d3ece
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
1 additions
and
11 deletions
+1
-11
abweb/common/js/common.js
+0
-9
abweb/js/pdfPrint/pdfPrint.js
+1
-1
abweb/js/reportForm/reportForm.js
+0
-1
No files found.
abweb/common/js/common.js
View file @
80510bf8
...
...
@@ -674,17 +674,13 @@ var UserSession = function () {
*/
UserSession
.
prototype
.
init
=
function
(
option
)
{
this
.
available
=
false
;
console
.
log
(
"kdh check userSession init option : "
+
option
);
if
(
option
==
'restore'
)
{
var
value
=
null
;
try
{
value
=
this
.
_get
(
'init'
);
console
.
log
(
"kdh check userSession init value : "
+
value
);
}
catch
(
e
)
{
value
=
null
;
console
.
log
(
"kdh check userSession init catch : "
+
e
);
}
finally
{
console
.
log
(
"kdh check userSession init final : "
+
value
);
if
(
value
)
{
this
.
available
=
true
;
}
...
...
@@ -721,7 +717,6 @@ UserSession.prototype.set = function (key, value) {
* @returns
*/
UserSession
.
prototype
.
get
=
function
(
key
)
{
console
.
log
(
"kdh check userSession get"
);
var
value
=
null
;
if
(
this
.
available
)
{
value
=
this
.
_get
(
key
);
...
...
@@ -867,15 +862,12 @@ COMMON.setErrorState = function () {
/* get user session object */
COMMON
.
userSession
=
function
()
{
if
(
!
COMMON
.
userSessionObj
)
{
console
.
log
(
"kdh check userSession : COMMON.userSessionObj null"
);
var
obj
=
new
UserSession
();
obj
.
init
(
'restore'
);
if
(
obj
.
available
)
{
console
.
log
(
"kdh check userSession : COMMON.userSessionObj available"
);
COMMON
.
userSessionObj
=
obj
;
return
COMMON
.
userSessionObj
;
}
else
{
console
.
log
(
"kdh check userSession : COMMON.userSessionObj unavailable"
);
return
null
;
}
}
...
...
@@ -918,7 +910,6 @@ var SessionStorageUtils = {
}
},
get
:
function
(
strKey
)
{
console
.
log
(
"kdh check SessionStorageUtils get : "
+
strKey
);
return
COMMON
.
userSession
().
get
(
strKey
);
},
set
:
function
(
strKey
,
objValue
)
{
...
...
abweb/js/pdfPrint/pdfPrint.js
View file @
80510bf8
...
...
@@ -34,7 +34,7 @@ PP.loadCommon = function () {
},
{
titleLang
:
CONSTANT
.
PAGE_NAME
.
REPORT_LIST
,
href
:
CONSTANT
.
URL_TREE_NAME
.
OPERATION
_LIST
,
href
:
CONSTANT
.
URL_TREE_NAME
.
REPORT
_LIST
,
},
{
titleLang
:
CONSTANT
.
PAGE_NAME
.
PDF_PRINT
,
...
...
abweb/js/reportForm/reportForm.js
View file @
80510bf8
...
...
@@ -79,7 +79,6 @@ RF.initBreadcrumb = function () {
}
}
else
{
if
(
sessionStorage
.
getItem
(
"pickUpType"
))
sessionStorage
.
removeItem
(
"pickUpType"
);
console
.
log
(
"kdh check addReportFlg = "
+
addReportFlg
);
if
(
addReportFlg
==
1
)
{
navs
=
[
{
...
...
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