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
f1a599f0
Commit
f1a599f0
authored
Nov 17, 2022
by
Takumi Imai
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'feature/1.0_check_web_dev' into feature/1.0_check_web_dev_imai
parents
9013b5bd
739e1686
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
1324 additions
and
1328 deletions
+1324
-1328
abweb/common/js/common.js
+1316
-1327
abweb/html/pickup.html
+1
-1
abweb/js/reportList/reportList.js
+7
-0
No files found.
abweb/common/js/common.js
View file @
f1a599f0
...
...
@@ -11,1330 +11,1318 @@
*
* @since cms:1.4.3.2&1.4.3.3 web:1.0
*/
var
COMMON
=
{};
CONSTANT
.
PAGE_NAME
=
{
DASHBOARD
:
'dashboard'
,
OPERATION_LIST
:
'workList'
,
REPORT_LIST
:
'reportList'
,
REPORT_FORM
:
'reportForm'
,
MESSAGE_DETAIL
:
'pushMessageDetail'
,
MESSAGE_LIST
:
'pushMessageList'
,
SEND_MESSAGE
:
'sendMessage'
,
SETTING
:
'accountSetting'
,
PICKUP
:
'pickup'
,
PDF_PRINT
:
'pdfPrint'
,
DEFAULT
:
'index'
,
LOGIN
:
'./login.html'
,
};
COMMON
.
loginCheckPageList
=
[
CONSTANT
.
PAGE_NAME
.
DEFAULT
,
CONSTANT
.
PAGE_NAME
.
DASHBOARD
,
CONSTANT
.
PAGE_NAME
.
REPORT_LIST
,
CONSTANT
.
PAGE_NAME
.
REPORT_FORM
,
CONSTANT
.
PAGE_NAME
.
MESSAGE_DETAIL
,
CONSTANT
.
PAGE_NAME
.
MESSAGE_LIST
,
CONSTANT
.
PAGE_NAME
.
SEND_MESSAGE
,
CONSTANT
.
PAGE_NAME
.
SETTING
,
CONSTANT
.
PAGE_NAME
.
PICKUP
,
CONSTANT
.
PAGE_NAME
.
PDF_PRINT
];
COMMON
.
hasErrorKey
=
'AVW_HASERR'
;
$
(
document
).
ready
(
function
()
{
const
checkUrl
=
location
.
href
.
substring
(
location
.
href
.
lastIndexOf
(
'/'
)
+
1
,
location
.
href
.
lastIndexOf
(
".html"
));
if
(
COMMON
.
loginCheckPageList
.
includes
(
checkUrl
))
{
if
(
!
COMMON
.
checkLogin
(
CONSTANT
.
PAGE_NAME
.
LOGIN
)){
return
;
}
}
})
/**
* page transition without outputting a warning message
* @param {*} url
*/
COMMON
.
avwScreenMove
=
function
(
url
)
{
COMMON
.
showLoading
();
window
.
onbeforeunload
=
null
;
window
.
location
=
url
;
};
/**
* show loading dialog
* show msg by key
*
* @param {String} key
*/
COMMON
.
showLoading
=
function
()
{
$
(
'#loader'
).
css
(
{
'width'
:
$
(
window
).
width
(),
'height'
:
$
(
window
).
height
()
});
document
.
getElementById
(
'loader'
).
style
.
display
=
'block'
;
};
/**
* close loading
*/
COMMON
.
closeLoading
=
function
()
{
setTimeout
(
function
(){
document
.
getElementById
(
'loader'
).
style
.
display
=
'none'
;
},
1000
);
};
/**
* show confirm modal with yes, no buttons
* @param {Object} data - Object with {title, message, confirmYes, confirmNo}
* @param {callback} confirmCallback - The callback that handles the confirm button clicked
*/
COMMON
.
showConfirmModal
=
function
(
data
,
confirmCallback
)
{
if
(
data
)
{
let
title
=
''
;
if
(
data
.
title
)
{
title
=
data
.
title
;
}
$
(
'#confirm-modal .modal-title'
).
text
(
title
);
let
message
=
''
;
if
(
data
.
message
)
{
message
=
data
.
message
;
}
$
(
'#confirm-modal #msgModel'
).
text
(
message
);
if
(
data
.
confirmYes
)
{
$
(
'#confirm-modal #confirmYes'
).
text
(
data
.
confirmYes
);
$
(
'#confirm-modal #confirmYes'
).
removeClass
(
'd-none'
);
$
(
'#confirm-modal #confirmYes'
).
off
(
'click'
);
//remove all old click handlers
$
(
'#confirm-modal #confirmYes'
).
click
(
function
()
{
$
(
'#confirm-modal .close'
).
click
();
if
(
confirmCallback
)
{
//timeout for animation modal close
setTimeout
(
function
()
{
confirmCallback
();
},
500
);
}
});
}
else
{
$
(
'#confirm-modal #confirmYes'
).
addClass
(
'd-none'
);
}
if
(
data
.
confirmNo
)
{
$
(
'#confirm-modal #confirmNo'
).
text
(
data
.
confirmNo
);
$
(
'#confirm-modal #confirmNo'
).
removeClass
(
'd-none'
);
}
else
{
$
(
'#confirm-modal #confirmNo'
).
addClass
(
'd-none'
);
}
}
$
(
'#showConfirmModalButton'
).
click
();
};
/**
* Show confirm modal with defaults: title, yes, no
* @param {string} messageCode
* @param {callback} confirmCallback - The callback that handles the confirm button clicked
* @param {Object} options - Object with {titleCode, message, confirmYesCode, confirmNoCode}
*/
COMMON
.
showConfirm
=
function
(
messageCode
,
confirmCallback
,
options
=
{})
{
const
defaultParams
=
{
titleCode
:
'confirmation'
,
confirmYesCode
:
'confirmYes'
,
confirmNoCode
:
'confirmNo'
}
const
params
=
Object
.
assign
(
defaultParams
,
options
);
let
message
=
''
;
if
(
messageCode
)
{
message
=
I18N
.
i18nText
(
messageCode
);
if
(
typeof
message
===
'undefined'
)
{
//lang of messageCode undefined, use message or messageCode
if
(
params
.
message
)
{
message
=
params
.
message
;
}
else
{
message
=
messageCode
;
}
}
}
else
if
(
params
.
message
)
{
message
=
params
.
message
;
}
let
title
=
I18N
.
i18nText
(
params
.
titleCode
);
if
(
params
.
title
)
{
title
=
params
.
title
;
}
COMMON
.
showConfirmModal
({
message
:
message
,
title
:
title
,
confirmYes
:
I18N
.
i18nText
(
params
.
confirmYesCode
),
confirmNo
:
I18N
.
i18nText
(
params
.
confirmNoCode
)
},
confirmCallback
);
};
/**
* show alert message by confirm modal html
* @param {String} messageCode
* @param {string} titleCode
* @param {Object} options - Data Options {message, titleCode, confirmNoCode}
*/
COMMON
.
showAlert
=
function
(
messageCode
,
titleCode
=
'error'
,
options
=
{})
{
const
defaultParams
=
{
titleCode
:
titleCode
?
titleCode
:
'error'
,
confirmYesCode
:
null
,
confirmNoCode
:
'close'
,
}
const
params
=
Object
.
assign
(
defaultParams
,
options
);
COMMON
.
showConfirm
(
messageCode
,
null
,
params
);
};
/**
* close alert
*/
COMMON
.
alertClose
=
function
()
{
$
(
'.alert-overlay'
).
addClass
(
'd-none'
);
$
(
'.alert-area'
).
addClass
(
'd-none'
);
$
(
'body'
).
css
(
'overflow'
,
'visible'
);
};
/**
* go Url page With Current Params
*
* ios will remove all web types data when reopen webview
* need add common parameters: app, lang, debug, mobile_flg, isChat, ...
*
* @param {String} url
* @param {Object} params
*/
COMMON
.
goUrlWithCurrentParams
=
function
(
url
,
params
)
{
if
(
!
params
)
{
location
.
href
=
CONSTANT
.
URL
.
WEB
.
BASE
+
url
;
}
const
mixParams
=
Object
.
assign
(
COMMON
.
getUrlParameter
(),
params
);
if
(
url
.
includes
(
'?'
))
{
location
.
href
=
url
+
'&'
+
new
URLSearchParams
(
mixParams
);
}
else
{
location
.
href
=
url
+
'?'
+
new
URLSearchParams
(
mixParams
);
}
};
/**
* get url parameter
*
*/
COMMON
.
getUrlParameter
=
function
()
{
var
ret
=
{};
if
(
location
.
search
)
{
var
param
=
{};
location
.
search
.
substring
(
1
)
.
split
(
'&'
)
.
forEach
(
function
(
val
)
{
var
kv
=
val
.
split
(
'='
);
param
[
kv
[
0
]]
=
kv
[
1
];
});
ret
=
param
;
}
console
.
log
({
ret
:
ret
});
return
ret
;
};
/**
* get sid in local Storage
*
*/
COMMON
.
getSid
=
function
()
{
return
ClientData
.
userInfo_sid
();
};
/**
* cms communication
*
* @param {String} url
* @param {Json} param
* @param {boolean} async
* @param {Object} callback
* @param {Object} errorCallback
* @param {number} type
*/
COMMON
.
cmsAjax
=
function
(
url
,
param
,
async
=
true
,
callback
,
errorCallback
,
type
)
{
var
sysSettings
=
new
COMMON
.
sysSetting
();
if
(
url
)
{
$
.
ajax
({
type
:
'post'
,
url
:
url
,
data
:
param
,
dataType
:
type
?
type
:
'json'
,
cache
:
false
,
async
:
async
,
crossDomain
:
true
,
beforeSend
:
function
(
xhr
)
{
xhr
.
setRequestHeader
(
'X-AGT-AppId'
,
sysSettings
.
appName
);
xhr
.
setRequestHeader
(
'X-AGT-AppVersion'
,
sysSettings
.
appVersion
);
},
success
:
function
(
result
)
{
if
(
type
==
'text'
)
{
if
(
callback
)
callback
(
result
);
return
;
}
if
(
result
.
httpStatus
==
'200'
)
{
if
(
callback
)
callback
(
result
);
}
else
if
(
errorCallback
)
{
errorCallback
(
result
);
}
else
if
(
result
.
httpStatus
==
'401'
)
{
COMMON
.
goUrlWithCurrentParams
(
CONSTANT
.
PAGE_NAME
.
LOGIN
);
}
else
if
(
result
.
httpStatus
==
'403'
)
{
COMMON
.
closeLoading
();
COMMON
.
showAlert
(
'errorOccurred'
);
}
else
{
COMMON
.
closeLoading
();
COMMON
.
showAlert
(
result
.
message
);
}
},
error
:
function
(
XMLHttpRequest
,
textStatus
,
errorThrown
)
{
if
(
errorCallback
)
{
errorCallback
(
XMLHttpRequest
,
textStatus
,
errorThrown
);
}
else
{
COMMON
.
closeLoading
();
COMMON
.
showAlert
(
'errorCommunicationFailed'
);
}
},
});
}
else
{
if
(
errorCallback
)
{
errorCallback
();
}
else
{
COMMON
.
closeLoading
();
COMMON
.
showAlert
(
'errorOccurred'
);
}
}
};
/**
* Check if user is logged in
*
* @param {boolean} async
*/
COMMON
.
checkAuth
=
function
(
async
=
true
)
{
let
params
=
{};
params
.
sid
=
COMMON
.
getSid
;
const
url
=
COMMON
.
format
(
ClientData
.
conf_checkApiUrl
(),
ClientData
.
userInfo_accountPath
())
+
CONSTANT
.
URL
.
CMS
.
API
.
AUTH_SESSION
;
COMMON
.
cmsAjax
(
url
,
params
,
async
,
null
,
function
()
{
COMMON
.
goUrlWithCurrentParams
(
CONSTANT
.
PAGE_NAME
.
LOGIN
);
});
};
var
ClientData
=
{
// Local :userInfo_account path:String
userInfo_accountPath
:
function
(
data
)
{
if
(
arguments
.
length
>
0
)
{
COMMON
.
userSetting
().
set
(
CONSTANT
.
KEYS
.
userInfo_accountPath
,
data
);
}
else
{
return
COMMON
.
userSetting
().
get
(
CONSTANT
.
KEYS
.
userInfo_accountPath
);
}
},
// Local :userInfo_loginID:String
userInfo_loginId
:
function
(
data
)
{
if
(
arguments
.
length
>
0
)
{
COMMON
.
userSetting
().
set
(
CONSTANT
.
KEYS
.
userInfo_loginId
,
data
);
}
else
{
return
COMMON
.
userSetting
().
get
(
CONSTANT
.
KEYS
.
userInfo_loginId
);
}
},
// Local :userInfo_Account Information Storage Flag:Char(Y:Available, N:Not Available)
userInfo_rememberLogin
:
function
(
data
)
{
if
(
arguments
.
length
>
0
)
{
COMMON
.
userSetting
().
set
(
CONSTANT
.
KEYS
.
userInfo_rememberLogin
,
data
);
}
else
{
return
COMMON
.
userSetting
().
get
(
CONSTANT
.
KEYS
.
userInfo_rememberLogin
);
}
},
// Session :userInfo_loginID:String
userInfo_loginId_session
:
function
(
data
)
{
if
(
arguments
.
length
>
0
)
{
SessionStorageUtils
.
set
(
CONSTANT
.
KEYS
.
userInfo_loginId
,
data
);
}
else
{
return
SessionStorageUtils
.
get
(
CONSTANT
.
KEYS
.
userInfo_loginId
);
}
},
// Session :userInfo_account path:String
userInfo_accountPath_session
:
function
(
data
)
{
if
(
arguments
.
length
>
0
)
{
SessionStorageUtils
.
set
(
CONSTANT
.
KEYS
.
userInfo_accountPath
,
data
);
}
else
{
return
SessionStorageUtils
.
get
(
CONSTANT
.
KEYS
.
userInfo_accountPath
);
}
},
// Session
userInfo_userName
:
function
(
data
)
{
if
(
arguments
.
length
>
0
)
{
SessionStorageUtils
.
set
(
CONSTANT
.
KEYS
.
userInfo_userName
,
data
);
}
else
{
return
SessionStorageUtils
.
get
(
CONSTANT
.
KEYS
.
userInfo_userName
);
}
},
// Local :userInfo_Last login date and time:Datetime
userInfo_lastLoginTime
:
function
(
data
)
{
if
(
arguments
.
length
>
0
)
{
COMMON
.
operateData
(
arguments
,
CONSTANT
.
KEYS
.
userInfo_lastLoginTime
,
undefined
);
}
else
{
return
COMMON
.
operateData
(
arguments
,
CONSTANT
.
KEYS
.
userInfo_lastLoginTime
,
undefined
);
}
},
// Session:userInfo_SessionID:String
userInfo_sid
:
function
(
data
)
{
if
(
arguments
.
length
>
0
)
{
SessionStorageUtils
.
set
(
CONSTANT
.
KEYS
.
userInfo_sid
,
data
);
// COMMON.userSetting().set(CONSTANT.KEYS.userInfo_sid, data);
}
else
{
// return COMMON.userSetting().get(CONSTANT.KEYS.userInfo_sid);
if
(
COMMON
.
userSession
())
{
return
SessionStorageUtils
.
get
(
CONSTANT
.
KEYS
.
userInfo_sid
);
}
return
null
;
}
},
// Local: userInfo_SessionID:String
userInfo_sid_local
:
function
(
data
)
{
if
(
arguments
.
length
>
0
)
{
COMMON
.
userSetting
().
set
(
CONSTANT
.
KEYS
.
userInfo_sid_local
,
data
);
}
else
{
return
COMMON
.
userSetting
().
get
(
CONSTANT
.
KEYS
.
userInfo_sid_local
);
}
},
// Local: Session ID backup
userInfo_sid_local_bak
:
function
(
data
)
{
if
(
arguments
.
length
>
0
)
{
COMMON
.
userSetting
().
set
(
CONSTANT
.
KEYS
.
userInfo_sid_bak
,
data
);
}
else
{
return
COMMON
.
userSetting
().
get
(
CONSTANT
.
KEYS
.
userInfo_sid_bak
);
}
},
// Session :Notification information (pushInfo)_Number of new arrivals:Interger
pushInfo_newMsgNumber
:
function
(
data
)
{
if
(
arguments
.
length
>
0
)
{
SessionStorageUtils
.
set
(
CONSTANT
.
KEYS
.
pushInfo_newMsgNumber
,
data
);
}
else
{
return
SessionStorageUtils
.
get
(
CONSTANT
.
KEYS
.
pushInfo_newMsgNumber
);
}
},
// apiUrl
conf_apiUrl
:
function
(
data
)
{
if
(
arguments
.
length
>
0
)
{
SessionStorageUtils
.
set
(
CONSTANT
.
KEYS
.
conf_apiUrl
,
data
);
}
else
{
return
SessionStorageUtils
.
get
(
CONSTANT
.
KEYS
.
conf_apiUrl
);
}
},
// api login url
conf_apiLoginUrl
:
function
(
data
)
{
if
(
arguments
.
length
>
0
)
{
SessionStorageUtils
.
set
(
CONSTANT
.
KEYS
.
conf_apiLoginUrl
,
data
);
}
else
{
return
SessionStorageUtils
.
get
(
CONSTANT
.
KEYS
.
conf_apiLoginUrl
);
}
},
//check api url
conf_checkApiUrl
:
function
(
data
)
{
if
(
arguments
.
length
>
0
)
{
SessionStorageUtils
.
set
(
CONSTANT
.
KEYS
.
conf_checkApiUrl
,
data
);
}
else
{
return
SessionStorageUtils
.
get
(
CONSTANT
.
KEYS
.
conf_checkApiUrl
);
}
},
// api resorce dl url
conf_apiResourceDlUrl
:
function
(
data
)
{
if
(
arguments
.
length
>
0
)
{
SessionStorageUtils
.
set
(
CONSTANT
.
KEYS
.
conf_apiResourceDlUrl
,
data
);
}
else
{
return
SessionStorageUtils
.
get
(
CONSTANT
.
KEYS
.
conf_apiResourceDlUrl
);
}
},
// Local :userInfo_password_skip_datetime:Datetime
userInfo_pwdSkipDt
:
function
(
data
)
{
if
(
arguments
.
length
>
0
)
{
COMMON
.
operateData
(
arguments
,
CONSTANT
.
KEYS
.
userInfo_pwdSkipDt
,
undefined
);
}
else
{
return
COMMON
.
operateData
(
arguments
,
CONSTANT
.
KEYS
.
userInfo_pwdSkipDt
,
undefined
);
}
},
// Session :Business Option (serviceOpt)_ABookCheck:Char(Y:Enable, N:Disable)
serviceOpt_abook_check
:
function
(
data
)
{
if
(
arguments
.
length
>
0
)
{
SessionStorageUtils
.
set
(
CONSTANT
.
KEYS
.
serviceOpt_abook_check
,
data
);
}
else
{
return
SessionStorageUtils
.
get
(
CONSTANT
.
KEYS
.
serviceOpt_abook_check
);
}
},
// Session : Tenant Service_Option(serviceOpt)_ChatFunction:Char(Y:Use, N:Unused)
serviceOpt_chat_function
:
function
(
data
)
{
if
(
arguments
.
length
>
0
)
{
SessionStorageUtils
.
set
(
CONSTANT
.
KEYS
.
serviceOpt_abook_check
,
data
);
}
else
{
return
SessionStorageUtils
.
get
(
CONSTANT
.
KEYS
.
serviceOpt_abook_check
);
}
},
// Session :Business Option(serviceOpt)_Forced password change at first login:Integer(0:None, 1:Prompt, 2:Forced)
serviceOpt_force_pw_change_on_login
:
function
(
data
)
{
if
(
arguments
.
length
>
0
)
{
SessionStorageUtils
.
set
(
CONSTANT
.
KEYS
.
serviceOpt_force_pw_change_on_login
,
data
);
}
else
{
return
SessionStorageUtils
.
get
(
CONSTANT
.
KEYS
.
serviceOpt_force_pw_change_on_login
);
}
},
// Session :Business Option(serviceOpt)_Forced password change at regular login:Integer(0:None, 1:Prompt, 2:Forced)
serviceOpt_force_pw_change_periodically
:
function
(
data
)
{
if
(
arguments
.
length
>
0
)
{
SessionStorageUtils
.
set
(
CONSTANT
.
KEYS
.
serviceOpt_force_pw_change_periodically
,
data
);
}
else
{
return
SessionStorageUtils
.
get
(
CONSTANT
.
KEYS
.
serviceOpt_force_pw_change_periodically
);
}
},
// Session :Business option (serviceOpt)_arbitrary push message:Char(Y:possible, N:not possible)
serviceOpt_usable_push_message
:
function
(
data
)
{
if
(
arguments
.
length
>
0
)
{
SessionStorageUtils
.
set
(
CONSTANT
.
KEYS
.
serviceOpt_usable_push_message
,
data
);
}
else
{
return
SessionStorageUtils
.
get
(
CONSTANT
.
KEYS
.
serviceOpt_usable_push_message
);
}
},
// Local
JumpQueue
:
function
(
data
)
{
if
(
arguments
.
length
>
0
)
{
COMMON
.
operateData
(
arguments
,
CONSTANT
.
KEYS
.
JumpQueue
,
[]);
}
else
{
return
COMMON
.
operateData
(
arguments
,
CONSTANT
.
KEYS
.
JumpQueue
,
[]);
}
},
// Local
IsJumpBack
:
function
(
data
)
{
if
(
arguments
.
length
>
0
)
{
COMMON
.
operateData
(
arguments
,
CONSTANT
.
KEYS
.
IsJumpBack
,
undefined
);
}
else
{
return
COMMON
.
operateData
(
arguments
,
CONSTANT
.
KEYS
.
IsJumpBack
,
undefined
);
}
},
};
/*
* Variables
*/
COMMON
.
userSessionObj
=
null
;
COMMON
.
userSettingObj
=
null
;
COMMON
.
sysSettingObj
=
null
;
/*
* User Settings Class Definition
*/
var
UserSetting
=
function
()
{
this
.
US_KEY
=
'AVWUS'
;
this
.
userSetting
=
this
.
load
();
};
/* get user setting from localStorage */
UserSetting
.
prototype
.
load
=
function
()
{
var
storage
=
window
.
localStorage
;
var
value
=
null
;
var
js
=
null
;
if
(
storage
)
{
var
value
=
storage
.
getItem
(
this
.
US_KEY
);
if
(
!
value
)
{
value
=
'{}'
;
// empty JSON string
}
js
=
JSON
.
parse
(
value
);
}
return
js
;
};
/**
* store user setting
* @param {*} key
* @param {*} value
*/
UserSetting
.
prototype
.
set
=
function
(
key
,
value
)
{
this
.
userSetting
=
this
.
load
();
var
values
=
this
.
userSetting
;
if
(
!
values
)
{
values
=
{
key
:
value
};
}
else
{
values
[
key
]
=
value
;
}
var
storage
=
window
.
localStorage
;
if
(
storage
)
{
var
jsonStr
=
JSON
.
stringify
(
values
);
storage
.
setItem
(
this
.
US_KEY
,
jsonStr
);
}
this
.
userSetting
=
values
;
};
/**
* grab user setting
* @param {*} key
* @returns
*/
UserSetting
.
prototype
.
get
=
function
(
key
)
{
this
.
userSetting
=
this
.
load
();
var
values
=
this
.
userSetting
;
if
(
values
)
{
return
values
[
key
];
}
return
null
;
};
/**
* show user setting object list
* @param {*} elmid
*/
UserSetting
.
prototype
.
show
=
function
(
elmid
)
{
var
storage
=
window
.
localStorage
;
var
tags
=
'<p>'
;
if
(
storage
)
{
var
value
=
storage
.
getItem
(
this
.
US_KEY
);
if
(
value
)
{
var
js
=
JSON
.
parse
(
value
);
$
.
each
(
js
,
function
(
k
,
v
)
{
tags
=
tags
+
'<b>'
+
k
+
'</b>:'
+
v
+
'<br />'
;
});
}
tags
=
tags
+
'</p>'
;
$
(
elmid
).
html
(
tags
);
}
};
/* Retrieve a list of user-set keys */
UserSetting
.
prototype
.
keys
=
function
()
{
var
storage
=
window
.
localStorage
;
var
keyList
=
[];
if
(
storage
)
{
var
value
=
storage
.
getItem
(
this
.
US_KEY
);
if
(
value
)
{
var
js
=
JSON
.
parse
(
value
);
var
i
=
0
;
$
.
each
(
js
,
function
(
k
,
v
)
{
keyList
[
i
++
]
=
k
;
});
}
return
keyList
;
}
return
null
;
};
/**
* Delete user settings
* @param {*} key
*/
UserSetting
.
prototype
.
remove
=
function
(
key
)
{
var
storage
=
window
.
localStorage
;
if
(
storage
)
{
var
value
=
storage
.
getItem
(
this
.
US_KEY
);
if
(
value
)
{
var
js
=
JSON
.
parse
(
value
);
if
(
js
)
{
delete
js
[
key
];
storage
.
setItem
(
this
.
US_KEY
,
JSON
.
stringify
(
js
));
}
}
}
};
/* Delete all user settings */
UserSetting
.
prototype
.
removeAll
=
function
()
{
var
storage
=
window
.
localStorage
;
if
(
storage
)
{
storage
.
remove
(
this
.
US_KEY
);
}
};
/*
* User Session Class Definition
*/
var
UserSession
=
function
()
{
this
.
available
=
false
;
};
/**
* Initialize User Session
* @param {*} option
*/
UserSession
.
prototype
.
init
=
function
(
option
)
{
this
.
available
=
false
;
if
(
option
==
'restore'
)
{
var
value
=
null
;
try
{
value
=
this
.
_get
(
'init'
);
}
catch
(
e
)
{
value
=
null
;
}
finally
{
if
(
value
)
{
this
.
available
=
true
;
}
}
}
else
{
this
.
set
(
'init'
,
new
Date
().
toLocaleString
());
this
.
available
=
true
;
}
};
/**
* store key, value item to user session
* @param {*} key
* @param {*} value
*/
UserSession
.
prototype
.
set
=
function
(
key
,
value
)
{
var
storage
=
window
.
sessionStorage
;
if
(
storage
)
{
if
(
this
.
available
==
false
)
{
if
(
key
==
'init'
)
{
storage
.
setItem
(
'AVWS_'
+
key
,
value
);
}
else
{
throw
new
Error
(
'Session destoryed.'
);
}
}
else
{
storage
.
setItem
(
'AVWS_'
+
key
,
value
);
}
}
};
/**
* get session item value
* @param {*} key
* @returns
*/
UserSession
.
prototype
.
get
=
function
(
key
)
{
var
value
=
null
;
if
(
this
.
available
)
{
value
=
this
.
_get
(
key
);
}
else
{
throw
new
Error
(
'Session Destroyed.'
);
}
return
value
;
};
/**
* get item value from session storage
* @param {*} key
* @returns
*/
UserSession
.
prototype
.
_get
=
function
(
key
)
{
var
storage
=
window
.
sessionStorage
;
var
value
=
null
;
if
(
storage
)
{
value
=
storage
.
getItem
(
'AVWS_'
+
key
);
}
return
value
;
};
/* destroy user session */
UserSession
.
prototype
.
destroy
=
function
()
{
var
storage
=
window
.
sessionStorage
;
if
(
storage
)
{
storage
.
clear
();
this
.
available
=
false
;
}
};
/**
* show user session object list
* @param {*} elmid
*/
UserSession
.
prototype
.
show
=
function
(
elmid
)
{
var
storage
=
window
.
sessionStorage
;
var
tags
=
'<p>'
;
if
(
storage
)
{
for
(
var
i
=
0
;
i
<
storage
.
length
;
i
++
)
{
var
key
=
storage
.
key
(
i
);
var
value
=
storage
.
getItem
(
key
);
tags
=
tags
+
'<b>'
+
key
+
'</b>:'
+
value
+
'<br />'
;
}
tags
=
tags
+
'</p>'
;
$
(
elmid
).
html
(
tags
);
}
};
/* Initialize system */
$
(
function
()
{
// Determine the path where the system configuration files are located
var
location
=
window
.
location
.
toString
().
toLowerCase
();
var
sysFile
=
''
;
if
(
location
.
indexOf
(
'/abweb'
)
<
0
)
{
sysFile
=
'../abweb/common/json/sys/conf.json'
;
}
else
{
sysFile
=
'../common/json/sys/conf.json'
;
}
// Read the system configuration file
$
.
ajax
({
url
:
sysFile
,
async
:
false
,
cache
:
false
,
dataType
:
'json'
,
success
:
function
(
data
)
{
COMMON
.
sysSettingObj
=
data
;
},
error
:
function
(
xmlHttpRequest
,
txtStatus
,
errorThrown
)
{
var
error
=
'Could not load the system configuration file. Please check it.'
;
error
+=
'
\
n'
+
xmlHttpRequest
.
status
+
' '
+
txtStatus
+
' '
+
errorThrown
+
' : '
+
sysFile
;
alert
(
error
);
},
});
// Clear error conditions once at load time.
COMMON
.
clearError
();
//#31919 [Investigation] Business meeting support system GoogleChrome does not work with Bitch in/out.
navigator
.
pointerEnabled
=
navigator
.
maxTouchPoints
>
0
;
// Edge 17 touch support workaround
document
.
documentElement
.
ontouchstart
=
navigator
.
maxTouchPoints
>
0
?
function
()
{}
:
undefined
;
// Chrome 70 touch support workaround
});
// Hide the locking layout
COMMON
.
unlockLayout
=
function
()
{
$
(
'#avw-sys-modal'
).
hide
();
};
// Show the locking layout
COMMON
.
lockLayout
=
function
()
{
if
(
document
.
getElementById
(
'avw-sys-modal'
))
{
$
(
'#avw-sys-modal'
).
show
();
}
else
{
var
tags
=
'<div id="avw-sys-modal"></div>'
;
$
(
'body'
).
prepend
(
tags
);
$
(
'#avw-sys-modal'
).
css
({
opacity
:
0.7
,
position
:
'fixed'
,
top
:
'0'
,
left
:
'0'
,
width
:
$
(
window
).
width
(),
height
:
$
(
window
).
height
(),
background
:
'#999'
,
'z-index'
:
100
,
});
// resize error page
$
(
window
).
resize
(
function
()
{
$
(
'#avw-sys-modal'
).
css
({
width
:
$
(
window
).
width
(),
height
:
$
(
window
).
height
(),
});
});
}
};
/* Clear error condition */
COMMON
.
clearError
=
function
()
{
var
session
=
window
.
sessionStorage
;
if
(
session
)
{
session
.
setItem
(
COMMON
.
hasErrorKey
,
false
);
}
};
/* Get error status */
COMMON
.
hasError
=
function
()
{
var
session
=
window
.
sessionStorage
;
var
isError
=
false
;
if
(
session
)
{
isError
=
session
.
getItem
(
COMMON
.
hasErrorKey
);
}
return
isError
==
'true'
;
};
/* Set to error condition */
COMMON
.
setErrorState
=
function
()
{
var
session
=
window
.
sessionStorage
;
if
(
session
)
{
session
.
setItem
(
COMMON
.
hasErrorKey
,
true
);
}
};
/* get user session object */
COMMON
.
userSession
=
function
()
{
if
(
!
COMMON
.
userSessionObj
)
{
var
obj
=
new
UserSession
();
obj
.
init
(
'restore'
);
if
(
obj
.
available
)
{
COMMON
.
userSessionObj
=
obj
;
return
COMMON
.
userSessionObj
;
}
else
{
return
null
;
}
}
return
COMMON
.
userSessionObj
;
};
/* create user session object */
COMMON
.
createUserSession
=
function
()
{
if
(
COMMON
.
userSessionObj
)
{
COMMON
.
userSessionObj
.
destroy
();
}
else
{
COMMON
.
userSessionObj
=
new
UserSession
();
COMMON
.
userSessionObj
.
init
();
}
return
COMMON
.
userSessionObj
;
};
/* get user setting object */
COMMON
.
userSetting
=
function
()
{
if
(
COMMON
.
userSettingObj
==
null
)
{
COMMON
.
userSettingObj
=
new
UserSetting
();
}
return
COMMON
.
userSettingObj
;
};
/* get system setting object */
COMMON
.
sysSetting
=
function
()
{
return
COMMON
.
sysSettingObj
;
};
/*
* Operations for session storage [start]
*/
var
SessionStorageUtils
=
{
login
:
function
()
{
if
(
COMMON
.
userSession
())
{
// Skip this case
}
else
{
COMMON
.
avwCreateUserSession
();
}
},
get
:
function
(
strKey
)
{
return
COMMON
.
userSession
().
get
(
strKey
);
},
set
:
function
(
strKey
,
objValue
)
{
COMMON
.
userSession
().
set
(
strKey
,
objValue
);
},
clear
:
function
()
{
if
(
COMMON
.
userSession
())
{
COMMON
.
userSession
().
destroy
();
}
},
remove
:
function
(
strKey
)
{
COMMON
.
userSession
().
set
(
strKey
,
null
);
},
};
/*
* Operations for local storage
*/
var
LocalStorageUtils
=
{
getUniqueId
:
function
()
{
var
uniqueId
=
''
;
if
(
COMMON
.
userSetting
().
get
(
CONSTANT
.
KEYS
.
userInfo_accountPath
))
{
uniqueId
+=
COMMON
.
userSetting
().
get
(
CONSTANT
.
KEYS
.
userInfo_accountPath
);
}
if
(
COMMON
.
userSetting
().
get
(
CONSTANT
.
KEYS
.
userInfo_loginId
))
{
uniqueId
+=
'.'
+
COMMON
.
userSetting
().
get
(
CONSTANT
.
KEYS
.
userInfo_loginId
);
}
if
(
uniqueId
!=
''
)
{
uniqueId
+=
'.'
;
}
return
uniqueId
;
},
get
:
function
(
strKey
)
{
var
key
=
this
.
getUniqueId
()
+
strKey
;
return
COMMON
.
userSetting
().
get
(
key
);
},
set
:
function
(
strKey
,
objValue
)
{
var
key
=
this
.
getUniqueId
()
+
strKey
;
COMMON
.
userSetting
().
set
(
key
,
objValue
);
},
remove
:
function
(
strKey
)
{
var
key
=
this
.
getUniqueId
()
+
strKey
;
COMMON
.
userSetting
().
remove
(
key
);
SessionStorageUtils
.
remove
(
strKey
);
},
clear
:
function
()
{
var
localStorageKeys
=
COMMON
.
userSetting
().
keys
();
for
(
var
nIndex
=
0
;
nIndex
<
localStorageKeys
.
length
;
nIndex
++
)
{
var
strKey
=
localStorageKeys
[
nIndex
];
if
((
strKey
+
''
).
contains
(
this
.
getUniqueId
()))
{
COMMON
.
userSetting
().
remove
(
strKey
);
}
}
},
existKey
:
function
(
strKey
)
{
var
keys
=
COMMON
.
userSetting
().
keys
();
var
findKey
=
this
.
getUniqueId
()
+
strKey
;
var
isExisted
=
false
;
if
(
keys
!=
null
&&
keys
!=
undefined
)
{
for
(
var
nIndex
=
0
;
nIndex
<
keys
.
length
;
nIndex
++
)
{
if
(
keys
[
nIndex
]
==
findKey
)
{
isExisted
=
true
;
break
;
}
}
}
return
isExisted
;
},
};
/**
* String.format function def.
* @param {*} fmt
* @returns
*/
COMMON
.
format
=
function
(
fmt
)
{
for
(
var
i
=
1
;
i
<
arguments
.
length
;
i
++
)
{
var
reg
=
new
RegExp
(
'
\\
{'
+
(
i
-
1
)
+
'
\\
}'
,
'g'
);
fmt
=
fmt
.
replace
(
reg
,
arguments
[
i
]);
}
return
fmt
;
};
/**
* Get param url
* @param {*} name
* @param {*} url
* @returns
*/
COMMON
.
getUrlParam
=
function
(
name
,
url
)
{
if
(
!
url
)
{
url
=
window
.
location
.
href
;
}
name
=
name
.
replace
(
/
[\[]
/
,
'
\\
['
).
replace
(
/
[\]]
/
,
'
\\
]'
);
var
regexS
=
'[
\\
?&]'
+
name
+
'=([^&#]*)'
;
var
regex
=
new
RegExp
(
regexS
);
var
results
=
regex
.
exec
(
url
);
if
(
results
==
null
)
{
return
''
;
}
else
{
return
results
[
1
];
}
};
// Toogle Logout Nortice
COMMON
.
ToogleLogoutNortice
=
function
()
{
window
.
onbeforeunload
=
function
(
event
)
{
var
message
=
I18N
.
i18nText
(
'sysInfoWithoutLogout'
);
var
e
=
event
||
window
.
event
;
if
(
e
)
{
e
.
returnValue
=
message
;
}
return
message
;
};
};
/**
* * Get data from localstorage and sessionstorage synchronization If has any
* param (args.length > 0) -> setter If has not param (args.length = 0) ->
* getter . Get from session: + if it existed and key existed in localstorage ->
* return result + else: set value from local to sessionstorage -> return value
* of sessionstorage if value is not empty, otherwise, return default result.
* @param {*} args
* @param {*} strKey
* @param {*} returnDefaultData
* @returns
*/
COMMON
.
operateData
=
function
(
args
,
strKey
,
returnDefaultData
)
{
if
(
args
.
length
>
0
)
{
var
data
=
args
[
0
];
LocalStorageUtils
.
set
(
strKey
,
data
);
SessionStorageUtils
.
set
(
strKey
,
JSON
.
stringify
(
data
));
}
else
{
if
(
SessionStorageUtils
.
get
(
strKey
)
!=
'undefined'
&&
SessionStorageUtils
.
get
(
strKey
)
!=
undefined
&&
SessionStorageUtils
.
get
(
strKey
)
!=
''
&&
SessionStorageUtils
.
get
(
strKey
)
!=
null
&&
SessionStorageUtils
.
get
(
strKey
)
!=
'null'
)
{
if
(
LocalStorageUtils
.
existKey
(
strKey
)
==
true
)
{
return
JSON
.
parse
(
SessionStorageUtils
.
get
(
strKey
));
}
else
{
return
returnDefaultData
;
}
}
else
{
if
(
LocalStorageUtils
.
existKey
(
strKey
)
==
true
)
{
SessionStorageUtils
.
set
(
strKey
,
JSON
.
stringify
(
LocalStorageUtils
.
get
(
strKey
)));
return
JSON
.
parse
(
SessionStorageUtils
.
get
(
strKey
));
}
return
returnDefaultData
;
}
}
};
/**
* UTC current Time (millisecond)
*
* @returns UTC time
*/
COMMON
.
currentTime
=
function
()
{
return
Date
.
now
();
};
/**
* check login information in window.sessionStorage
*
* @returns boolean
*/
COMMON
.
checkLogin
=
function
(
option
)
{
var
userSession
=
COMMON
.
userSession
();
if
(
!
userSession
)
{
/* エラー画面を表示 */
var
tags
=
'<div id="avw-auth-error">'
+
'<div style="display:table; width:100%; height:100%;">'
+
'<div style="display:table-cell; text-align:center; vertical-align:middle;">'
+
'<p><h4>Authentication error</h4>Please use it after login.</p>'
+
'<div><button id="avw-unauth-ok">OK</button></div>'
+
'</div></div></div>'
;
$
(
'body'
).
prepend
(
tags
);
$
(
'#avw-auth-error'
).
css
({
'opacity'
:
1
,
'position'
:
'fixed'
,
'top'
:
'0'
,
'left'
:
'0'
,
'background'
:
"#ffffff"
,
'width'
:
$
(
window
).
width
(),
'height'
:
$
(
window
).
height
(),
'zIndex'
:
'10000'
});
// resize error page
$
(
window
).
resize
(
function
()
{
$
(
'#avw-auth-error'
).
css
(
{
'width'
:
$
(
window
).
width
(),
'height'
:
$
(
window
).
height
()
});
});
var
returnPage
;
if
(
option
)
{
returnPage
=
option
}
else
{
var
sysSetting
=
COMMON
.
sysSetting
();
returnPage
=
sysSetting
.
loginPage
;
}
/* ログイン画面に戻る */
$
(
'#avw-unauth-ok'
).
click
(
function
()
{
window
.
location
=
returnPage
;
});
return
false
;
}
return
true
;
}
/*
* Operations for session storage [ end ]
*/
// =============================================================================================
// Utils for string, date, number [start]
// =============================================================================================
/*
* Convert date to JP format date time [start]
*/
/*
* YYYY/MM/DD HH:MM:SS
*/
Date
.
prototype
.
jpDateTimeString
=
function
()
{
var
strResult
=
''
;
var
strYear
=
this
.
getFullYear
()
+
''
;
var
strMonth
=
this
.
getMonth
()
+
1
+
''
;
var
strDayInMonth
=
this
.
getDate
()
+
''
;
var
strHour
=
this
.
getHours
()
+
''
;
var
strMinute
=
this
.
getMinutes
()
+
''
;
var
strSecond
=
this
.
getSeconds
()
+
''
;
strResult
+=
strYear
.
padLeft
(
'0'
,
4
)
+
'/'
+
strMonth
.
padLeft
(
'0'
,
2
)
+
'/'
+
strDayInMonth
.
padLeft
(
'0'
,
2
);
strResult
+=
' '
+
strHour
.
padLeft
(
'0'
,
2
)
+
':'
+
strMinute
.
padLeft
(
'0'
,
2
)
+
':'
+
strSecond
.
padLeft
(
'0'
,
2
);
return
strResult
;
};
/*
* YYYY-MM-DD HH:MM:SS
*/
Date
.
prototype
.
jpDateTimeString1
=
function
()
{
var
strResult
=
''
;
var
strYear
=
this
.
getFullYear
()
+
''
;
var
strMonth
=
this
.
getMonth
()
+
1
+
''
;
var
strDayInMonth
=
this
.
getDate
()
+
''
;
var
strHour
=
this
.
getHours
()
+
''
;
var
strMinute
=
this
.
getMinutes
()
+
''
;
var
strSecond
=
this
.
getSeconds
()
+
''
;
strResult
+=
strYear
.
padLeft
(
'0'
,
4
)
+
'-'
+
strMonth
.
padLeft
(
'0'
,
2
)
+
'-'
+
strDayInMonth
.
padLeft
(
'0'
,
2
);
strResult
+=
' '
+
strHour
.
padLeft
(
'0'
,
2
)
+
':'
+
strMinute
.
padLeft
(
'0'
,
2
)
+
':'
+
strSecond
.
padLeft
(
'0'
,
2
);
return
strResult
;
};
/*
* yyyy/MM/dd
*/
Date
.
prototype
.
jpDateString
=
function
()
{
var
strResult
=
''
;
var
strYear
=
this
.
getFullYear
()
+
''
;
var
strMonth
=
this
.
getMonth
()
+
1
+
''
;
var
strDayInMonth
=
this
.
getDate
()
+
''
;
strResult
+=
strYear
.
padLeft
(
'0'
,
4
)
+
'/'
+
strMonth
.
padLeft
(
'0'
,
2
)
+
'/'
+
strDayInMonth
.
padLeft
(
'0'
,
2
);
return
strResult
;
};
/*
* HH:mm:ss
*/
Date
.
prototype
.
jpTimeString
=
function
()
{
var
strResult
=
''
;
var
strHour
=
this
.
getHours
()
+
''
;
var
strMinute
=
this
.
getMinutes
()
+
''
;
var
strSecond
=
this
.
getSeconds
()
+
''
;
strResult
+=
' '
+
strHour
.
padLeft
(
'0'
,
2
)
+
':'
+
strMinute
.
padLeft
(
'0'
,
2
)
+
':'
+
strSecond
.
padLeft
(
'0'
,
2
);
return
strResult
;
};
/*
* HH:mm
*/
Date
.
prototype
.
jpShortTimeString
=
function
()
{
var
strResult
=
''
;
var
strHour
=
this
.
getHours
()
+
''
;
var
strMinute
=
this
.
getMinutes
()
+
''
;
var
strSecond
=
this
.
getSeconds
()
+
''
;
strResult
+=
' '
+
strHour
.
padLeft
(
'0'
,
2
)
+
':'
+
strMinute
.
padLeft
(
'0'
,
2
);
return
strResult
;
};
/*
* yyyyMMddHHmmss
*/
Date
.
prototype
.
toIdString
=
function
()
{
var
strResult
=
''
;
var
strYear
=
this
.
getFullYear
()
+
''
;
var
strMonth
=
this
.
getMonth
()
+
1
+
''
;
var
strDayInMonth
=
this
.
getDate
()
+
''
;
var
strHour
=
this
.
getHours
()
+
''
;
var
strMinute
=
this
.
getMinutes
()
+
''
;
var
strSecond
=
this
.
getSeconds
()
+
''
;
var
strMilisecond
=
this
.
getMilliseconds
()
+
''
;
strResult
+=
strYear
.
padLeft
(
'0'
,
4
)
+
strMonth
.
padLeft
(
'0'
,
2
)
+
strDayInMonth
.
padLeft
(
'0'
,
2
);
strResult
+=
strHour
.
padLeft
(
'0'
,
2
)
+
strMinute
.
padLeft
(
'0'
,
2
)
+
strSecond
.
padLeft
(
'0'
,
2
)
+
strMilisecond
.
padLeft
(
'0'
,
3
);
return
strResult
;
};
/**
* Subtract date to get days
* @param {*} targetDate
* @returns
*/
Date
.
prototype
.
subtractByDays
=
function
(
targetDate
)
{
var
milis
=
Math
.
abs
(
this
-
targetDate
);
var
days
=
Math
.
floor
(
milis
/
(
60
*
60
*
24
*
1000
));
return
days
;
};
/**
* add seconds
* @param {*} plusSeconds
* @returns
*/
Date
.
prototype
.
addSeconds
=
function
(
plusSeconds
)
{
var
newDate
=
new
Date
(
this
.
getTime
()
+
plusSeconds
*
1000
);
return
newDate
;
};
/**
* Subtract date to get days
* @param {*} targetDate
* @returns
*/
Date
.
prototype
.
subtractBySeconds
=
function
(
targetDate
)
{
var
milis
=
Math
.
abs
(
this
-
targetDate
);
var
days
=
Math
.
floor
(
milis
/
1000
);
return
days
;
};
/*
* Convert date to JP format date time [ end ]
*/
// trimming space from both side of the string
String
.
prototype
.
trim
=
function
()
{
return
this
.
replace
(
/^
\s
+|
\s
+$/g
,
''
);
};
// trimming space from left side of the string
String
.
prototype
.
trimLeft
=
function
()
{
return
this
.
replace
(
/^
\s
+/
,
''
);
};
// trimming space from right side of the string
String
.
prototype
.
trimRight
=
function
()
{
return
this
.
replace
(
/
\s
+$/
,
''
);
};
/**
* String: pads left
* @param {*} padString
* @param {*} length
* @returns
*/
String
.
prototype
.
padLeft
=
function
(
padString
,
length
)
{
var
str
=
this
;
while
(
str
.
length
<
length
)
str
=
padString
+
str
;
return
str
;
};
/**
* String: pads right
* @param {*} padString
* @param {*} length
* @returns
*/
String
.
prototype
.
padRight
=
function
(
padString
,
length
)
{
var
str
=
this
;
while
(
str
.
length
<
length
)
str
=
str
+
padString
;
return
str
;
};
/**
* Check contain string
* @param {*} string
* @returns
*/
String
.
prototype
.
contains
=
function
(
string
)
{
if
(
this
.
indexOf
(
string
)
!=
-
1
)
{
return
true
;
}
return
false
;
};
/**
* Number: pads left
* @param {*} padString
* @param {*} length
* @returns
*/
Number
.
prototype
.
padLeft
=
function
(
padString
,
length
)
{
var
str
=
this
+
''
;
return
str
.
padLeft
(
padString
,
length
);
};
/**
* Number: pads right
* @param {*} padString
* @param {*} length
* @returns
*/
Number
.
prototype
.
padRight
=
function
(
padString
,
length
)
{
var
str
=
this
+
''
;
return
str
.
padRight
(
padString
,
length
);
};
// Clear data of array
Array
.
prototype
.
clear
=
function
()
{
this
.
splice
(
0
,
this
.
length
);
};
// Function to set position of object to center
jQuery
.
fn
.
center
=
function
()
{
this
.
css
(
'position'
,
'fixed'
);
this
.
css
(
'top'
,
(
$
(
window
).
height
()
-
this
.
height
())
/
2
+
'px'
);
this
.
css
(
'left'
,
(
$
(
window
).
width
()
-
this
.
width
())
/
2
+
'px'
);
return
this
;
};
var
COMMON
=
{};
COMMON
.
loginCheckPageList
=
[
CONSTANT
.
PAGE_NAME
.
DEFAULT
,
CONSTANT
.
PAGE_NAME
.
DASHBOARD
,
CONSTANT
.
PAGE_NAME
.
REPORT_LIST
,
CONSTANT
.
PAGE_NAME
.
REPORT_FORM
,
CONSTANT
.
PAGE_NAME
.
MESSAGE_DETAIL
,
CONSTANT
.
PAGE_NAME
.
MESSAGE_LIST
,
CONSTANT
.
PAGE_NAME
.
SEND_MESSAGE
,
CONSTANT
.
PAGE_NAME
.
SETTING
,
CONSTANT
.
PAGE_NAME
.
PICKUP
,
CONSTANT
.
PAGE_NAME
.
PDF_PRINT
];
COMMON
.
hasErrorKey
=
'AVW_HASERR'
;
$
(
document
).
ready
(
function
()
{
const
checkUrl
=
location
.
href
.
substring
(
location
.
href
.
lastIndexOf
(
'/'
)
+
1
,
location
.
href
.
lastIndexOf
(
".html"
));
if
(
COMMON
.
loginCheckPageList
.
includes
(
checkUrl
))
{
if
(
!
COMMON
.
checkLogin
(
CONSTANT
.
PAGE_NAME
.
LOGIN
)){
return
;
}
}
})
/**
* page transition without outputting a warning message
* @param {*} url
*/
COMMON
.
avwScreenMove
=
function
(
url
)
{
COMMON
.
showLoading
();
window
.
onbeforeunload
=
null
;
window
.
location
=
url
;
};
/**
* show loading dialog
* show msg by key
*
* @param {String} key
*/
COMMON
.
showLoading
=
function
()
{
console
.
log
(
"kdh check showLoading"
);
$
(
'#loader'
).
css
(
{
'width'
:
$
(
window
).
width
(),
'height'
:
$
(
window
).
height
()
});
document
.
getElementById
(
'loader'
).
style
.
display
=
'block'
;
};
/**
* close loading
*/
COMMON
.
closeLoading
=
function
()
{
setTimeout
(
function
(){
document
.
getElementById
(
'loader'
).
style
.
display
=
'none'
;
},
1000
);
};
/**
* show confirm modal with yes, no buttons
* @param {Object} data - Object with {title, message, confirmYes, confirmNo}
* @param {callback} confirmCallback - The callback that handles the confirm button clicked
*/
COMMON
.
showConfirmModal
=
function
(
data
,
confirmCallback
)
{
if
(
data
)
{
let
title
=
''
;
if
(
data
.
title
)
{
title
=
data
.
title
;
}
$
(
'#confirm-modal .modal-title'
).
text
(
title
);
let
message
=
''
;
if
(
data
.
message
)
{
message
=
data
.
message
;
}
$
(
'#confirm-modal #msgModel'
).
text
(
message
);
if
(
data
.
confirmYes
)
{
$
(
'#confirm-modal #confirmYes'
).
text
(
data
.
confirmYes
);
$
(
'#confirm-modal #confirmYes'
).
removeClass
(
'd-none'
);
$
(
'#confirm-modal #confirmYes'
).
off
(
'click'
);
//remove all old click handlers
$
(
'#confirm-modal #confirmYes'
).
click
(
function
()
{
$
(
'#confirm-modal .close'
).
click
();
if
(
confirmCallback
)
{
//timeout for animation modal close
setTimeout
(
function
()
{
confirmCallback
();
},
500
);
}
});
}
else
{
$
(
'#confirm-modal #confirmYes'
).
addClass
(
'd-none'
);
}
if
(
data
.
confirmNo
)
{
$
(
'#confirm-modal #confirmNo'
).
text
(
data
.
confirmNo
);
$
(
'#confirm-modal #confirmNo'
).
removeClass
(
'd-none'
);
}
else
{
$
(
'#confirm-modal #confirmNo'
).
addClass
(
'd-none'
);
}
}
$
(
'#showConfirmModalButton'
).
click
();
};
/**
* Show confirm modal with defaults: title, yes, no
* @param {string} messageCode
* @param {callback} confirmCallback - The callback that handles the confirm button clicked
* @param {Object} options - Object with {titleCode, message, confirmYesCode, confirmNoCode}
*/
COMMON
.
showConfirm
=
function
(
messageCode
,
confirmCallback
,
options
=
{})
{
const
defaultParams
=
{
titleCode
:
'confirmation'
,
confirmYesCode
:
'confirmYes'
,
confirmNoCode
:
'confirmNo'
}
const
params
=
Object
.
assign
(
defaultParams
,
options
);
let
message
=
''
;
if
(
messageCode
)
{
message
=
I18N
.
i18nText
(
messageCode
);
if
(
typeof
message
===
'undefined'
)
{
//lang of messageCode undefined, use message or messageCode
if
(
params
.
message
)
{
message
=
params
.
message
;
}
else
{
message
=
messageCode
;
}
}
}
else
if
(
params
.
message
)
{
message
=
params
.
message
;
}
let
title
=
I18N
.
i18nText
(
params
.
titleCode
);
if
(
params
.
title
)
{
title
=
params
.
title
;
}
COMMON
.
showConfirmModal
({
message
:
message
,
title
:
title
,
confirmYes
:
I18N
.
i18nText
(
params
.
confirmYesCode
),
confirmNo
:
I18N
.
i18nText
(
params
.
confirmNoCode
)
},
confirmCallback
);
};
/**
* show alert message by confirm modal html
* @param {String} messageCode
* @param {string} titleCode
* @param {Object} options - Data Options {message, titleCode, confirmNoCode}
*/
COMMON
.
showAlert
=
function
(
messageCode
,
titleCode
=
'error'
,
options
=
{})
{
const
defaultParams
=
{
titleCode
:
titleCode
?
titleCode
:
'error'
,
confirmYesCode
:
null
,
confirmNoCode
:
'close'
,
}
const
params
=
Object
.
assign
(
defaultParams
,
options
);
COMMON
.
showConfirm
(
messageCode
,
null
,
params
);
};
/**
* close alert
*/
COMMON
.
alertClose
=
function
()
{
$
(
'.alert-overlay'
).
addClass
(
'd-none'
);
$
(
'.alert-area'
).
addClass
(
'd-none'
);
$
(
'body'
).
css
(
'overflow'
,
'visible'
);
};
/**
* go Url page With Current Params
*
* ios will remove all web types data when reopen webview
* need add common parameters: app, lang, debug, mobile_flg, isChat, ...
*
* @param {String} url
* @param {Object} params
*/
COMMON
.
goUrlWithCurrentParams
=
function
(
url
,
params
)
{
if
(
!
params
)
{
location
.
href
=
CONSTANT
.
URL
.
WEB
.
BASE
+
url
;
}
const
mixParams
=
Object
.
assign
(
COMMON
.
getUrlParameter
(),
params
);
if
(
url
.
includes
(
'?'
))
{
location
.
href
=
url
+
'&'
+
new
URLSearchParams
(
mixParams
);
}
else
{
location
.
href
=
url
+
'?'
+
new
URLSearchParams
(
mixParams
);
}
};
/**
* get url parameter
*
*/
COMMON
.
getUrlParameter
=
function
()
{
var
ret
=
{};
if
(
location
.
search
)
{
var
param
=
{};
location
.
search
.
substring
(
1
)
.
split
(
'&'
)
.
forEach
(
function
(
val
)
{
var
kv
=
val
.
split
(
'='
);
param
[
kv
[
0
]]
=
kv
[
1
];
});
ret
=
param
;
}
console
.
log
({
ret
:
ret
});
return
ret
;
};
/**
* get sid in local Storage
*
*/
COMMON
.
getSid
=
function
()
{
return
ClientData
.
userInfo_sid
();
};
/**
* cms communication
*
* @param {String} url
* @param {Json} param
* @param {boolean} async
* @param {Object} callback
* @param {Object} errorCallback
* @param {number} type
*/
COMMON
.
cmsAjax
=
function
(
url
,
param
,
async
=
true
,
callback
,
errorCallback
,
type
)
{
var
sysSettings
=
new
COMMON
.
sysSetting
();
if
(
url
)
{
$
.
ajax
({
type
:
'post'
,
url
:
url
,
data
:
param
,
dataType
:
type
?
type
:
'json'
,
cache
:
false
,
async
:
async
,
crossDomain
:
true
,
beforeSend
:
function
(
xhr
)
{
xhr
.
setRequestHeader
(
'X-AGT-AppId'
,
sysSettings
.
appName
);
xhr
.
setRequestHeader
(
'X-AGT-AppVersion'
,
sysSettings
.
appVersion
);
},
success
:
function
(
result
)
{
if
(
type
==
'text'
)
{
if
(
callback
)
callback
(
result
);
return
;
}
if
(
result
.
httpStatus
==
'200'
)
{
if
(
callback
)
callback
(
result
);
}
else
if
(
errorCallback
)
{
errorCallback
(
result
);
}
else
if
(
result
.
httpStatus
==
'401'
)
{
COMMON
.
goUrlWithCurrentParams
(
CONSTANT
.
PAGE_NAME
.
LOGIN
);
}
else
if
(
result
.
httpStatus
==
'403'
)
{
COMMON
.
closeLoading
();
COMMON
.
showAlert
(
'errorOccurred'
);
}
else
{
COMMON
.
closeLoading
();
COMMON
.
showAlert
(
result
.
message
);
}
},
error
:
function
(
XMLHttpRequest
,
textStatus
,
errorThrown
)
{
if
(
errorCallback
)
{
errorCallback
(
XMLHttpRequest
,
textStatus
,
errorThrown
);
}
else
{
COMMON
.
closeLoading
();
COMMON
.
showAlert
(
'errorCommunicationFailed'
);
}
},
});
}
else
{
if
(
errorCallback
)
{
errorCallback
();
}
else
{
COMMON
.
closeLoading
();
COMMON
.
showAlert
(
'errorOccurred'
);
}
}
};
/**
* Check if user is logged in
*
* @param {boolean} async
*/
COMMON
.
checkAuth
=
function
(
async
=
true
)
{
let
params
=
{};
console
.
log
(
"kdh check"
);
params
.
sid
=
COMMON
.
getSid
;
const
url
=
COMMON
.
format
(
ClientData
.
conf_checkApiUrl
(),
ClientData
.
userInfo_accountPath
())
+
CONSTANT
.
URL
.
CMS
.
API
.
AUTH_SESSION
;
COMMON
.
cmsAjax
(
url
,
params
,
async
,
null
,
function
()
{
COMMON
.
goUrlWithCurrentParams
(
CONSTANT
.
PAGE_NAME
.
LOGIN
);
});
};
var
ClientData
=
{
// Local :userInfo_account path:String
userInfo_accountPath
:
function
(
data
)
{
if
(
arguments
.
length
>
0
)
{
COMMON
.
userSetting
().
set
(
CONSTANT
.
KEYS
.
userInfo_accountPath
,
data
);
}
else
{
return
COMMON
.
userSetting
().
get
(
CONSTANT
.
KEYS
.
userInfo_accountPath
);
}
},
// Local :userInfo_loginID:String
userInfo_loginId
:
function
(
data
)
{
if
(
arguments
.
length
>
0
)
{
COMMON
.
userSetting
().
set
(
CONSTANT
.
KEYS
.
userInfo_loginId
,
data
);
}
else
{
return
COMMON
.
userSetting
().
get
(
CONSTANT
.
KEYS
.
userInfo_loginId
);
}
},
// Local :userInfo_Account Information Storage Flag:Char(Y:Available, N:Not Available)
userInfo_rememberLogin
:
function
(
data
)
{
if
(
arguments
.
length
>
0
)
{
COMMON
.
userSetting
().
set
(
CONSTANT
.
KEYS
.
userInfo_rememberLogin
,
data
);
}
else
{
return
COMMON
.
userSetting
().
get
(
CONSTANT
.
KEYS
.
userInfo_rememberLogin
);
}
},
// Session :userInfo_loginID:String
userInfo_loginId_session
:
function
(
data
)
{
if
(
arguments
.
length
>
0
)
{
SessionStorageUtils
.
set
(
CONSTANT
.
KEYS
.
userInfo_loginId
,
data
);
}
else
{
return
SessionStorageUtils
.
get
(
CONSTANT
.
KEYS
.
userInfo_loginId
);
}
},
// Session :userInfo_account path:String
userInfo_accountPath_session
:
function
(
data
)
{
if
(
arguments
.
length
>
0
)
{
SessionStorageUtils
.
set
(
CONSTANT
.
KEYS
.
userInfo_accountPath
,
data
);
}
else
{
return
SessionStorageUtils
.
get
(
CONSTANT
.
KEYS
.
userInfo_accountPath
);
}
},
// Session
userInfo_userName
:
function
(
data
)
{
if
(
arguments
.
length
>
0
)
{
SessionStorageUtils
.
set
(
CONSTANT
.
KEYS
.
userInfo_userName
,
data
);
}
else
{
return
SessionStorageUtils
.
get
(
CONSTANT
.
KEYS
.
userInfo_userName
);
}
},
// Local :userInfo_Last login date and time:Datetime
userInfo_lastLoginTime
:
function
(
data
)
{
if
(
arguments
.
length
>
0
)
{
COMMON
.
operateData
(
arguments
,
CONSTANT
.
KEYS
.
userInfo_lastLoginTime
,
undefined
);
}
else
{
return
COMMON
.
operateData
(
arguments
,
CONSTANT
.
KEYS
.
userInfo_lastLoginTime
,
undefined
);
}
},
// Session:userInfo_SessionID:String
userInfo_sid
:
function
(
data
)
{
if
(
arguments
.
length
>
0
)
{
SessionStorageUtils
.
set
(
CONSTANT
.
KEYS
.
userInfo_sid
,
data
);
// COMMON.userSetting().set(CONSTANT.KEYS.userInfo_sid, data);
}
else
{
// return COMMON.userSetting().get(CONSTANT.KEYS.userInfo_sid);
if
(
COMMON
.
userSession
())
{
return
SessionStorageUtils
.
get
(
CONSTANT
.
KEYS
.
userInfo_sid
);
}
return
null
;
}
},
// Local: userInfo_SessionID:String
userInfo_sid_local
:
function
(
data
)
{
if
(
arguments
.
length
>
0
)
{
COMMON
.
userSetting
().
set
(
CONSTANT
.
KEYS
.
userInfo_sid_local
,
data
);
}
else
{
return
COMMON
.
userSetting
().
get
(
CONSTANT
.
KEYS
.
userInfo_sid_local
);
}
},
// Local: Session ID backup
userInfo_sid_local_bak
:
function
(
data
)
{
if
(
arguments
.
length
>
0
)
{
COMMON
.
userSetting
().
set
(
CONSTANT
.
KEYS
.
userInfo_sid_bak
,
data
);
}
else
{
return
COMMON
.
userSetting
().
get
(
CONSTANT
.
KEYS
.
userInfo_sid_bak
);
}
},
// Session :Notification information (pushInfo)_Number of new arrivals:Interger
pushInfo_newMsgNumber
:
function
(
data
)
{
if
(
arguments
.
length
>
0
)
{
SessionStorageUtils
.
set
(
CONSTANT
.
KEYS
.
pushInfo_newMsgNumber
,
data
);
}
else
{
return
SessionStorageUtils
.
get
(
CONSTANT
.
KEYS
.
pushInfo_newMsgNumber
);
}
},
// apiUrl
conf_apiUrl
:
function
(
data
)
{
if
(
arguments
.
length
>
0
)
{
SessionStorageUtils
.
set
(
CONSTANT
.
KEYS
.
conf_apiUrl
,
data
);
}
else
{
return
SessionStorageUtils
.
get
(
CONSTANT
.
KEYS
.
conf_apiUrl
);
}
},
// api login url
conf_apiLoginUrl
:
function
(
data
)
{
if
(
arguments
.
length
>
0
)
{
SessionStorageUtils
.
set
(
CONSTANT
.
KEYS
.
conf_apiLoginUrl
,
data
);
}
else
{
return
SessionStorageUtils
.
get
(
CONSTANT
.
KEYS
.
conf_apiLoginUrl
);
}
},
//check api url
conf_checkApiUrl
:
function
(
data
)
{
if
(
arguments
.
length
>
0
)
{
SessionStorageUtils
.
set
(
CONSTANT
.
KEYS
.
conf_checkApiUrl
,
data
);
}
else
{
return
SessionStorageUtils
.
get
(
CONSTANT
.
KEYS
.
conf_checkApiUrl
);
}
},
// api resorce dl url
conf_apiResourceDlUrl
:
function
(
data
)
{
if
(
arguments
.
length
>
0
)
{
SessionStorageUtils
.
set
(
CONSTANT
.
KEYS
.
conf_apiResourceDlUrl
,
data
);
}
else
{
return
SessionStorageUtils
.
get
(
CONSTANT
.
KEYS
.
conf_apiResourceDlUrl
);
}
},
// Local :userInfo_password_skip_datetime:Datetime
userInfo_pwdSkipDt
:
function
(
data
)
{
if
(
arguments
.
length
>
0
)
{
COMMON
.
operateData
(
arguments
,
CONSTANT
.
KEYS
.
userInfo_pwdSkipDt
,
undefined
);
}
else
{
return
COMMON
.
operateData
(
arguments
,
CONSTANT
.
KEYS
.
userInfo_pwdSkipDt
,
undefined
);
}
},
// Session :Business Option (serviceOpt)_ABookCheck:Char(Y:Enable, N:Disable)
serviceOpt_abook_check
:
function
(
data
)
{
if
(
arguments
.
length
>
0
)
{
SessionStorageUtils
.
set
(
CONSTANT
.
KEYS
.
serviceOpt_abook_check
,
data
);
}
else
{
return
SessionStorageUtils
.
get
(
CONSTANT
.
KEYS
.
serviceOpt_abook_check
);
}
},
// Session : Tenant Service_Option(serviceOpt)_ChatFunction:Char(Y:Use, N:Unused)
serviceOpt_chat_function
:
function
(
data
)
{
if
(
arguments
.
length
>
0
)
{
SessionStorageUtils
.
set
(
CONSTANT
.
KEYS
.
serviceOpt_abook_check
,
data
);
}
else
{
return
SessionStorageUtils
.
get
(
CONSTANT
.
KEYS
.
serviceOpt_abook_check
);
}
},
// Session :Business Option(serviceOpt)_Forced password change at first login:Integer(0:None, 1:Prompt, 2:Forced)
serviceOpt_force_pw_change_on_login
:
function
(
data
)
{
if
(
arguments
.
length
>
0
)
{
SessionStorageUtils
.
set
(
CONSTANT
.
KEYS
.
serviceOpt_force_pw_change_on_login
,
data
);
}
else
{
return
SessionStorageUtils
.
get
(
CONSTANT
.
KEYS
.
serviceOpt_force_pw_change_on_login
);
}
},
// Session :Business Option(serviceOpt)_Forced password change at regular login:Integer(0:None, 1:Prompt, 2:Forced)
serviceOpt_force_pw_change_periodically
:
function
(
data
)
{
if
(
arguments
.
length
>
0
)
{
SessionStorageUtils
.
set
(
CONSTANT
.
KEYS
.
serviceOpt_force_pw_change_periodically
,
data
);
}
else
{
return
SessionStorageUtils
.
get
(
CONSTANT
.
KEYS
.
serviceOpt_force_pw_change_periodically
);
}
},
// Session :Business option (serviceOpt)_arbitrary push message:Char(Y:possible, N:not possible)
serviceOpt_usable_push_message
:
function
(
data
)
{
if
(
arguments
.
length
>
0
)
{
SessionStorageUtils
.
set
(
CONSTANT
.
KEYS
.
serviceOpt_usable_push_message
,
data
);
}
else
{
return
SessionStorageUtils
.
get
(
CONSTANT
.
KEYS
.
serviceOpt_usable_push_message
);
}
},
// Local
JumpQueue
:
function
(
data
)
{
if
(
arguments
.
length
>
0
)
{
COMMON
.
operateData
(
arguments
,
CONSTANT
.
KEYS
.
JumpQueue
,
[]);
}
else
{
return
COMMON
.
operateData
(
arguments
,
CONSTANT
.
KEYS
.
JumpQueue
,
[]);
}
},
// Local
IsJumpBack
:
function
(
data
)
{
if
(
arguments
.
length
>
0
)
{
COMMON
.
operateData
(
arguments
,
CONSTANT
.
KEYS
.
IsJumpBack
,
undefined
);
}
else
{
return
COMMON
.
operateData
(
arguments
,
CONSTANT
.
KEYS
.
IsJumpBack
,
undefined
);
}
},
};
/*
* Variables
*/
COMMON
.
userSessionObj
=
null
;
COMMON
.
userSettingObj
=
null
;
COMMON
.
sysSettingObj
=
null
;
/*
* User Settings Class Definition
*/
var
UserSetting
=
function
()
{
this
.
US_KEY
=
'AVWUS'
;
this
.
userSetting
=
this
.
load
();
};
/* get user setting from localStorage */
UserSetting
.
prototype
.
load
=
function
()
{
var
storage
=
window
.
localStorage
;
var
value
=
null
;
var
js
=
null
;
if
(
storage
)
{
var
value
=
storage
.
getItem
(
this
.
US_KEY
);
if
(
!
value
)
{
value
=
'{}'
;
// empty JSON string
}
js
=
JSON
.
parse
(
value
);
}
return
js
;
};
/**
* store user setting
* @param {*} key
* @param {*} value
*/
UserSetting
.
prototype
.
set
=
function
(
key
,
value
)
{
this
.
userSetting
=
this
.
load
();
var
values
=
this
.
userSetting
;
if
(
!
values
)
{
values
=
{
key
:
value
};
}
else
{
values
[
key
]
=
value
;
}
var
storage
=
window
.
localStorage
;
if
(
storage
)
{
var
jsonStr
=
JSON
.
stringify
(
values
);
storage
.
setItem
(
this
.
US_KEY
,
jsonStr
);
}
this
.
userSetting
=
values
;
};
/**
* grab user setting
* @param {*} key
* @returns
*/
UserSetting
.
prototype
.
get
=
function
(
key
)
{
this
.
userSetting
=
this
.
load
();
var
values
=
this
.
userSetting
;
if
(
values
)
{
return
values
[
key
];
}
return
null
;
};
/**
* show user setting object list
* @param {*} elmid
*/
UserSetting
.
prototype
.
show
=
function
(
elmid
)
{
var
storage
=
window
.
localStorage
;
var
tags
=
'<p>'
;
if
(
storage
)
{
var
value
=
storage
.
getItem
(
this
.
US_KEY
);
if
(
value
)
{
var
js
=
JSON
.
parse
(
value
);
$
.
each
(
js
,
function
(
k
,
v
)
{
tags
=
tags
+
'<b>'
+
k
+
'</b>:'
+
v
+
'<br />'
;
});
}
tags
=
tags
+
'</p>'
;
$
(
elmid
).
html
(
tags
);
}
};
/* Retrieve a list of user-set keys */
UserSetting
.
prototype
.
keys
=
function
()
{
var
storage
=
window
.
localStorage
;
var
keyList
=
[];
if
(
storage
)
{
var
value
=
storage
.
getItem
(
this
.
US_KEY
);
if
(
value
)
{
var
js
=
JSON
.
parse
(
value
);
var
i
=
0
;
$
.
each
(
js
,
function
(
k
,
v
)
{
keyList
[
i
++
]
=
k
;
});
}
return
keyList
;
}
return
null
;
};
/**
* Delete user settings
* @param {*} key
*/
UserSetting
.
prototype
.
remove
=
function
(
key
)
{
var
storage
=
window
.
localStorage
;
if
(
storage
)
{
var
value
=
storage
.
getItem
(
this
.
US_KEY
);
if
(
value
)
{
var
js
=
JSON
.
parse
(
value
);
if
(
js
)
{
delete
js
[
key
];
storage
.
setItem
(
this
.
US_KEY
,
JSON
.
stringify
(
js
));
}
}
}
};
/* Delete all user settings */
UserSetting
.
prototype
.
removeAll
=
function
()
{
var
storage
=
window
.
localStorage
;
if
(
storage
)
{
storage
.
remove
(
this
.
US_KEY
);
}
};
/*
* User Session Class Definition
*/
var
UserSession
=
function
()
{
this
.
available
=
false
;
};
/**
* Initialize User Session
* @param {*} option
*/
UserSession
.
prototype
.
init
=
function
(
option
)
{
this
.
available
=
false
;
if
(
option
==
'restore'
)
{
var
value
=
null
;
try
{
value
=
this
.
_get
(
'init'
);
}
catch
(
e
)
{
value
=
null
;
}
finally
{
if
(
value
)
{
this
.
available
=
true
;
}
}
}
else
{
this
.
set
(
'init'
,
new
Date
().
toLocaleString
());
this
.
available
=
true
;
}
};
/**
* store key, value item to user session
* @param {*} key
* @param {*} value
*/
UserSession
.
prototype
.
set
=
function
(
key
,
value
)
{
var
storage
=
window
.
sessionStorage
;
if
(
storage
)
{
if
(
this
.
available
==
false
)
{
if
(
key
==
'init'
)
{
storage
.
setItem
(
'AVWS_'
+
key
,
value
);
}
else
{
throw
new
Error
(
'Session destoryed.'
);
}
}
else
{
storage
.
setItem
(
'AVWS_'
+
key
,
value
);
}
}
};
/**
* get session item value
* @param {*} key
* @returns
*/
UserSession
.
prototype
.
get
=
function
(
key
)
{
var
value
=
null
;
if
(
this
.
available
)
{
value
=
this
.
_get
(
key
);
}
else
{
throw
new
Error
(
'Session Destroyed.'
);
}
return
value
;
};
/**
* get item value from session storage
* @param {*} key
* @returns
*/
UserSession
.
prototype
.
_get
=
function
(
key
)
{
var
storage
=
window
.
sessionStorage
;
var
value
=
null
;
if
(
storage
)
{
value
=
storage
.
getItem
(
'AVWS_'
+
key
);
}
return
value
;
};
/* destroy user session */
UserSession
.
prototype
.
destroy
=
function
()
{
var
storage
=
window
.
sessionStorage
;
if
(
storage
)
{
storage
.
clear
();
this
.
available
=
false
;
}
};
/**
* show user session object list
* @param {*} elmid
*/
UserSession
.
prototype
.
show
=
function
(
elmid
)
{
var
storage
=
window
.
sessionStorage
;
var
tags
=
'<p>'
;
if
(
storage
)
{
for
(
var
i
=
0
;
i
<
storage
.
length
;
i
++
)
{
var
key
=
storage
.
key
(
i
);
var
value
=
storage
.
getItem
(
key
);
tags
=
tags
+
'<b>'
+
key
+
'</b>:'
+
value
+
'<br />'
;
}
tags
=
tags
+
'</p>'
;
$
(
elmid
).
html
(
tags
);
}
};
/* Initialize system */
$
(
function
()
{
// Determine the path where the system configuration files are located
var
location
=
window
.
location
.
toString
().
toLowerCase
();
var
sysFile
=
''
;
if
(
location
.
indexOf
(
'/abweb'
)
<
0
)
{
sysFile
=
'../abweb/common/json/sys/conf.json'
;
}
else
{
sysFile
=
'../common/json/sys/conf.json'
;
}
// Read the system configuration file
$
.
ajax
({
url
:
sysFile
,
async
:
false
,
cache
:
false
,
dataType
:
'json'
,
success
:
function
(
data
)
{
COMMON
.
sysSettingObj
=
data
;
},
error
:
function
(
xmlHttpRequest
,
txtStatus
,
errorThrown
)
{
var
error
=
'Could not load the system configuration file. Please check it.'
;
error
+=
'
\
n'
+
xmlHttpRequest
.
status
+
' '
+
txtStatus
+
' '
+
errorThrown
+
' : '
+
sysFile
;
alert
(
error
);
},
});
// Clear error conditions once at load time.
COMMON
.
clearError
();
//#31919 [Investigation] Business meeting support system GoogleChrome does not work with Bitch in/out.
navigator
.
pointerEnabled
=
navigator
.
maxTouchPoints
>
0
;
// Edge 17 touch support workaround
document
.
documentElement
.
ontouchstart
=
navigator
.
maxTouchPoints
>
0
?
function
()
{}
:
undefined
;
// Chrome 70 touch support workaround
});
// Hide the locking layout
COMMON
.
unlockLayout
=
function
()
{
$
(
'#avw-sys-modal'
).
hide
();
};
// Show the locking layout
COMMON
.
lockLayout
=
function
()
{
if
(
document
.
getElementById
(
'avw-sys-modal'
))
{
$
(
'#avw-sys-modal'
).
show
();
}
else
{
var
tags
=
'<div id="avw-sys-modal"></div>'
;
$
(
'body'
).
prepend
(
tags
);
$
(
'#avw-sys-modal'
).
css
({
opacity
:
0.7
,
position
:
'fixed'
,
top
:
'0'
,
left
:
'0'
,
width
:
$
(
window
).
width
(),
height
:
$
(
window
).
height
(),
background
:
'#999'
,
'z-index'
:
100
,
});
// resize error page
$
(
window
).
resize
(
function
()
{
$
(
'#avw-sys-modal'
).
css
({
width
:
$
(
window
).
width
(),
height
:
$
(
window
).
height
(),
});
});
}
};
/* Clear error condition */
COMMON
.
clearError
=
function
()
{
var
session
=
window
.
sessionStorage
;
if
(
session
)
{
session
.
setItem
(
COMMON
.
hasErrorKey
,
false
);
}
};
/* Get error status */
COMMON
.
hasError
=
function
()
{
var
session
=
window
.
sessionStorage
;
var
isError
=
false
;
if
(
session
)
{
isError
=
session
.
getItem
(
COMMON
.
hasErrorKey
);
}
return
isError
==
'true'
;
};
/* Set to error condition */
COMMON
.
setErrorState
=
function
()
{
var
session
=
window
.
sessionStorage
;
if
(
session
)
{
session
.
setItem
(
COMMON
.
hasErrorKey
,
true
);
}
};
/* get user session object */
COMMON
.
userSession
=
function
()
{
if
(
!
COMMON
.
userSessionObj
)
{
var
obj
=
new
UserSession
();
obj
.
init
(
'restore'
);
if
(
obj
.
available
)
{
COMMON
.
userSessionObj
=
obj
;
return
COMMON
.
userSessionObj
;
}
else
{
return
null
;
}
}
return
COMMON
.
userSessionObj
;
};
/* create user session object */
COMMON
.
createUserSession
=
function
()
{
if
(
COMMON
.
userSessionObj
)
{
COMMON
.
userSessionObj
.
destroy
();
}
else
{
COMMON
.
userSessionObj
=
new
UserSession
();
COMMON
.
userSessionObj
.
init
();
}
return
COMMON
.
userSessionObj
;
};
/* get user setting object */
COMMON
.
userSetting
=
function
()
{
if
(
COMMON
.
userSettingObj
==
null
)
{
COMMON
.
userSettingObj
=
new
UserSetting
();
}
return
COMMON
.
userSettingObj
;
};
/* get system setting object */
COMMON
.
sysSetting
=
function
()
{
return
COMMON
.
sysSettingObj
;
};
/*
* Operations for session storage [start]
*/
var
SessionStorageUtils
=
{
login
:
function
()
{
if
(
COMMON
.
userSession
())
{
// Skip this case
}
else
{
COMMON
.
avwCreateUserSession
();
}
},
get
:
function
(
strKey
)
{
return
COMMON
.
userSession
().
get
(
strKey
);
},
set
:
function
(
strKey
,
objValue
)
{
COMMON
.
userSession
().
set
(
strKey
,
objValue
);
},
clear
:
function
()
{
if
(
COMMON
.
userSession
())
{
COMMON
.
userSession
().
destroy
();
}
},
remove
:
function
(
strKey
)
{
COMMON
.
userSession
().
set
(
strKey
,
null
);
},
};
/*
* Operations for local storage
*/
var
LocalStorageUtils
=
{
getUniqueId
:
function
()
{
var
uniqueId
=
''
;
if
(
COMMON
.
userSetting
().
get
(
CONSTANT
.
KEYS
.
userInfo_accountPath
))
{
uniqueId
+=
COMMON
.
userSetting
().
get
(
CONSTANT
.
KEYS
.
userInfo_accountPath
);
}
if
(
COMMON
.
userSetting
().
get
(
CONSTANT
.
KEYS
.
userInfo_loginId
))
{
uniqueId
+=
'.'
+
COMMON
.
userSetting
().
get
(
CONSTANT
.
KEYS
.
userInfo_loginId
);
}
if
(
uniqueId
!=
''
)
{
uniqueId
+=
'.'
;
}
return
uniqueId
;
},
get
:
function
(
strKey
)
{
var
key
=
this
.
getUniqueId
()
+
strKey
;
return
COMMON
.
userSetting
().
get
(
key
);
},
set
:
function
(
strKey
,
objValue
)
{
var
key
=
this
.
getUniqueId
()
+
strKey
;
COMMON
.
userSetting
().
set
(
key
,
objValue
);
},
remove
:
function
(
strKey
)
{
var
key
=
this
.
getUniqueId
()
+
strKey
;
COMMON
.
userSetting
().
remove
(
key
);
SessionStorageUtils
.
remove
(
strKey
);
},
clear
:
function
()
{
var
localStorageKeys
=
COMMON
.
userSetting
().
keys
();
for
(
var
nIndex
=
0
;
nIndex
<
localStorageKeys
.
length
;
nIndex
++
)
{
var
strKey
=
localStorageKeys
[
nIndex
];
if
((
strKey
+
''
).
contains
(
this
.
getUniqueId
()))
{
COMMON
.
userSetting
().
remove
(
strKey
);
}
}
},
existKey
:
function
(
strKey
)
{
var
keys
=
COMMON
.
userSetting
().
keys
();
var
findKey
=
this
.
getUniqueId
()
+
strKey
;
var
isExisted
=
false
;
if
(
keys
!=
null
&&
keys
!=
undefined
)
{
for
(
var
nIndex
=
0
;
nIndex
<
keys
.
length
;
nIndex
++
)
{
if
(
keys
[
nIndex
]
==
findKey
)
{
isExisted
=
true
;
break
;
}
}
}
return
isExisted
;
},
};
/**
* String.format function def.
* @param {*} fmt
* @returns
*/
COMMON
.
format
=
function
(
fmt
)
{
for
(
var
i
=
1
;
i
<
arguments
.
length
;
i
++
)
{
var
reg
=
new
RegExp
(
'
\\
{'
+
(
i
-
1
)
+
'
\\
}'
,
'g'
);
fmt
=
fmt
.
replace
(
reg
,
arguments
[
i
]);
}
return
fmt
;
};
/**
* Get param url
* @param {*} name
* @param {*} url
* @returns
*/
COMMON
.
getUrlParam
=
function
(
name
,
url
)
{
if
(
!
url
)
{
url
=
window
.
location
.
href
;
}
name
=
name
.
replace
(
/
[\[]
/
,
'
\\
['
).
replace
(
/
[\]]
/
,
'
\\
]'
);
var
regexS
=
'[
\\
?&]'
+
name
+
'=([^&#]*)'
;
var
regex
=
new
RegExp
(
regexS
);
var
results
=
regex
.
exec
(
url
);
if
(
results
==
null
)
{
return
''
;
}
else
{
return
results
[
1
];
}
};
// Toogle Logout Nortice
COMMON
.
ToogleLogoutNortice
=
function
()
{
window
.
onbeforeunload
=
function
(
event
)
{
var
message
=
I18N
.
i18nText
(
'sysInfoWithoutLogout'
);
var
e
=
event
||
window
.
event
;
if
(
e
)
{
e
.
returnValue
=
message
;
}
return
message
;
};
};
/**
* * Get data from localstorage and sessionstorage synchronization If has any
* param (args.length > 0) -> setter If has not param (args.length = 0) ->
* getter . Get from session: + if it existed and key existed in localstorage ->
* return result + else: set value from local to sessionstorage -> return value
* of sessionstorage if value is not empty, otherwise, return default result.
* @param {*} args
* @param {*} strKey
* @param {*} returnDefaultData
* @returns
*/
COMMON
.
operateData
=
function
(
args
,
strKey
,
returnDefaultData
)
{
if
(
args
.
length
>
0
)
{
var
data
=
args
[
0
];
LocalStorageUtils
.
set
(
strKey
,
data
);
SessionStorageUtils
.
set
(
strKey
,
JSON
.
stringify
(
data
));
}
else
{
if
(
SessionStorageUtils
.
get
(
strKey
)
!=
'undefined'
&&
SessionStorageUtils
.
get
(
strKey
)
!=
undefined
&&
SessionStorageUtils
.
get
(
strKey
)
!=
''
&&
SessionStorageUtils
.
get
(
strKey
)
!=
null
&&
SessionStorageUtils
.
get
(
strKey
)
!=
'null'
)
{
if
(
LocalStorageUtils
.
existKey
(
strKey
)
==
true
)
{
return
JSON
.
parse
(
SessionStorageUtils
.
get
(
strKey
));
}
else
{
return
returnDefaultData
;
}
}
else
{
if
(
LocalStorageUtils
.
existKey
(
strKey
)
==
true
)
{
SessionStorageUtils
.
set
(
strKey
,
JSON
.
stringify
(
LocalStorageUtils
.
get
(
strKey
)));
return
JSON
.
parse
(
SessionStorageUtils
.
get
(
strKey
));
}
return
returnDefaultData
;
}
}
};
/**
* UTC current Time (millisecond)
*
* @returns UTC time
*/
COMMON
.
currentTime
=
function
()
{
return
Date
.
now
();
};
/**
* check login information in window.sessionStorage
*
* @returns boolean
*/
COMMON
.
checkLogin
=
function
(
option
)
{
var
userSession
=
COMMON
.
userSession
();
if
(
!
userSession
)
{
/* エラー画面を表示 */
var
tags
=
'<div id="avw-auth-error">'
+
'<div style="display:table; width:100%; height:100%;">'
+
'<div style="display:table-cell; text-align:center; vertical-align:middle;">'
+
'<p><h4>Authentication error</h4>Please use it after login.</p>'
+
'<div><button id="avw-unauth-ok">OK</button></div>'
+
'</div></div></div>'
;
$
(
'body'
).
prepend
(
tags
);
$
(
'#avw-auth-error'
).
css
({
'opacity'
:
1
,
'position'
:
'fixed'
,
'top'
:
'0'
,
'left'
:
'0'
,
'background'
:
"#ffffff"
,
'width'
:
$
(
window
).
width
(),
'height'
:
$
(
window
).
height
(),
'zIndex'
:
'10000'
});
// resize error page
$
(
window
).
resize
(
function
()
{
$
(
'#avw-auth-error'
).
css
(
{
'width'
:
$
(
window
).
width
(),
'height'
:
$
(
window
).
height
()
});
});
var
returnPage
;
if
(
option
)
{
returnPage
=
option
}
else
{
var
sysSetting
=
COMMON
.
sysSetting
();
returnPage
=
sysSetting
.
loginPage
;
}
/* ログイン画面に戻る */
$
(
'#avw-unauth-ok'
).
click
(
function
()
{
window
.
location
=
returnPage
;
});
return
false
;
}
return
true
;
}
/*
* Operations for session storage [ end ]
*/
// =============================================================================================
// Utils for string, date, number [start]
// =============================================================================================
/*
* Convert date to JP format date time [start]
*/
/*
* YYYY/MM/DD HH:MM:SS
*/
Date
.
prototype
.
jpDateTimeString
=
function
()
{
var
strResult
=
''
;
var
strYear
=
this
.
getFullYear
()
+
''
;
var
strMonth
=
this
.
getMonth
()
+
1
+
''
;
var
strDayInMonth
=
this
.
getDate
()
+
''
;
var
strHour
=
this
.
getHours
()
+
''
;
var
strMinute
=
this
.
getMinutes
()
+
''
;
var
strSecond
=
this
.
getSeconds
()
+
''
;
strResult
+=
strYear
.
padLeft
(
'0'
,
4
)
+
'/'
+
strMonth
.
padLeft
(
'0'
,
2
)
+
'/'
+
strDayInMonth
.
padLeft
(
'0'
,
2
);
strResult
+=
' '
+
strHour
.
padLeft
(
'0'
,
2
)
+
':'
+
strMinute
.
padLeft
(
'0'
,
2
)
+
':'
+
strSecond
.
padLeft
(
'0'
,
2
);
return
strResult
;
};
/*
* YYYY-MM-DD HH:MM:SS
*/
Date
.
prototype
.
jpDateTimeString1
=
function
()
{
var
strResult
=
''
;
var
strYear
=
this
.
getFullYear
()
+
''
;
var
strMonth
=
this
.
getMonth
()
+
1
+
''
;
var
strDayInMonth
=
this
.
getDate
()
+
''
;
var
strHour
=
this
.
getHours
()
+
''
;
var
strMinute
=
this
.
getMinutes
()
+
''
;
var
strSecond
=
this
.
getSeconds
()
+
''
;
strResult
+=
strYear
.
padLeft
(
'0'
,
4
)
+
'-'
+
strMonth
.
padLeft
(
'0'
,
2
)
+
'-'
+
strDayInMonth
.
padLeft
(
'0'
,
2
);
strResult
+=
' '
+
strHour
.
padLeft
(
'0'
,
2
)
+
':'
+
strMinute
.
padLeft
(
'0'
,
2
)
+
':'
+
strSecond
.
padLeft
(
'0'
,
2
);
return
strResult
;
};
/*
* yyyy/MM/dd
*/
Date
.
prototype
.
jpDateString
=
function
()
{
var
strResult
=
''
;
var
strYear
=
this
.
getFullYear
()
+
''
;
var
strMonth
=
this
.
getMonth
()
+
1
+
''
;
var
strDayInMonth
=
this
.
getDate
()
+
''
;
strResult
+=
strYear
.
padLeft
(
'0'
,
4
)
+
'/'
+
strMonth
.
padLeft
(
'0'
,
2
)
+
'/'
+
strDayInMonth
.
padLeft
(
'0'
,
2
);
return
strResult
;
};
/*
* HH:mm:ss
*/
Date
.
prototype
.
jpTimeString
=
function
()
{
var
strResult
=
''
;
var
strHour
=
this
.
getHours
()
+
''
;
var
strMinute
=
this
.
getMinutes
()
+
''
;
var
strSecond
=
this
.
getSeconds
()
+
''
;
strResult
+=
' '
+
strHour
.
padLeft
(
'0'
,
2
)
+
':'
+
strMinute
.
padLeft
(
'0'
,
2
)
+
':'
+
strSecond
.
padLeft
(
'0'
,
2
);
return
strResult
;
};
/*
* HH:mm
*/
Date
.
prototype
.
jpShortTimeString
=
function
()
{
var
strResult
=
''
;
var
strHour
=
this
.
getHours
()
+
''
;
var
strMinute
=
this
.
getMinutes
()
+
''
;
var
strSecond
=
this
.
getSeconds
()
+
''
;
strResult
+=
' '
+
strHour
.
padLeft
(
'0'
,
2
)
+
':'
+
strMinute
.
padLeft
(
'0'
,
2
);
return
strResult
;
};
/*
* yyyyMMddHHmmss
*/
Date
.
prototype
.
toIdString
=
function
()
{
var
strResult
=
''
;
var
strYear
=
this
.
getFullYear
()
+
''
;
var
strMonth
=
this
.
getMonth
()
+
1
+
''
;
var
strDayInMonth
=
this
.
getDate
()
+
''
;
var
strHour
=
this
.
getHours
()
+
''
;
var
strMinute
=
this
.
getMinutes
()
+
''
;
var
strSecond
=
this
.
getSeconds
()
+
''
;
var
strMilisecond
=
this
.
getMilliseconds
()
+
''
;
strResult
+=
strYear
.
padLeft
(
'0'
,
4
)
+
strMonth
.
padLeft
(
'0'
,
2
)
+
strDayInMonth
.
padLeft
(
'0'
,
2
);
strResult
+=
strHour
.
padLeft
(
'0'
,
2
)
+
strMinute
.
padLeft
(
'0'
,
2
)
+
strSecond
.
padLeft
(
'0'
,
2
)
+
strMilisecond
.
padLeft
(
'0'
,
3
);
return
strResult
;
};
/**
* Subtract date to get days
* @param {*} targetDate
* @returns
*/
Date
.
prototype
.
subtractByDays
=
function
(
targetDate
)
{
var
milis
=
Math
.
abs
(
this
-
targetDate
);
var
days
=
Math
.
floor
(
milis
/
(
60
*
60
*
24
*
1000
));
return
days
;
};
/**
* add seconds
* @param {*} plusSeconds
* @returns
*/
Date
.
prototype
.
addSeconds
=
function
(
plusSeconds
)
{
var
newDate
=
new
Date
(
this
.
getTime
()
+
plusSeconds
*
1000
);
return
newDate
;
};
/**
* Subtract date to get days
* @param {*} targetDate
* @returns
*/
Date
.
prototype
.
subtractBySeconds
=
function
(
targetDate
)
{
var
milis
=
Math
.
abs
(
this
-
targetDate
);
var
days
=
Math
.
floor
(
milis
/
1000
);
return
days
;
};
/*
* Convert date to JP format date time [ end ]
*/
// trimming space from both side of the string
String
.
prototype
.
trim
=
function
()
{
return
this
.
replace
(
/^
\s
+|
\s
+$/g
,
''
);
};
// trimming space from left side of the string
String
.
prototype
.
trimLeft
=
function
()
{
return
this
.
replace
(
/^
\s
+/
,
''
);
};
// trimming space from right side of the string
String
.
prototype
.
trimRight
=
function
()
{
return
this
.
replace
(
/
\s
+$/
,
''
);
};
/**
* String: pads left
* @param {*} padString
* @param {*} length
* @returns
*/
String
.
prototype
.
padLeft
=
function
(
padString
,
length
)
{
var
str
=
this
;
while
(
str
.
length
<
length
)
str
=
padString
+
str
;
return
str
;
};
/**
* String: pads right
* @param {*} padString
* @param {*} length
* @returns
*/
String
.
prototype
.
padRight
=
function
(
padString
,
length
)
{
var
str
=
this
;
while
(
str
.
length
<
length
)
str
=
str
+
padString
;
return
str
;
};
/**
* Check contain string
* @param {*} string
* @returns
*/
String
.
prototype
.
contains
=
function
(
string
)
{
if
(
this
.
indexOf
(
string
)
!=
-
1
)
{
return
true
;
}
return
false
;
};
/**
* Number: pads left
* @param {*} padString
* @param {*} length
* @returns
*/
Number
.
prototype
.
padLeft
=
function
(
padString
,
length
)
{
var
str
=
this
+
''
;
return
str
.
padLeft
(
padString
,
length
);
};
/**
* Number: pads right
* @param {*} padString
* @param {*} length
* @returns
*/
Number
.
prototype
.
padRight
=
function
(
padString
,
length
)
{
var
str
=
this
+
''
;
return
str
.
padRight
(
padString
,
length
);
};
// Clear data of array
Array
.
prototype
.
clear
=
function
()
{
this
.
splice
(
0
,
this
.
length
);
};
// Function to set position of object to center
jQuery
.
fn
.
center
=
function
()
{
this
.
css
(
'position'
,
'fixed'
);
this
.
css
(
'top'
,
(
$
(
window
).
height
()
-
this
.
height
())
/
2
+
'px'
);
this
.
css
(
'left'
,
(
$
(
window
).
width
()
-
this
.
width
())
/
2
+
'px'
);
return
this
;
};
\ No newline at end of file
abweb/html/pickup.html
View file @
f1a599f0
...
...
@@ -4,7 +4,7 @@
<head>
<meta
charset=
"utf-8"
>
<meta
name=
"viewport"
content=
"width=device-width,minimum-scale=1,initial-scale=1"
>
<title
lang=
"pickup"
></title>
<title
class=
"lang"
lang=
"pickup"
></title>
<!-- favicons -->
<link
href=
"../common/img/favicon.ico"
rel=
"icon"
>
<link
href=
"../common/img/apple-touch-icon.png"
rel=
"apple-touch-icon"
>
...
...
abweb/js/reportList/reportList.js
View file @
f1a599f0
...
...
@@ -12,12 +12,19 @@
RL
.
init
=
function
()
{
//Check if user is logged in
COMMON
.
showLoading
();
console
.
log
(
"kdh check closeLoading RL.init1"
);
COMMON
.
checkAuth
(
false
);
console
.
log
(
"kdh check closeLoading RL.init2"
);
console
.
log
(
'ReportList init start'
);
console
.
log
(
"kdh check closeLoading RL.init3"
);
RL
.
checkQuickReport
();
console
.
log
(
"kdh check closeLoading RL.init4"
);
RL
.
loadCommon
();
console
.
log
(
"kdh check closeLoading RL.init5"
);
RL
.
initTaskReportList
();
console
.
log
(
"kdh check closeLoading RL.init6"
);
COMMON
.
closeLoading
();
console
.
log
(
"kdh check closeLoading RL.init7"
);
};
/**
...
...
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