Commit 16b45903 by Kim Gyeongeun

ICHICOポイント利用表示日付設定

parent 3cefeac5
......@@ -4,6 +4,7 @@ import java.io.IOException;
import java.io.UnsupportedEncodingException;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
import javax.mail.MessagingException;
......@@ -19,6 +20,7 @@ import org.seasar.struts.annotation.Execute;
import jp.agentec.sinaburocast.action.AbstractAction;
import jp.agentec.sinaburocast.common.SinaburoConstant;
import jp.agentec.sinaburocast.common.SinaburoConstant.UserType;
import jp.agentec.sinaburocast.common.SinaburoConstant.giftExchangeHiddenDate;
import jp.agentec.sinaburocast.common.util.MailUtil;
import jp.agentec.sinaburocast.common.util.PropertyUtil;
import jp.agentec.sinaburocast.common.util.SinaburoUtil;
......@@ -91,14 +93,14 @@ public class PointUseAction extends AbstractAction {
// ポイント交換利用方法取得
pointUseForm.giftExchangeInfoList = giftExchangeInfoService.findGiftExchangeInfoList();
// 現在日付を取得し、ICHICOポイントの交換リンクを表示するか判定する
// 2024年4月1日から再開のため、当該ロジックを削除
// Date currentDate = new Date();
// Date hideDate = new SimpleDateFormat("yyyy/MM/dd").parse(giftExchangeHiddenDate.ICHICO_HIDE_DATE);
// if(currentDate.before(hideDate)) {
// 2024年4月1日から再開のため、ロジックを修正
Date currentDate = new Date();
Date hideDate = new SimpleDateFormat("yyyy/MM/dd").parse(giftExchangeHiddenDate.ICHICO_HIDE_DATE);
if(currentDate.after(hideDate)) {
pointUseForm.ichicoHide = false;
// } else {
// pointUseForm.ichicoHide = true;
// }
} else {
pointUseForm.ichicoHide = true;
}
return "/user/pointUse/pointUseIndex.html";
}
......@@ -222,14 +224,14 @@ public class PointUseAction extends AbstractAction {
return "/user/pointUse/memberConfirm.html";
}
// 現在日付を取得し、会員カード郵送申請ボタンを表示するか判定する
// 2024年4月1日から再開のため、当該ロジックを削除
// Date currentDate = new Date();
// Date hideDate = new SimpleDateFormat("yyyy/MM/dd").parse(giftExchangeHiddenDate.MEMBER_CARD_RECEIPT_HIDE_DATE);
// if(currentDate.before(hideDate)) {
// 2024年4月1日から再開のため、ロジックを修正
Date currentDate = new Date();
Date hideDate = new SimpleDateFormat("yyyy/MM/dd").parse(giftExchangeHiddenDate.MEMBER_CARD_RECEIPT_HIDE_DATE);
if(currentDate.after(hideDate)) {
pointUseForm.memberCardReceiptHide = false;
// } else {
// pointUseForm.memberCardReceiptHide = true;
// }
} else {
pointUseForm.memberCardReceiptHide = true;
}
return "/user/pointUse/memberRegistPage.html";
}
......
......@@ -644,8 +644,8 @@ public interface SinaburoConstant {
*
*/
interface giftExchangeHiddenDate{
String ICHICO_HIDE_DATE = "2023/09/21";
String MEMBER_CARD_RECEIPT_HIDE_DATE = "2023/09/11";
String ICHICO_HIDE_DATE = "2024/04/01";
String MEMBER_CARD_RECEIPT_HIDE_DATE = "2024/04/01";
}
interface initDisable {
......
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