Commit 6b6050e9 by Kim Gyeongeun

ICHICOポイント利用再開のため、期間設定を無効にする

parent 7e641598
...@@ -94,13 +94,14 @@ public class PointUseAction extends AbstractAction { ...@@ -94,13 +94,14 @@ public class PointUseAction extends AbstractAction {
pointUseForm.giftExchangeInfoList = giftExchangeInfoService.findGiftExchangeInfoList(); pointUseForm.giftExchangeInfoList = giftExchangeInfoService.findGiftExchangeInfoList();
// 現在日付を取得し、ICHICOポイントの交換リンクを表示するか判定する // 現在日付を取得し、ICHICOポイントの交換リンクを表示するか判定する
Date currentDate = new Date(); // 2024年4月1日から再開のため、当該ロジックを削除
Date hideDate = new SimpleDateFormat("yyyy/MM/dd").parse(giftExchangeHiddenDate.ICHICO_HIDE_DATE); // Date currentDate = new Date();
if(currentDate.before(hideDate)) { // Date hideDate = new SimpleDateFormat("yyyy/MM/dd").parse(giftExchangeHiddenDate.ICHICO_HIDE_DATE);
pointUseForm.ichicoHide = false; // if(currentDate.before(hideDate)) {
} else { // pointUseForm.ichicoHide = false;
// } else {
pointUseForm.ichicoHide = true; pointUseForm.ichicoHide = true;
} // }
return "/user/pointUse/pointUseIndex.html"; return "/user/pointUse/pointUseIndex.html";
} }
......
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