Commit 6b6050e9 by Kim Gyeongeun

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

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