pointUse.html 3.62 KB
Newer Older
Kim Gyeongeun committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#set($title = "ポイント利用画面")
<!-- preHeader -->
#parse( "/WEB-INF/view/common/preHeader.vm" )
##<!-- JAVASCRIPTはここに記載 -->
<body bgcolor="#B3C9E1" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<center>
<!-- header -->
<table width="1024"  cellspacing="0" cellpadding="0">
	<tr>
		<TD>#parse( "/WEB-INF/view/common/header.vm" )</TD>
	</tr>
	<tr>
		<TD>
			<table width="1024" border="0" cellspacing="0" cellpadding="0">
				<tr>
16
			   <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
Kim Gyeongeun committed
17 18 19
				    <td width="1024" bgcolor="#FFFFFF">
				    <table width="100%" border="0" cellspacing="5" cellpadding="0">
					    <tr>
20 21
					        <td align="right">#parse( "/WEB-INF/view/common/menu.vm" )</td>
					        <td align="left"></td>
Kim Gyeongeun committed
22 23 24 25 26 27 28 29 30 31
					        <td align="center" valign="top">
##CONTENT START 各ページコンテンツ
<table width="780" border="0" cellspacing="0" cellpadding="0">
<tr>
<td class="ctsTitle">ポイント利用</td>
</tr>
</table>
<!-- Contents Title Table End -->

<form method="post" action="/em/user/pointUse/confirm/" >
32 33 34
<BR><BR><BR>
<input type="hidden" name="giftType" value="$!pointUseForm.giftType">
<input type="hidden" name="memberNum" value="$!memberNum"/>
Kim Gyeongeun committed
35 36 37

<table width="500" border="0" cellpadding="2" cellspacing="1" bgcolor="#004080">
<tr>
38
	<td class="listmenu" width="160" >現在のポイント数</td>
Kim Gyeongeun committed
39 40 41 42 43
	<td class="listcts" width="360">
		$!tools.getNumberFormatStr($!userInfo.pointNum)
	</td>
</tr>
<tr>
44
	<td class="listmenu">#if($!pointUseForm.giftType == 1)枚数#else交換ポイント数#end</td>
Kim Gyeongeun committed
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
	<td class="listcts">

<select name="giftId">
#foreach($gift in $!pointUseForm.giftList)
	#if($gift.giftId == $!pointUseForm.giftId)
		<option value="$gift.giftId" selected>$gift.giftName</option>
	#else
		<option value="$gift.giftId">$gift.giftName</option>
	#end

#end
</select>

#foreach($gift in $!pointUseForm.giftList)
	<input type="hidden" name="giftList[$velocityCount].giftId" value="$gift.giftId"/>
	<input type="hidden" name="giftList[$velocityCount].giftName" value="$gift.giftName"/>
#end

	</td>
</tr>



</TABLE>
#errmsg()

	##入力情報確認ボタン
	<table width="100%" border="0" cellspacing="2" cellpadding="0">
73
		<TR><TD align="center"><font color="#FF0000"></font>&nbsp;</TD></TR>
Kim Gyeongeun committed
74 75
		<TR>
		    <TD align="center">
76
		    	#if($!pointUseForm.giftType == 1)
Kim Gyeongeun committed
77
		    	<input type="image" src="/em/images/input_conf.gif" alt="入力情報確認">
78 79 80
		    	#else
		    	<input class="nextBtn" type="submit"  value="次へ">
		    	<br><br>
81
		    	<!-- 
Kim Gyeongeun committed
82
		    	<p align="left" style="margin:0px 100px 0px;border: solid 1px #214566;"><font color="blue">
Kazuki Nakamura committed
83
		    	【ポイント交換期間について】
84
				<br>ICHICOポイントへの<b>交換</b>ができるのは令和5年6月1日~9月20日までの間のみです。
Kazuki Nakamura committed
85 86
				<br><br>
				【ICHICOの利用について】
87
				<br>ICHICOの<b>利用</b>は9月21日以降も一定の期間可能です。	
88
				</font></p>
89
				 -->
90
		    	#end
Kim Gyeongeun committed
91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
		    </TD>
		</TR>
	</TABLE>
##CONTENT END 各ページコンテンツ
					        <!-- Button Table Start 点線-->
							<table width="780" border="0" cellspacing="5" cellpadding="0">
								<tr>
									<td background="/em/images/cts_btnbar.gif"><img src="/em/images/spacer.gif" width="1" height="10" border="0"></td>
								</tr>
							</table>
							<!-- Button Table End -->
					        </td>
					    </tr>
				    </table>
				    </td>
106
			   <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
Kim Gyeongeun committed
107 108 109 110 111 112 113 114 115 116 117 118
				</tr>
			</table>
		</TD>
	</tr>
	<tr>
		<TD>#parse( "/WEB-INF/view/common/footer.vm" )</TD>
	</tr>
</table>

</center>
</body>
</html>