PRAEW 2023年12月号 (No.1001) (2024)

  • PRAEW 2023年12月号 (No.1001) (2)
  • PRAEW 2023年12月号 (No.1001) (3)

海外雑誌

雑誌

PRAEW 2023年12月号 (No.1001)

★★★★★

★★★★★

0.0

カスタマーズボイスを見る

在庫状況 について

商品の情報

フォーマット

雑誌

構成数

1

国内/輸入

輸入

パッケージ仕様

-

発売日

2024年01月12日

規格品番

-

レーベル

-

ISBN

2050268773572

商品の説明

PRAEW 2023年12月号は表紙に大人気ペアGulf&Bow、裏表紙に『Last Twilight』や『Vice Versa』で話題沸騰Jimmy&Seaが登場!
PRAEWならではの盛りだくさんなグラビアと独占インタビューが掲載されます。

※海外からの輸入品のため、本体に破損が見受けられる場合がございます。予めご了承ください。

※特集内容や記事に関してのお問い合わせにはお答えできません。
※海外雑誌のため、製本上または輸送上の都合で多少の汚れや傷、折れや破れがある場合がございます。
あらかじめご了承くださいませ。
※日本語テキストはございません。

作品の情報

その他

フィーチャードアーティスト

GULF KANAWUT

Bow

Jimmy

Sea

収録内容

構成数 | 1枚

    • 1.

      [雑誌]

カスタマーズボイス

    評価する:

関連商品

ニュース & 記事

還元ポイント

27pt

販売価格(税込)

¥ 3,025

現在ご注文いただけません

欲しい物リストに追加

'; html += '

'; html += '

' + value.wantlist_name + '

'; if (value.public_tp_yn == "y") { html += '

公開

'; } else { html += '

非公開

' } html += '

'; html += '

'; html += ''; }) // 入荷通知 if (arrivalNotice == 0) $("#arrivalNotice").hide(); else $("#arrivalNotice").show(); InfoLog("欲しい物リストポップアップ表示!"); $("#WantlistListList").html(html); $("#AddWantlistModal").modal({ showClose: false }); } } else { InfoLog("欲しい物リストが存在しないので1件新規作成する。"); MakeNewWantlistInner(); } }).catch(function (error) { // handle error WarnLog("欲しい物リスト一覧取得処理失敗。 " + error); }).finally(function () { // always executed InfoLog("欲しい物リスト一覧取得処理 END"); DisplayWantlistListFlg = false; }); }; var AddWantlistDetailProcesing = false; function AddWantlistDetail(id, flg, itemId, price) { InfoLog("欲しい物リスト商品追加処理 START。 欲しい物ID = " + id + ", バッジの表示フラグ = " + flg); InfoLog("商品ID = " + itemId + ", 価格 = " + price); if (!AddWantlistDetailProcesing) { AddWantlistDetailProcesing = true; var token = $('input[name="__RequestVerificationToken"]').val(); const params = new FormData(); params.append('__RequestVerificationToken', token); params.append('wantlistId', id); if (itemId == null) { params.append('itemId', 6234835); } else { params.append('itemId', itemId); } if (price == null) { params.append('itemPrice', 3025); } else { params.append('itemPrice', price); } if ($('#checkArrivalNotice').prop('checked')) { params.append('arrivalNotice', 'y'); } else { params.append('arrivalNotice', 'n'); } axios.post('/ec/Wantlist/AddWantlistDetail', params, { withCredentials: true, timeout: 20000 }).then(function (response) { if (response.data == "OK") { InfoLog("欲しい物リスト商品追加、成功"); $("#WantlistListAddDone_" + id).show(); setTimeout(function () { $("#WantlistListAddDone_" + id).hide(); }, 3000); if ("iteminfo" == "iteminfo") { InfoLog("欲しい物リスト追加、バッジ更新"); var count = Number($("#WantlistAddBtn3").attr("data-badge")); if (isNaN(count)) { count = 0; } count++; $("#WantlistAddBtn3").attr("data-badge", count); } } else if (response.data == "DuplicationError") { WarnLog("欲しい物リスト商品追加、登録済エラー"); $("#PopupAlertW").html("登録済の商品です。"); $("#PopupAlertW").show(); $("#ItemInfoWantlistDuplicAlert").show(); setTimeout(function () { $("#PopupAlertW").hide(); $("#ItemInfoWantlistDuplicAlert").hide(); }, 2500); } else { $("#PopupAlertW").html("商品追加時にエラーが発生しました。"); $("#PopupAlertW").show(); setTimeout(function () { $("#PopupAlertW").hide(); }, 2500); } }).catch(function (error) { // handle error WarnLog("欲しい物リスト商品追加処理失敗。 " + error); $("#PopupAlertW").html("商品追加時にエラーが発生しました。"); $("#PopupAlertW").show(); setTimeout(function () { $("#PopupAlertW").hide(); }, 2500); return false; }).finally(function () { // always executed InfoLog("欲しい物リスト商品追加処理 END"); AddWantlistDetailProcesing = false; }); } }; var AddWantlistProcesing = false; function MakeNewWantlist() { InfoLog("欲しい物リスト追加処理 START"); $("#InputNewWantlistName").val(""); $('#WantlistNameInput').modal({ closeExisting: false, showClose: false }); InfoLog("欲しい物リスト追加処理 END"); }; function MakeNewWantlistInner(){ InfoLog("欲しい物リスト追加処理 「実」 START"); if (!AddWantlistProcesing) { AddWantlistProcesing = true; var token = $('input[name="__RequestVerificationToken"]').val(); const params = new FormData(); params.append('__RequestVerificationToken', token); params.append('newWantlistName', $("#InputNewWantlistName").val()); axios.post('/ec/Wantlist/AddWantlist', params, { withCredentials: true, timeout: 20000 }).then(function (response) { InfoLog("欲しい物リスト商品追加、成功。 欲しい物リストを再描画します。"); DisplayWantlistList(); }).catch(function (error) { // handle error WarnLog("欲しい物リスト追加処理失敗。 " + error); $("#PopupAlertW").html("欲しい物リスト追加時にエラーが発生しました。"); $("#PopupAlertW").show(); setTimeout(function () { $("#PopupAlertW").hide(); }, 2500); }).finally(function () { // always executed InfoLog("欲しい物リスト追加処理 「実」 END"); AddWantlistProcesing = false; }); } };

PRAEW 2023年12月号 (No.1001) (4)

コレクションに追加

'; html += '

'; html += '

' + value.collection_name + '

'; if (value.public_tp_yn == "y") { html += '

公開

'; } else { html += '

非公開

' } html += '

'; html += '

'; html += ''; }) InfoLog("コレクションポップアップ表示!"); $("#CollectionListList").html(html); $("#AddCollectionModal").modal({ showClose: false }); if ("iteminfo" == "wantlist") { $('#AddCollectionModal').on($.modal.CLOSE, function (event, modal) { onCloseCollection(); }); } else if ("iteminfo" == "orderdetail") { $('#AddCollectionModal').on($.modal.CLOSE, function (event, modal) { $('.canselExit').find('.blueTxt').click(); }); } } } else { InfoLog("欲しい物リストが存在しないので1件新規作成"); MakeNewCollectionInner(); } }).catch(function (error) { // handle error WarnLog("コレクションリスト一覧取得処理失敗。 " + error); }).finally(function () { // always executed InfoLog("コレクションリスト一覧取得処理 END"); }); }; var itemIds = [6234835]; var ColectionListAddFlg = false; function ColectionListAdd(id, flg) { InfoLog("コレクションアイテム追加処理START 商品ID = " + itemIds + ", バッジ表示フラグ = " + flg); var addItems = new Array(); for(let v of itemIds) { addItems.push(v); } if (!ColectionListAddFlg) { ColectionListAddFlg = true; var token = $('input[name="__RequestVerificationToken"]').val(); InfoLog("処理画面 = iteminfo"); $.ajax({ url: '/ec/Collection/AddCollectionItem', type: 'POST', data: { __RequestVerificationToken: token, collectionId: id, itemIds: addItems, isWantlist: "iteminfo" == "wantlist", releaseId : null }, timeout: 20000, traditional: true, xhrFields: { withCredentials: true }, }).done(function (data) { InfoLog("res = " + data); if (data = "OK") { $("#CollectionListAddDone_" + id).show(); setTimeout(function () { $("#CollectionListAddDone_" + id).hide(); }, 3000); if ("iteminfo" == "iteminfo") { var count = Number($("#CollectionAddBtn3").attr("data-badge")); if (isNaN(count)) { count = 0; } count++; $("#CollectionAddBtn3").attr("data-badge", count); if (count > 999) { $("#CollectionAddBtn3").addClass("add-Collection-item999"); } else if (count > 99) { $("#CollectionAddBtn3").addClass("add-Collection-item99"); } } if ("iteminfo" == "wantlist") { deleteWantlistItem(); } } else { WarnLog("コレクション追加処理失敗。 " + data); $("#PopupAlert").html("商品追加時にエラーが発生しました。"); $("#PopupAlert").show(); setTimeout(function () { $("#PopupAlert").hide(); }, 2500); } ColectionListAddFlg = false; }).fail(function (XMLHttpRequest, textStatus, errorThrown) { WarnLog("コレクションアイテム追加処理失敗 " + errorThrown); $("#PopupAlert").html("商品追加時にエラーが発生しました。"); $("#PopupAlert").show(); setTimeout(function () { $("#PopupAlert").hide(); }, 2500); ColectionListAddFlg = false; }) } }; MakeNewCollectionFlg = false; function MakeNewCollection() { InfoLog("コレクション追加処理 START"); $("#InputNewCollectionName").val(""); $('#CollectionNameInput').modal({ closeExisting: false, showClose: false }); InfoLog("コレクション追加処理 END"); }; function MakeNewCollectionInner() { InfoLog("コレクション追加処理 「実」 START"); if (!MakeNewCollectionFlg) { MakeNewCollectionFlg = true; $.modal.close(); InfoLog("新しいコレクションの名前 = " + $("#InputNewCollectionName").val()); var token = $('input[name="__RequestVerificationToken"]').val(); const params = new FormData(); params.append('__RequestVerificationToken', token); params.append('newCollectionName', $("#InputNewCollectionName").val()); axios.post('/ec/Collection/AddCollection', params, { withCredentials: true, timeout: 20000 }).then(function (response) { if (response.data == "OK") { DisplayCollectionList(); InfoLog("コレクションリスト追加成功"); } else { WarnLog("コレクション追加処理失敗。 " + response.data); $("#PopupAlert").html("コレクション追加時にエラーが発生しました。"); $("#PopupAlert").show(); setTimeout(function () { $("#PopupAlertW").hide(); }, 2500); } }).catch(function (error) { // handle error WarnLog("コレクション追加処理失敗。 " + error); $("#PopupAlert").html("コレクション追加時にエラーが発生しました。"); $("#PopupAlert").show(); setTimeout(function () { $("#PopupAlertW").hide(); }, 2500); }).finally(function () { // always executed InfoLog("コレクション追加処理 「実」 END"); MakeNewCollectionFlg = false; }); } };

PRAEW 2023年12月号 (No.1001) (2024)
Top Articles
Latest Posts
Article information

Author: Rev. Porsche Oberbrunner

Last Updated:

Views: 6736

Rating: 4.2 / 5 (73 voted)

Reviews: 88% of readers found this page helpful

Author information

Name: Rev. Porsche Oberbrunner

Birthday: 1994-06-25

Address: Suite 153 582 Lubowitz Walks, Port Alfredoborough, IN 72879-2838

Phone: +128413562823324

Job: IT Strategist

Hobby: Video gaming, Basketball, Web surfing, Book restoration, Jogging, Shooting, Fishing

Introduction: My name is Rev. Porsche Oberbrunner, I am a zany, graceful, talented, witty, determined, shiny, enchanting person who loves writing and wants to share my knowledge and understanding with you.