Commit 84369192 by vietdo

#15763 プッシュ通知が無効ならヘッダの「通知」ボタンを非表示にする

parent 0587e6fe
...@@ -217,7 +217,10 @@ COMMON.Keys = { ...@@ -217,7 +217,10 @@ COMMON.Keys = {
serviceOpt_reader_readinglog_object: 'reader_readinglog_object', serviceOpt_reader_readinglog_object: 'reader_readinglog_object',
// Session :事業者オプション(serviceOpt)_コンテンツ共有モード:Interger(0:なし , 1:ABook, 2:getits) // Session :事業者オプション(serviceOpt)_コンテンツ共有モード:Interger(0:なし , 1:ABook, 2:getits)
serviceOpt_content_share: 'content_share', serviceOpt_content_share: 'content_share',
// Session :事業者オプション(serviceOpt)_公開時プッシュメッセージ:Char(Y:可能, N:不可)
serviceOpt_apns: 'apns',
// Session :事業者オプション(serviceOpt)_任意のプッシュメッセージ:Char(Y:可能, N:不可)
serviceOpt_usable_push_message: 'usable_push_message',
// Session :共通(common)_コンテンツID:Integer // Session :共通(common)_コンテンツID:Integer
common_contentId: 'common_contentId', common_contentId: 'common_contentId',
// Local :共通(common)_コンテンツID:Integer // Local :共通(common)_コンテンツID:Integer
...@@ -1250,6 +1253,23 @@ var ClientData = { ...@@ -1250,6 +1253,23 @@ var ClientData = {
} }
}, },
// Session :事業者オプション(serviceOpt)_公開時プッシュメッセージ:Char(Y:可能, N:不可)
serviceOpt_apns: function (data) {
if (arguments.length > 0) {
SessionStorageUtils.set(COMMON.Keys.serviceOpt_apns, data);
} else {
return SessionStorageUtils.get(COMMON.Keys.serviceOpt_apns);
}
},
// Session :事業者オプション(serviceOpt)_任意のプッシュメッセージ:Char(Y:可能, N:不可)
serviceOpt_usable_push_message: function (data) {
if (arguments.length > 0) {
SessionStorageUtils.set(COMMON.Keys.serviceOpt_usable_push_message, data);
} else {
return SessionStorageUtils.get(COMMON.Keys.serviceOpt_usable_push_message);
}
},
// Session :事業者オプション(serviceOpt)_カタログエディション:Char(Y:可能, N:不可) // Session :事業者オプション(serviceOpt)_カタログエディション:Char(Y:可能, N:不可)
serviceOpt_catalog_edition: function (data) { serviceOpt_catalog_edition: function (data) {
......
...@@ -150,6 +150,11 @@ $(document).ready(function () { ...@@ -150,6 +150,11 @@ $(document).ready(function () {
}); });
} }
} }
console.log(ClientData.serviceOpt_apns());
console.log(ClientData.serviceOpt_usable_push_message());
if((ClientData.serviceOpt_apns() == 'Y') && (ClientData.serviceOpt_usable_push_message() == 'Y')) {
$('#dspPushMessage').show();
}
$('body').click(HOME.bodyHomeClickFunction); $('body').click(HOME.bodyHomeClickFunction);
if (COMMON.isTouchDevice() == true) { if (COMMON.isTouchDevice() == true) {
...@@ -180,6 +185,10 @@ $(document).ready(function () { ...@@ -180,6 +185,10 @@ $(document).ready(function () {
HEADER.checkForceChangePassword(); HEADER.checkForceChangePassword();
} }
//日比谷用設定ボタン隠す //日比谷用設定ボタン隠す
$('#dspHibiya').hide(); $('#dspHibiya').hide();
......
...@@ -489,6 +489,12 @@ LOGIN.saveServiceUserOption = function(){ ...@@ -489,6 +489,12 @@ LOGIN.saveServiceUserOption = function(){
else if( option.serviceOptionId == 78) { else if( option.serviceOptionId == 78) {
ClientData.serviceOpt_content_share(option.value); ClientData.serviceOpt_content_share(option.value);
} }
else if( option.serviceOptionId == 12) {
ClientData.serviceOpt_apns(option.value);
}
else if( option.serviceOptionId == 49) {
ClientData.serviceOpt_usable_push_message(option.value);
}
}); });
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment