Commit 9e847f68 by Kim Gyeongeun

#65662 【市川市】eモニ ICHICOポイントへの交換申請者一覧について

parent 38031dd9
...@@ -315,6 +315,11 @@ public class PointUseAction extends AbstractAction { ...@@ -315,6 +315,11 @@ public class PointUseAction extends AbstractAction {
addError(SinaburoViewUtil.getMessage("errors.E013")); addError(SinaburoViewUtil.getMessage("errors.E013"));
return "/user/pointUse/pointUse"; return "/user/pointUse/pointUse";
} }
// 会員番号チェック
if (StringUtil.isBlank(pointUseForm.memberNum)) {
request.setAttribute("errMsg", SinaburoViewUtil.getMessage("errors.E000"));
return "/error/errorMsg.html";
}
// 会員番号更新 // 会員番号更新
if(SinaburoConstant.giftType.ICHICO.equals(pointUseForm.giftType)) { if(SinaburoConstant.giftType.ICHICO.equals(pointUseForm.giftType)) {
......
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