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
f2d74518
Commit
f2d74518
authored
2 years ago
by
Kang Donghun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
change url path for develop server
parent
d81ce01e
Hide whitespace changes
Inline
Side-by-side
Showing
19 changed files
with
41 additions
and
36 deletions
+41
-36
abweb/common/js/common.js
+4
-5
abweb/common/js/constant.js
+7
-6
abweb/common/json/sys/conf.json
+2
-2
abweb/html/dashboard.html
+2
-1
abweb/html/reportList.html
+5
-2
abweb/js/dashboard/dashboard.js
+1
-1
abweb/js/dashboardSetting/dashboard-setting.js
+1
-1
abweb/js/header/header.js
+1
-1
abweb/js/login/login.js
+4
-5
abweb/js/notification-content/notification-content.js
+1
-1
abweb/js/operationList/operationList.js
+3
-3
abweb/js/operationSelect/operation-select.js
+1
-1
abweb/js/pickup/pickup.js
+1
-1
abweb/js/pushMessageDetail/push-message-detail.js
+1
-1
abweb/js/pushMessageList/push-message-list.js
+1
-1
abweb/js/reportList/reportList.js
+3
-2
abweb/js/sendMessage/send-message.js
+1
-1
abweb/js/setting/settings.js
+1
-1
env.sh
+1
-0
No files found.
abweb/common/js/common.js
View file @
f2d74518
...
@@ -292,8 +292,7 @@
...
@@ -292,8 +292,7 @@
COMMON
.
checkAuth
=
function
(
async
=
true
)
{
COMMON
.
checkAuth
=
function
(
async
=
true
)
{
let
params
=
{};
let
params
=
{};
params
.
sid
=
COMMON
.
getSid
;
params
.
sid
=
COMMON
.
getSid
;
var
urlPath
=
ClientData
.
userInfo_accountPath
();
const
url
=
COMMON
.
format
(
ClientData
.
conf_checkApiUrl
(),
ClientData
.
userInfo_accountPath
)
+
CONSTANT
.
URL
.
CMS
.
API
.
AUTH_SESSION
;
const
url
=
CONSTANT
.
URL
.
CMS
.
BASE
+
urlPath
+
CONSTANT
.
URL
.
CMS
.
API
.
BASE
+
CONSTANT
.
URL
.
CMS
.
API
.
AUTH_SESSION
;
COMMON
.
cmsAjax
(
url
,
params
,
async
,
null
,
function
()
{
COMMON
.
cmsAjax
(
url
,
params
,
async
,
null
,
function
()
{
COMMON
.
goUrlWithCurrentParams
(
CONSTANT
.
PAGE_NAME
.
LOGIN
);
COMMON
.
goUrlWithCurrentParams
(
CONSTANT
.
PAGE_NAME
.
LOGIN
);
});
});
...
@@ -418,11 +417,11 @@
...
@@ -418,11 +417,11 @@
return
SessionStorageUtils
.
get
(
CONSTANT
.
KEYS
.
conf_apiLoginUrl
);
return
SessionStorageUtils
.
get
(
CONSTANT
.
KEYS
.
conf_apiLoginUrl
);
}
}
},
},
conf_checkApi
Login
Url
:
function
(
data
)
{
conf_checkApiUrl
:
function
(
data
)
{
if
(
arguments
.
length
>
0
)
{
if
(
arguments
.
length
>
0
)
{
SessionStorageUtils
.
set
(
CONSTANT
.
KEYS
.
conf_checkApi
Login
Url
,
data
);
SessionStorageUtils
.
set
(
CONSTANT
.
KEYS
.
conf_checkApiUrl
,
data
);
}
else
{
}
else
{
return
SessionStorageUtils
.
get
(
CONSTANT
.
KEYS
.
conf_checkApi
Login
Url
);
return
SessionStorageUtils
.
get
(
CONSTANT
.
KEYS
.
conf_checkApiUrl
);
}
}
},
},
conf_apiResourceDlUrl
:
function
(
data
)
{
conf_apiResourceDlUrl
:
function
(
data
)
{
...
...
This diff is collapsed.
Click to expand it.
abweb/common/js/constant.js
View file @
f2d74518
...
@@ -48,21 +48,22 @@ CONSTANT.REPLY_NO = {
...
@@ -48,21 +48,22 @@ CONSTANT.REPLY_NO = {
CONSTANT
.
URL
=
{
CONSTANT
.
URL
=
{
CMS
:
{
CMS
:
{
// BASE_CMS: 'https://' + location.host + '/checkapi/web/',
BASE
:
'http://localhost:8080/acms/'
,
//BASE: 'https://chatdev2.agentec.jp/acms/',
API
:
{
API
:
{
BASE
:
'/checkapi/web/'
,
ALL_OPERATION_LIST
:
'operationListWeb/getOperationList'
,
ALL_OPERATION_LIST
:
'operationListWeb/getOperationList'
,
AUTH_SESSION
:
'getSession/checkAuthUser'
,
AUTH_SESSION
:
'getSession/checkAuthUser'
,
OPERATION_VIEW_LOG
:
'operationViewLog/saveLog'
,
OPERATION_VIEW_LOG
:
'operationViewLog/saveLog'
,
PASSWORD_CHANGE
:
'passwordChangeWeb/'
,
PASSWORD_CHANGE
:
'passwordChangeWeb/'
,
LOGIN
:
'webClientLogin/'
,
LOGIN
:
'webClientLogin/'
,
LOGOUT
:
'logoutWeb/'
,
LOGOUT
:
'logoutWeb/'
,
DASHBOARD
:
'dashboard/'
,
DASHBOARD_SETTING
:
'dashboardSetting/'
,
SAVE_DASHBOARD_SETTING
:
'saveDashboardSetting/'
,
PUSH_MESSAGE_TEMPLATE
:
'pushMessageTemplate/'
,
OPERATION_SELECT
:
'operationSelect/'
,
},
},
HTML
:
{
HTML
:
{
BASE
:
'
/checkapi/web/
html/'
,
BASE
:
'html/'
,
TASK_REPORT_LIST
:
'getTaskReport/'
,
TASK_REPORT_LIST
:
'getTaskReport/'
,
LIST_REPORT_FORM
:
'listReportForm/showReport'
,
LIST_REPORT_FORM
:
'listReportForm/showReport'
,
REPORT_LIST
:
'reportList'
,
REPORT_LIST
:
'reportList'
,
...
@@ -115,7 +116,7 @@ CONSTANT.KEYS = {
...
@@ -115,7 +116,7 @@ CONSTANT.KEYS = {
pushInfo_newMsgNumber
:
'pushInfo_newMsgNumber'
,
pushInfo_newMsgNumber
:
'pushInfo_newMsgNumber'
,
conf_apiUrl
:
'conf_apiUrl'
,
conf_apiUrl
:
'conf_apiUrl'
,
conf_apiLoginUrl
:
'conf_apiLoginUrl'
,
conf_apiLoginUrl
:
'conf_apiLoginUrl'
,
conf_checkApi
LoginUrl
:
'conf_checkApiLogin
Url'
,
conf_checkApi
Url
:
'conf_checkApi
Url'
,
conf_apiResourceDlUrl
:
'conf_apiResourceDlUrl'
,
conf_apiResourceDlUrl
:
'conf_apiResourceDlUrl'
,
// Session :ABookCheck:Char (Y: Yes, N: No)
// Session :ABookCheck:Char (Y: Yes, N: No)
serviceOpt_abook_check
:
'abook_check'
,
serviceOpt_abook_check
:
'abook_check'
,
...
...
This diff is collapsed.
Click to expand it.
abweb/common/json/sys/conf.json
View file @
f2d74518
{
{
"apiUrl"
:
"http://localhost:8080/acms/{0}/abvapi"
,
"apiUrl"
:
"http://localhost:8080/acms/{0}/abvapi"
,
"checkApi
LoginUrl"
:
"http://localhost:8080/acms/{0}/checkapi/web
"
,
"checkApi
Url"
:
"http://localhost:8080/acms/{0}/checkapi/web/
"
,
"apiLoginUrl"
:
"http://localhost:8080/acms/nuabvapi"
,
"apiLoginUrl"
:
"http://localhost:8080/acms/nuabvapi"
,
"apiResourceDlUrl"
:
"http://localhost:8080/acms/{0}/dl"
,
"apiResourceDlUrl"
:
"http://localhost:8080/acms/{0}/dl"
,
"1apiUrl"
:
"https://chatdev2.agentec.jp/acms/{0}/abvapi"
,
"1apiUrl"
:
"https://chatdev2.agentec.jp/acms/{0}/abvapi"
,
"1checkApi
LoginUrl"
:
"https://chatdev2.agentec.jp/acms/{0}/checkapi/web
"
,
"1checkApi
Url"
:
"https://chatdev2.agentec.jp/acms/{0}/checkapi/web/
"
,
"1apiLoginUrl"
:
"https://chatdev2.agentec.jp/acms/nuabvapi"
,
"1apiLoginUrl"
:
"https://chatdev2.agentec.jp/acms/nuabvapi"
,
"1apiResourceDlUrl"
:
"https://chatdev2.agentec.jp/acms/{0}/dl"
,
"1apiResourceDlUrl"
:
"https://chatdev2.agentec.jp/acms/{0}/dl"
,
"bookShelfCount"
:
15
,
"bookShelfCount"
:
15
,
...
...
This diff is collapsed.
Click to expand it.
abweb/html/dashboard.html
View file @
f2d74518
...
@@ -26,7 +26,8 @@
...
@@ -26,7 +26,8 @@
<script
type=
"text/javascript"
src=
"../js/dashboardSetting/dashboard-setting.js"
></script>
<script
type=
"text/javascript"
src=
"../js/dashboardSetting/dashboard-setting.js"
></script>
<script
type=
"text/javascript"
src=
"../js/template/template.js"
></script>
<script
type=
"text/javascript"
src=
"../js/template/template.js"
></script>
<script
type=
"text/javascript"
src=
"../js/dashboard/dashboard.js"
></script>
<script
type=
"text/javascript"
src=
"../js/dashboard/dashboard.js"
></script>
<script
src=
"https://cdn.jsdelivr.net/npm/gasparesganga-jquery-loading-overlay@2.1.7/dist/loadingoverlay.min.js"
></script>
<script
type=
"text/javascript"
>
<script
type=
"text/javascript"
>
$
(
document
).
ready
(
function
(){
$
(
document
).
ready
(
function
(){
DASHBOARD
.
init
();
DASHBOARD
.
init
();
...
...
This diff is collapsed.
Click to expand it.
abweb/html/reportList.html
View file @
f2d74518
...
@@ -22,6 +22,9 @@
...
@@ -22,6 +22,9 @@
<script
type=
"text/javascript"
src=
"../common/js/common.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"../common/js/common.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"../js/header/header.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"../js/header/header.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"../js/reportList/reportList.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"../js/reportList/reportList.js?__UPDATEID__"
></script>
<script
src=
"https://cdn.jsdelivr.net/npm/gasparesganga-jquery-loading-overlay@2.1.7/dist/loadingoverlay.min.js"
></script>
</head>
</head>
<body
onload=
"RL.init();"
>
<body
onload=
"RL.init();"
>
...
@@ -56,8 +59,8 @@
...
@@ -56,8 +59,8 @@
<!-- confirm -->
<!-- confirm -->
<div
id=
"includedConfirmModal"
></div>
<div
id=
"includedConfirmModal"
></div>
<script
src=
"https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"
></script>
<script
src=
"https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"
></script>
<script
type=
"text/javascript"
src=
"../common/js/
web
/app.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"../common/js/
newdash
/app.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"../common/js/
web
/common.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"../common/js/
newdash
/common.js?__UPDATEID__"
></script>
</body>
</body>
</html>
</html>
This diff is collapsed.
Click to expand it.
abweb/js/dashboard/dashboard.js
View file @
f2d74518
...
@@ -27,7 +27,7 @@ DASHBOARD.defaultDashboard = {
...
@@ -27,7 +27,7 @@ DASHBOARD.defaultDashboard = {
pushMesage
:
0
,
pushMesage
:
0
,
};
};
DASHBOARD
.
getDataApiUrl
=
CO
NSTANT
.
URL
.
CMS
.
BASE
+
ClientData
.
userInfo_accountPath
()
+
CONSTANT
.
URL
.
CMS
.
API
.
BASE
+
'dashboard/'
;
DASHBOARD
.
getDataApiUrl
=
CO
MMON
.
format
(
ClientData
.
conf_checkApiUrl
(),
urlPath
)
+
CONSTANT
.
URL
.
CMS
.
API
.
DASHBOARD
;
/**
/**
* Call api get data
* Call api get data
...
...
This diff is collapsed.
Click to expand it.
abweb/js/dashboardSetting/dashboard-setting.js
View file @
f2d74518
...
@@ -17,7 +17,7 @@ DashboardSetting.elementItems = {
...
@@ -17,7 +17,7 @@ DashboardSetting.elementItems = {
dashboardHome
:
{
id
:
'settingDashboardHome'
,
name
:
'chk-home'
,
enabled
:
false
},
dashboardHome
:
{
id
:
'settingDashboardHome'
,
name
:
'chk-home'
,
enabled
:
false
},
};
};
DashboardSetting
.
baseApiUrl
=
CO
NSTANT
.
URL
.
CMS
.
BASE
+
ClientData
.
userInfo_accountPath
()
+
CONSTANT
.
URL
.
CMS
.
API
.
BASE
+
'dashboardSetting/'
;
DashboardSetting
.
baseApiUrl
=
CO
MMON
.
format
(
ClientData
.
conf_checkApiUrl
(),
ClientData
.
userInfo_accountPath
)
+
CONSTANT
.
URL
.
CMS
.
API
.
DASHBOARD_SETTING
;
/**
/**
* default setting
* default setting
...
...
This diff is collapsed.
Click to expand it.
abweb/js/header/header.js
View file @
f2d74518
...
@@ -20,7 +20,7 @@ HEADER.processLogout = function() {
...
@@ -20,7 +20,7 @@ HEADER.processLogout = function() {
var
params
=
{
var
params
=
{
sid
:
ClientData
.
userInfo_sid
()
sid
:
ClientData
.
userInfo_sid
()
};
};
const
url
=
CO
NSTANT
.
URL
.
CMS
.
BASE
+
ClientData
.
userInfo_accountPath
()
+
CONSTANT
.
URL
.
CMS
.
API
.
BASE
+
CONSTANT
.
URL
.
CMS
.
API
.
LOGOUT
;
const
url
=
CO
MMON
.
format
(
ClientData
.
conf_checkApiUrl
(),
ClientData
.
userInfo_accountPath
)
+
CONSTANT
.
URL
.
CMS
.
API
.
LOGOUT
;
COMMON
.
cmsAjax
(
url
,
params
,
false
,
COMMON
.
cmsAjax
(
url
,
params
,
false
,
function
(
data
)
{
function
(
data
)
{
if
(
data
.
httpStatus
==
CONSTANT
.
HTTP_STATUS
.
OK
)
{
if
(
data
.
httpStatus
==
CONSTANT
.
HTTP_STATUS
.
OK
)
{
...
...
This diff is collapsed.
Click to expand it.
abweb/js/login/login.js
View file @
f2d74518
...
@@ -185,9 +185,8 @@ LOGIN.processLogin = function() {
...
@@ -185,9 +185,8 @@ LOGIN.processLogin = function() {
if
(
ClientData
.
userInfo_sid_local
())
{
if
(
ClientData
.
userInfo_sid_local
())
{
params
.
previousSid
=
ClientData
.
userInfo_sid_local
();
params
.
previousSid
=
ClientData
.
userInfo_sid_local
();
}
}
// Get url to login
// Get url to login
url
=
CO
NSTANT
.
URL
.
CMS
.
BASE
+
accountPath
+
CONSTANT
.
URL
.
CMS
.
API
.
BASE
+
CONSTANT
.
URL
.
CMS
.
API
.
LOGIN
;
url
=
CO
MMON
.
format
(
ClientData
.
conf_checkApiUrl
(),
accountPath
)
+
CONSTANT
.
URL
.
CMS
.
API
.
LOGIN
;
COMMON
.
cmsAjax
(
url
,
params
,
true
,
function
(
data
)
{
COMMON
.
cmsAjax
(
url
,
params
,
true
,
function
(
data
)
{
LOGIN
.
userinfo_sid
=
data
.
sid
;
LOGIN
.
userinfo_sid
=
data
.
sid
;
...
@@ -335,7 +334,7 @@ LOGIN.changePasswordProcess = function() {
...
@@ -335,7 +334,7 @@ LOGIN.changePasswordProcess = function() {
params
.
language
=
I18N
.
getCurrentLanguage
();
params
.
language
=
I18N
.
getCurrentLanguage
();
}
}
const
url
=
CO
NSTANT
.
URL
.
CMS
.
BASE
+
ClientData
.
userInfo_accountPath
()
+
CONSTANT
.
URL
.
CMS
.
API
.
BASE
+
CONSTANT
.
URL
.
CMS
.
API
.
PASSWORD_CHANGE
;
const
url
=
CO
MMON
.
format
(
ClientData
.
conf_checkApiUrl
(),
ClientData
.
userInfo_accountPath
)
+
CONSTANT
.
URL
.
CMS
.
API
.
PASSWORD_CHANGE
;
COMMON
.
cmsAjax
(
url
,
params
,
false
,
function
(
result
)
{
COMMON
.
cmsAjax
(
url
,
params
,
false
,
function
(
result
)
{
if
(
result
.
httpStatus
==
'200'
)
{
if
(
result
.
httpStatus
==
'200'
)
{
...
@@ -548,7 +547,7 @@ LOGIN.ready = function() {
...
@@ -548,7 +547,7 @@ LOGIN.ready = function() {
// set api connection
// set api connection
ClientData
.
conf_apiUrl
(
siteUrl
+
"{0}/abvapi"
);
ClientData
.
conf_apiUrl
(
siteUrl
+
"{0}/abvapi"
);
ClientData
.
conf_apiLoginUrl
(
siteUrl
+
"nuabvapi"
);
ClientData
.
conf_apiLoginUrl
(
siteUrl
+
"nuabvapi"
);
ClientData
.
conf_checkApi
Login
Url
(
siteUrl
+
"checkapi/web"
);
ClientData
.
conf_checkApiUrl
(
siteUrl
+
"checkapi/web"
);
ClientData
.
conf_apiResourceDlUrl
(
siteUrl
+
"{0}/dl"
);
ClientData
.
conf_apiResourceDlUrl
(
siteUrl
+
"{0}/dl"
);
// set account setting value
// set account setting value
ClientData
.
userInfo_accountPath
(
urlPath
);
ClientData
.
userInfo_accountPath
(
urlPath
);
...
@@ -561,7 +560,7 @@ LOGIN.ready = function() {
...
@@ -561,7 +560,7 @@ LOGIN.ready = function() {
}
else
{
}
else
{
// conf parameter set
// conf parameter set
ClientData
.
conf_apiUrl
(
sysSettings
.
apiUrl
);
ClientData
.
conf_apiUrl
(
sysSettings
.
apiUrl
);
ClientData
.
conf_checkApi
LoginUrl
(
sysSettings
.
checkApiLogin
Url
);
ClientData
.
conf_checkApi
Url
(
sysSettings
.
checkApi
Url
);
ClientData
.
conf_apiLoginUrl
(
sysSettings
.
apiLoginUrl
);
ClientData
.
conf_apiLoginUrl
(
sysSettings
.
apiLoginUrl
);
ClientData
.
conf_apiResourceDlUrl
(
sysSettings
.
apiResourceDlUrl
);
ClientData
.
conf_apiResourceDlUrl
(
sysSettings
.
apiResourceDlUrl
);
}
}
...
...
This diff is collapsed.
Click to expand it.
abweb/js/notification-content/notification-content.js
View file @
f2d74518
...
@@ -20,7 +20,7 @@ NotificationSelect.getNotificationSelectData = function (callback) {
...
@@ -20,7 +20,7 @@ NotificationSelect.getNotificationSelectData = function (callback) {
let
param
=
{
let
param
=
{
sid
:
COMMON
.
getSid
(),
sid
:
COMMON
.
getSid
(),
};
};
const
url
=
CO
NSTANT
.
URL
.
CMS
.
BASE
+
ClientData
.
userInfo_accountPath
()
+
CONSTANT
.
URL
.
CMS
.
API
.
BASE
+
'pushMessageTemplate/'
;
const
url
=
CO
MMON
.
format
(
ClientData
.
conf_checkApiUrl
(),
ClientData
.
userInfo_accountPath
)
+
CONSTANT
.
URL
.
CMS
.
API
.
PUSH_MESSAGE_TEMPLATE
;
COMMON
.
cmsAjax
(
url
,
param
,
false
,
function
(
json
)
{
COMMON
.
cmsAjax
(
url
,
param
,
false
,
function
(
json
)
{
if
(
callback
)
{
if
(
callback
)
{
callback
(
json
);
callback
(
json
);
...
...
This diff is collapsed.
Click to expand it.
abweb/js/operationList/operationList.js
View file @
f2d74518
...
@@ -64,7 +64,7 @@ OL.getAllDataWeb = function (searchKeyWord, sortIndex, searchStartDate, searchEn
...
@@ -64,7 +64,7 @@ OL.getAllDataWeb = function (searchKeyWord, sortIndex, searchStartDate, searchEn
param
.
operationGroupMasterId
=
operationGroupMasterId
;
param
.
operationGroupMasterId
=
operationGroupMasterId
;
}
}
const
url
=
CO
NSTANT
.
URL
.
CMS
.
BASE
+
ClientData
.
userInfo_accountPath
()
+
CONSTANT
.
URL
.
CMS
.
API
.
BASE
+
CONSTANT
.
URL
.
CMS
.
API
.
ALL_OPERATION_LIST
;
const
url
=
CO
MMON
.
format
(
ClientData
.
conf_checkApiUrl
(),
ClientData
.
userInfo_accountPath
)
+
CONSTANT
.
URL
.
CMS
.
API
.
ALL_OPERATION_LIST
;
COMMON
.
cmsAjax
(
url
,
param
,
false
,
function
(
json
)
{
COMMON
.
cmsAjax
(
url
,
param
,
false
,
function
(
json
)
{
OL
.
saveSearchKeyWord
(
searchKeyWord
,
sortIndex
,
searchStartDate
,
searchEndDate
,
operationGroupMasterId
);
OL
.
saveSearchKeyWord
(
searchKeyWord
,
sortIndex
,
searchStartDate
,
searchEndDate
,
operationGroupMasterId
);
...
@@ -527,7 +527,7 @@ OL.saveOperationReadingLog = function (operationId, operationType, reportType) {
...
@@ -527,7 +527,7 @@ OL.saveOperationReadingLog = function (operationId, operationType, reportType) {
params
.
operationType
=
operationType
;
params
.
operationType
=
operationType
;
params
.
reportType
=
reportType
;
params
.
reportType
=
reportType
;
params
.
viewingStartDate
=
COMMON
.
currentTime
();
params
.
viewingStartDate
=
COMMON
.
currentTime
();
const
url
=
CO
NSTANT
.
URL
.
CMS
.
BASE
+
ClientData
.
userInfo_accountPath
()
+
CONSTANT
.
URL
.
CMS
.
API
.
BASE
+
CONSTANT
.
URL
.
CMS
.
API
.
OPERATION_VIEW_LOG
;
const
url
=
CO
MMON
.
format
(
ClientData
.
conf_checkApiUrl
(),
ClientData
.
userInfo_accountPath
)
+
CONSTANT
.
URL
.
CMS
.
API
.
OPERATION_VIEW_LOG
;
COMMON
.
cmsAjax
(
url
,
params
,
false
);
COMMON
.
cmsAjax
(
url
,
params
,
false
);
};
};
...
@@ -539,7 +539,7 @@ OL.saveOperationReadingLog = function (operationId, operationType, reportType) {
...
@@ -539,7 +539,7 @@ OL.saveOperationReadingLog = function (operationId, operationType, reportType) {
* @returns url
* @returns url
*/
*/
OL
.
createUrlOfOperation
=
function
(
enableAddReport
,
reportType
)
{
OL
.
createUrlOfOperation
=
function
(
enableAddReport
,
reportType
)
{
let
baseUrl
=
CO
NSTANT
.
URL
.
CMS
.
BASE
+
ClientData
.
userInfo_accountPath
()
+
CONSTANT
.
URL
.
CMS
.
HTML
.
BASE
;
let
baseUrl
=
CO
MMON
.
format
(
ClientData
.
conf_checkApiUrl
(),
ClientData
.
userInfo_accountPath
)
+
CONSTANT
.
URL
.
HTML
.
BASE
;
if
(
reportType
==
CONSTANT
.
REPORT_TYPE
.
ROUTINE
||
enableAddReport
==
'1'
)
{
if
(
reportType
==
CONSTANT
.
REPORT_TYPE
.
ROUTINE
||
enableAddReport
==
'1'
)
{
return
baseUrl
+
CONSTANT
.
URL
.
CMS
.
HTML
.
TASK_REPORT_LIST
;
return
baseUrl
+
CONSTANT
.
URL
.
CMS
.
HTML
.
TASK_REPORT_LIST
;
}
else
{
}
else
{
...
...
This diff is collapsed.
Click to expand it.
abweb/js/operationSelect/operation-select.js
View file @
f2d74518
...
@@ -22,7 +22,7 @@ OperationSelect.getOperationSelectData = function (callback) {
...
@@ -22,7 +22,7 @@ OperationSelect.getOperationSelectData = function (callback) {
let
param
=
{
let
param
=
{
sid
:
COMMON
.
getSid
(),
sid
:
COMMON
.
getSid
(),
};
};
const
url
=
CO
NSTANT
.
URL
.
CMS
.
BASE
+
ClientData
.
userInfo_accountPath
()
+
CONSTANT
.
URL
.
CMS
.
API
.
BASE
+
'operationSelect/'
;
const
url
=
CO
MMON
.
format
(
ClientData
.
conf_checkApiUrl
(),
ClientData
.
userInfo_accountPath
)
+
CONSTANT
.
URL
.
CMS
.
API
.
OPERATION_SELECT
;
COMMON
.
cmsAjax
(
url
,
param
,
false
,
function
(
json
)
{
COMMON
.
cmsAjax
(
url
,
param
,
false
,
function
(
json
)
{
if
(
callback
)
{
if
(
callback
)
{
callback
(
json
);
callback
(
json
);
...
...
This diff is collapsed.
Click to expand it.
abweb/js/pickup/pickup.js
View file @
f2d74518
...
@@ -47,7 +47,7 @@ PICKUP.defaultPickupList = {
...
@@ -47,7 +47,7 @@ PICKUP.defaultPickupList = {
operationList
:[]
operationList
:[]
}
}
PICKUP
.
baseApiUrl
=
CO
NSTANT
.
URL
.
CMS
.
BASE
+
ClientData
.
userInfo_accountPath
()
+
CONSTANT
.
URL
.
CMS
.
API
.
BASE
;
PICKUP
.
baseApiUrl
=
CO
MMON
.
format
(
ClientData
.
conf_checkApiUrl
(),
ClientData
.
userInfo_accountPath
)
;
PICKUP
.
getNewReportListApiUrl
=
PICKUP
.
baseApiUrl
+
'newReport'
;
PICKUP
.
getNewReportListApiUrl
=
PICKUP
.
baseApiUrl
+
'newReport'
;
PICKUP
.
getContinuousWorkListApiUrl
=
PICKUP
.
baseApiUrl
+
'workingFlow'
;
PICKUP
.
getContinuousWorkListApiUrl
=
PICKUP
.
baseApiUrl
+
'workingFlow'
;
PICKUP
.
getReportWithWarningsListApiUrl
=
PICKUP
.
baseApiUrl
+
'warningWithReport'
;
PICKUP
.
getReportWithWarningsListApiUrl
=
PICKUP
.
baseApiUrl
+
'warningWithReport'
;
...
...
This diff is collapsed.
Click to expand it.
abweb/js/pushMessageDetail/push-message-detail.js
View file @
f2d74518
var
PushMessageDetail
=
{};
var
PushMessageDetail
=
{};
PushMessageDetail
.
baseApiUrl
=
CO
NSTANT
.
URL
.
CMS
.
BASE
+
ClientData
.
userInfo_accountPath
()
+
CONSTANT
.
URL
.
CMS
.
API
.
BASE
+
'pushMessageDetail/'
;
PushMessageDetail
.
baseApiUrl
=
CO
MMON
.
format
(
ClientData
.
conf_checkApiUrl
(),
ClientData
.
userInfo_accountPath
)
+
'pushMessageDetail/'
;
PushMessageDetail
.
dummyMessageDetailJson
=
{
PushMessageDetail
.
dummyMessageDetailJson
=
{
pushMessageId
:
1
,
pushMessageId
:
1
,
...
...
This diff is collapsed.
Click to expand it.
abweb/js/pushMessageList/push-message-list.js
View file @
f2d74518
...
@@ -3,7 +3,7 @@
...
@@ -3,7 +3,7 @@
* @since cms:1.4.3.2&1.4.3.3 web:1.0
* @since cms:1.4.3.2&1.4.3.3 web:1.0
*/
*/
var
PushMessageList
=
{};
var
PushMessageList
=
{};
PushMessageList
.
baseApiUrl
=
CO
NSTANT
.
URL
.
CMS
.
BASE
+
ClientData
.
userInfo_accountPath
()
+
CONSTANT
.
URL
.
CMS
.
API
.
BASE
+
'pushMessageList/'
;
PushMessageList
.
baseApiUrl
=
CO
MMON
.
format
(
ClientData
.
conf_checkApiUrl
(),
ClientData
.
userInfo_accountPath
)
+
'pushMessageList/'
;
/**
/**
* Init when html onload
* Init when html onload
...
...
This diff is collapsed.
Click to expand it.
abweb/js/reportList/reportList.js
View file @
f2d74518
...
@@ -3,7 +3,8 @@
...
@@ -3,7 +3,8 @@
var
RL
=
{};
var
RL
=
{};
RL
.
init
=
function
()
{
RL
.
init
=
function
()
{
COMMON
.
checkAuth
(
false
);
console
.
log
(
"kdh check ok"
);
// COMMON.checkAuth(true);
RL
.
loadCommon
();
RL
.
loadCommon
();
RL
.
initTaskReportList
();
RL
.
initTaskReportList
();
...
@@ -25,7 +26,7 @@ RL.initTaskReportList = function() {
...
@@ -25,7 +26,7 @@ RL.initTaskReportList = function() {
params
.
sid
=
COMMON
.
getSid
();
params
.
sid
=
COMMON
.
getSid
();
params
.
operationId
=
sessionStorage
.
OL_operationId
;
params
.
operationId
=
sessionStorage
.
OL_operationId
;
params
.
returnUrl
=
CONSTANT
.
URL
.
WEB
.
BASE
+
CONSTANT
.
URL
.
WEB
.
OPERATION_LIST
;
params
.
returnUrl
=
CONSTANT
.
URL
.
WEB
.
BASE
+
CONSTANT
.
URL
.
WEB
.
OPERATION_LIST
;
let
url
=
CO
NSTANT
.
URL
.
CMS
.
BASE
+
ClientData
.
userInfo_accountPath
(
)
+
CONSTANT
.
URL
.
CMS
.
HTML
.
BASE
+
CONSTANT
.
URL
.
CMS
.
HTML
.
TASK_REPORT_LIST
;
let
url
=
CO
MMON
.
format
(
ClientData
.
conf_checkApiUrl
(),
ClientData
.
userInfo_accountPath
)
+
CONSTANT
.
URL
.
CMS
.
HTML
.
BASE
+
CONSTANT
.
URL
.
CMS
.
HTML
.
TASK_REPORT_LIST
;
// COMMON.postCommunication(url, params);
// COMMON.postCommunication(url, params);
$
(
"#task-list"
).
load
(
url
,
params
);
$
(
"#task-list"
).
load
(
url
,
params
);
// COMMON.cmsAjax(url, params, false, function(result) {
// COMMON.cmsAjax(url, params, false, function(result) {
...
...
This diff is collapsed.
Click to expand it.
abweb/js/sendMessage/send-message.js
View file @
f2d74518
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
*/
*/
var
SendMessage
=
{};
var
SendMessage
=
{};
SendMessage
.
baseApiUrl
=
CO
NSTANT
.
URL
.
CMS
.
BASE
+
ClientData
.
userInfo_accountPath
()
+
CONSTANT
.
URL
.
CMS
.
API
.
BASE
+
'sendPushMessage/'
;
SendMessage
.
baseApiUrl
=
CO
MMON
.
format
(
ClientData
.
conf_checkApiUrl
(),
ClientData
.
userInfo_accountPath
)
+
'sendPushMessage/'
;
/**
/**
* Get input content
* Get input content
...
...
This diff is collapsed.
Click to expand it.
abweb/js/setting/settings.js
View file @
f2d74518
...
@@ -77,7 +77,7 @@ SETTINGS.dspPwdUpd1_Click = function(e) {
...
@@ -77,7 +77,7 @@ SETTINGS.dspPwdUpd1_Click = function(e) {
language
:
I18N
.
getCurrentLanguage
(),
language
:
I18N
.
getCurrentLanguage
(),
appId
:
4
appId
:
4
};
};
const
url
=
CO
NSTANT
.
URL
.
CMS
.
BASE
+
ClientData
.
userInfo_accountPath
()
+
CONSTANT
.
URL
.
CMS
.
API
.
BASE
+
CONSTANT
.
URL
.
CMS
.
API
.
PASSWORD_CHANGE
;
const
url
=
CO
MMON
.
format
(
ClientData
.
conf_checkApiUrl
(),
ClientData
.
userInfo_accountPath
)
+
CONSTANT
.
URL
.
CMS
.
API
.
PASSWORD_CHANGE
;
COMMON
.
cmsAjax
(
url
,
params
,
false
,
COMMON
.
cmsAjax
(
url
,
params
,
false
,
SETTINGS
.
avwCmsApi_passwordChange_success
,
SETTINGS
.
avwCmsApi_passwordChange_success
,
SETTINGS
.
avwCmsApi_passwordChange_fail
);
SETTINGS
.
avwCmsApi_passwordChange_fail
);
...
...
This diff is collapsed.
Click to expand it.
env.sh
View file @
f2d74518
...
@@ -25,6 +25,7 @@ modify_api()
...
@@ -25,6 +25,7 @@ modify_api()
"apiUrl" : "
$URI_PREFIX
/{0}/abvapi",
"apiUrl" : "
$URI_PREFIX
/{0}/abvapi",
"apiLoginUrl" : "
$URI_PREFIX
/nuabvapi",
"apiLoginUrl" : "
$URI_PREFIX
/nuabvapi",
"apiResourceDlUrl" : "
$URI_PREFIX
/{0}/dl",
"apiResourceDlUrl" : "
$URI_PREFIX
/{0}/dl",
"checkApiUrl" : "
$URI_PREFIX
/{0}/checkapi/web/",
"bookShelfCount" : 15,
"bookShelfCount" : 15,
"bookListCount" : 15,
"bookListCount" : 15,
"screenlockTimeDefault" : 30,
"screenlockTimeDefault" : 30,
...
...
This diff is collapsed.
Click to expand it.
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