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
c5eefe89
Commit
c5eefe89
authored
May 09, 2023
by
Hayato Kamimura
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
【規約同意】名前修正
parent
65787c76
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
32 additions
and
32 deletions
+32
-32
abweb/common/json/lang/lang-en.json
+1
-1
abweb/common/json/lang/lang-ja.json
+1
-1
abweb/common/json/lang/lang-ko.json
+1
-1
abweb/css/agreementToTerms/agreementToTerms.css
+0
-0
abweb/html/agreementToTerms.html
+5
-5
abweb/html/index.html
+2
-2
abweb/html/login.html
+1
-1
abweb/js/agreementToTerms/agreementToTerms.js
+14
-14
abweb/js/login/login.js
+7
-7
No files found.
abweb/common/json/lang/lang-en.json
View file @
c5eefe89
...
...
@@ -129,7 +129,7 @@
"errorSendMsg"
:
"Send failed."
,
"sitePolicy"
:
"Site Policy"
,
"agrementToTermsTitle"
:
"Terms of Service"
,
"agre
e
mentToTermsTitle"
:
"Terms of Service"
,
"TermAgree"
:
"Agree"
,
"TermDisagree"
:
"Disagree"
,
"msgDisagreeTerm"
:
"Log out and then go to the login screen. Are you okay?"
...
...
abweb/common/json/lang/lang-ja.json
View file @
c5eefe89
...
...
@@ -127,7 +127,7 @@
"errorSendMsg"
:
"送信に失敗しました。"
,
"sitePolicy"
:
"サイトポリシー"
,
"agrementToTermsTitle"
:
"利用規約"
,
"agre
e
mentToTermsTitle"
:
"利用規約"
,
"TermAgree"
:
"同意する"
,
"TermDisagree"
:
"同意しない"
,
"msgDisagreeTerm"
:
"ログアウトされ、ログイン画面に遷移します。よろしいでしょうか?"
...
...
abweb/common/json/lang/lang-ko.json
View file @
c5eefe89
...
...
@@ -126,7 +126,7 @@
"errorSendMsg"
:
"전송에 실패했습니다."
,
"sitePolicy"
:
"사이트 정책"
,
"agrementToTermsTitle"
:
"이용규약"
,
"agre
e
mentToTermsTitle"
:
"이용규약"
,
"TermAgree"
:
"동의"
,
"TermDisagree"
:
"동의 안함"
,
"msgDisagreeTerm"
:
"로그 아웃되어 로그인 화면으로 이동합니다. 실행 하시겠습니까?"
...
...
abweb/css/agre
mentToTerms/agr
ementToTerms.css
→
abweb/css/agre
ementToTerms/agre
ementToTerms.css
View file @
c5eefe89
File moved
abweb/html/agrementToTerms.html
→
abweb/html/agre
e
mentToTerms.html
View file @
c5eefe89
...
...
@@ -19,7 +19,7 @@
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/loading.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/header.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/style.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../css/agre
mentToTerms/agr
ementToTerms.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../css/agre
ementToTerms/agre
ementToTerms.css"
>
<!-- vender css -->
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/fontawesome_relative_path.css"
>
...
...
@@ -33,11 +33,11 @@
<script
type=
"text/javascript"
src=
"../common/js/common.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"../common/js/header.js"
></script>
<script
type=
"text/javascript"
src=
"../js/login/login.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"../js/agre
mentToTerms/agr
ementToTerms.js"
></script>
<script
type=
"text/javascript"
src=
"../js/agre
ementToTerms/agre
ementToTerms.js"
></script>
<script
type=
"text/javascript"
>
$
(
document
).
ready
(
function
(){
agre
mentToTerms
.
initAgr
ement
();
agre
ementToTerms
.
initagre
ement
();
})
</script>
</head>
...
...
@@ -53,8 +53,8 @@
<p
id=
"agreement"
></p>
</div>
<div
class=
"btn-wrapper"
>
<button
class=
"btn btn-agree"
id=
"agreeTerm"
onclick=
"agrementToTerms.sendAgreeTerms()"
>
同意する
</a>
<button
class=
"btn btn-disagree"
id=
"disagreeTerm"
onclick=
"agrementToTerms.disagreeTerm()"
>
同意しない
</a>
<button
class=
"btn btn-agree"
id=
"agreeTerm"
onclick=
"agre
e
mentToTerms.sendAgreeTerms()"
>
同意する
</a>
<button
class=
"btn btn-disagree"
id=
"disagreeTerm"
onclick=
"agre
e
mentToTerms.disagreeTerm()"
>
同意しない
</a>
</div>
</div>
...
...
abweb/html/index.html
View file @
c5eefe89
...
...
@@ -31,13 +31,13 @@
<script
src=
"../js/dashboard/dashboard.js?__UPDATEID__"
></script>
<script
src=
"../js/topPage/topPage.js?__UPDATEID__"
></script>
<script
src=
"../js/reportForm/reportForm.js?__UPDATEID__"
></script>
<script
src=
"../js/agre
mentToTerms/agr
ementToTerms.js"
></script>
<script
src=
"../js/agre
ementToTerms/agre
ementToTerms.js"
></script>
<script
type=
"text/javascript"
>
$
(
document
).
ready
(
function
(){
if
(
window
.
performance
){
if
(
window
.
performance
.
navigation
.
type
===
1
){
agrementToTerms
.
destinationHtml
();
agre
e
mentToTerms
.
destinationHtml
();
}
}
})
...
...
abweb/html/login.html
View file @
c5eefe89
...
...
@@ -35,7 +35,7 @@
<script
type=
"text/javascript"
src=
"../common/js/validation.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"../js/login/login.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"../js/agre
mentToTerms/agr
ementToTerms.js"
></script>
<script
type=
"text/javascript"
src=
"../js/agre
ementToTerms/agre
ementToTerms.js"
></script>
<script
type=
"text/javascript"
>
...
...
abweb/js/agre
mentToTerms/agr
ementToTerms.js
→
abweb/js/agre
ementToTerms/agre
ementToTerms.js
View file @
c5eefe89
//サービスオプション「規約同意」
var
agrementToTerms
=
{};
agrementToTerms
.
baseApiUrl
=
COMMON
.
format
(
ClientData
.
conf_apiUrl
(),
ClientData
.
userInfo_accountPath
());
var
agre
e
mentToTerms
=
{};
agre
e
mentToTerms
.
baseApiUrl
=
COMMON
.
format
(
ClientData
.
conf_apiUrl
(),
ClientData
.
userInfo_accountPath
());
//言語、規約情報読み込み
agre
mentToTerms
.
initAgr
ement
=
function
(){
var
data
=
agrementToTerms
.
requireTerms
();
$
(
"#termsTitle"
).
text
(
I18N
.
i18nText
(
"agrementToTermsTitle"
));
agre
ementToTerms
.
initagre
ement
=
function
(){
var
data
=
agre
e
mentToTerms
.
requireTerms
();
$
(
"#termsTitle"
).
text
(
I18N
.
i18nText
(
"agre
e
mentToTermsTitle"
));
$
(
"#agreeTerm"
).
text
(
I18N
.
i18nText
(
"TermAgree"
));
$
(
"#disagreeTerm"
).
text
(
I18N
.
i18nText
(
"TermDisagree"
));
$
(
"#termsVersion"
).
text
(
data
.
termsVersion
);
...
...
@@ -13,13 +13,13 @@ agrementToTerms.initAgrement = function(){
}
//遷移先の決定
agrementToTerms
.
destinationHtml
=
function
(){
var
data
=
agrementToTerms
.
requireTerms
();
agre
e
mentToTerms
.
destinationHtml
=
function
(){
var
data
=
agre
e
mentToTerms
.
requireTerms
();
if
(
data
.
httpStatus
==
CONSTANT
.
HTTP_STATUS
.
OK
){
//公開中バージョンに未同意の場合
if
(
data
.
termsVersion
||
data
.
agreement
){
//利用規約画面に遷移
COMMON
.
avwScreenMove
(
"agrementToTerms.html"
);
COMMON
.
avwScreenMove
(
"agre
e
mentToTerms.html"
);
}
else
{
//規約同意が設定されていない or 公開中バージョンに同意している
//ホーム画面に遷移
...
...
@@ -32,13 +32,13 @@ agrementToTerms.destinationHtml = function(){
}
//利用規約情報の取得
agrementToTerms
.
requireTerms
=
function
(){
agre
e
mentToTerms
.
requireTerms
=
function
(){
var
apiData
=
{};
var
params
=
{
sid
:
COMMON
.
getSid
(),
};
const
url
=
agrementToTerms
.
baseApiUrl
+
"/requireTerms/"
;
const
url
=
agre
e
mentToTerms
.
baseApiUrl
+
"/requireTerms/"
;
COMMON
.
cmsAjax
(
url
,
params
,
...
...
@@ -58,13 +58,13 @@ agrementToTerms.requireTerms = function(){
};
//利用規約情報同意の送信
agrementToTerms
.
sendAgreeTerms
=
function
(){
var
apiData
=
agrementToTerms
.
requireTerms
();
agre
e
mentToTerms
.
sendAgreeTerms
=
function
(){
var
apiData
=
agre
e
mentToTerms
.
requireTerms
();
params
=
{
sid
:
COMMON
.
getSid
(),
termsVersion
:
apiData
.
termsVersion
,
};
const
url
=
agrementToTerms
.
baseApiUrl
+
"/agreeTerms/"
;
const
url
=
agre
e
mentToTerms
.
baseApiUrl
+
"/agreeTerms/"
;
COMMON
.
cmsAjax
(
url
,
params
,
...
...
@@ -84,7 +84,7 @@ agrementToTerms.sendAgreeTerms = function(){
}
//利用規約に同意しない
agrementToTerms
.
disagreeTerm
=
function
(){
agre
e
mentToTerms
.
disagreeTerm
=
function
(){
if
(
confirm
(
I18N
.
i18nText
(
"msgDisagreeTerm"
))){
//ログアウトし、ログイン画面に遷移する
HEADER
.
processLogout
();
...
...
abweb/js/login/login.js
View file @
c5eefe89
...
...
@@ -219,7 +219,7 @@ LOGIN.processLogin = function () {
ClientData
.
userInfo_sid
(
ClientData
.
userInfo_sid_local
());
//利用規約に同意しているかの確認
agrementToTerms
.
destinationHtml
();
agre
e
mentToTerms
.
destinationHtml
();
}
else
if
(
data
.
requirePasswordChange
==
1
)
{
$
(
'#getToken'
).
val
(
data
.
token
);
if
(
LOGIN
.
force_pw_change_on_login
==
2
)
{
...
...
@@ -248,7 +248,7 @@ LOGIN.processLogin = function () {
if
(
numDay
<=
30
)
{
ClientData
.
userInfo_sid
(
ClientData
.
userInfo_sid_local
());
//利用規約に同意しているかの確認
agrementToTerms
.
destinationHtml
();
agre
e
mentToTerms
.
destinationHtml
();
}
else
if
(
numDay
>
30
)
{
LOGIN
.
OpenChangePasswordDialog
();
$
(
'#btnSkip'
).
show
();
...
...
@@ -260,7 +260,7 @@ LOGIN.processLogin = function () {
ClientData
.
userInfo_sid
(
ClientData
.
userInfo_sid_local
());
//利用規約に同意しているかの確認
agrementToTerms
.
destinationHtml
();
agre
e
mentToTerms
.
destinationHtml
();
}
}
else
if
(
data
.
requirePasswordChange
==
2
)
{
$
(
'#getToken'
).
val
(
data
.
token
);
...
...
@@ -283,7 +283,7 @@ LOGIN.processLogin = function () {
ClientData
.
userInfo_sid
(
ClientData
.
userInfo_sid_local
());
//利用規約画面に遷移
agrementToTerms
.
destinationHtml
();
agre
e
mentToTerms
.
destinationHtml
();
}
else
if
(
numDay
>
30
)
{
LOGIN
.
OpenChangePasswordDialog
();
$
(
'.ui-dialog-titlebar'
).
hide
();
...
...
@@ -302,7 +302,7 @@ LOGIN.processLogin = function () {
// No need to change password
ClientData
.
userInfo_sid
(
ClientData
.
userInfo_sid_local
());
//利用規約に同意しているかの確認
agrementToTerms
.
destinationHtml
();
agre
e
mentToTerms
.
destinationHtml
();
}
}
}
else
{
...
...
@@ -360,7 +360,7 @@ LOGIN.changePasswordProcess = function () {
ClientData
.
userInfo_sid
(
ClientData
.
userInfo_sid_local
());
//利用規約に同意しているかの確認
agrementToTerms
.
destinationHtml
();
agre
e
mentToTerms
.
destinationHtml
();
}
else
if
(
result
.
httpStatus
==
'401'
)
{
COMMON
.
goUrlWithCurrentParams
(
CONSTANT
.
PAGE_NAME
.
LOGIN
);
}
else
if
(
result
.
httpStatus
==
'403'
)
{
...
...
@@ -417,7 +417,7 @@ LOGIN.skipPassFunction = function () {
ClientData
.
userInfo_sid
(
ClientData
.
userInfo_sid_local
());
//利用規約に同意しているかの確認
agrementToTerms
.
destinationHtml
();
agre
e
mentToTerms
.
destinationHtml
();
};
// Open Change Password Dialog
...
...
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