쇼핑몰: 개인결제, 주문서 작성 스타일 보완
This commit is contained in:
@ -359,13 +359,13 @@ ob_end_clean();
|
||||
<table>
|
||||
<tbody>
|
||||
<tr>
|
||||
<th scope="row"><label for="od_name">이름</label></th>
|
||||
<th scope="row"><label for="od_name">이름<strong class="sound_only"> 필수</strong></label></th>
|
||||
<td><input type="text" name="od_name" value="<?php echo $member['mb_name']; ?>" id="od_name" required class="frm_input required" maxlength="20"></td>
|
||||
</tr>
|
||||
|
||||
<?php if (!$is_member) { // 비회원이면 ?>
|
||||
<tr>
|
||||
<th scope="row"><label for="od_pwd">비밀번호</label></th>
|
||||
<th scope="row"><label for="od_pwd">비밀번호<strong class="sound_only"> 필수</strong></label></th>
|
||||
<td>
|
||||
<input type="password" name="od_pwd" id="od_pwd" required class="frm_input required" maxlength="20">
|
||||
영,숫자 3~20자 (주문서 조회시 필요)
|
||||
@ -374,7 +374,7 @@ ob_end_clean();
|
||||
<?php } ?>
|
||||
|
||||
<tr>
|
||||
<th scope="row"><label for="od_tel">전화번호</label></th>
|
||||
<th scope="row"><label for="od_tel">전화번호<strong class="sound_only"> 필수</strong></label></th>
|
||||
<td><input type="text" name="od_tel" value="<?php echo $member['mb_tel']; ?>" id="od_tel" required class="frm_input required" maxlength="20"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
@ -402,7 +402,7 @@ ob_end_clean();
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row"><label for="od_email">E-mail</label></th>
|
||||
<th scope="row"><label for="od_email">E-mail<strong class="sound_only"> 필수</strong></label></th>
|
||||
<td><input type="email" name="od_email" value="<?php echo $member['mb_email']; ?>" id="od_email" required class="frm_input required" maxlength="100"></td>
|
||||
</tr>
|
||||
|
||||
@ -499,11 +499,11 @@ ob_end_clean();
|
||||
}
|
||||
?>
|
||||
<tr>
|
||||
<th scope="row"><label for="od_b_name">이름</label></th>
|
||||
<th scope="row"><label for="od_b_name">이름<strong class="sound_only"> 필수</strong></label></th>
|
||||
<td><input type="text" name="od_b_name" id="od_b_name" required class="frm_input required" maxlength="20"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row"><label for="od_b_tel">전화번호</label></th>
|
||||
<th scope="row"><label for="od_b_tel">전화번호<strong class="sound_only"> 필수</strong></label></th>
|
||||
<td><input type="text" name="od_b_tel" id="od_b_tel" required class="frm_input required" maxlength="20"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
||||
@ -180,21 +180,39 @@ require './settle_kcp.inc.php';
|
||||
preg_match("/(\s[^\s]+\s)/", $pp['pp_bank_account'], $matchs);
|
||||
$deposit_no = trim($matchs[1]);
|
||||
?>
|
||||
<fieldset>
|
||||
<legend>모의입금처리</legend>
|
||||
<p>관리자가 가상계좌 테스트를 한 경우에만 보입니다.</p>
|
||||
<form method="post" action="http://devadmin.kcp.co.kr/Modules/Noti/TEST_Vcnt_Noti_Proc.jsp" target="_blank">
|
||||
<label for="e_trade_no">KCP 거래번호</label>
|
||||
<input type="text" name="e_trade_no" value="<?php echo $pp['pp_tno']; ?>"><br />
|
||||
<label for="deposit_no">입금계좌</label>
|
||||
<input type="text" name="deposit_no" value="<?php echo $deposit_no; ?>"><br />
|
||||
<label for="req_name">입금자명</label>
|
||||
<input type="text" name="req_name" value="<?php echo $pp['pp_deposit_name']; ?>"><br />
|
||||
<label for="noti_url">입금통보 URL</label>
|
||||
<input type="text" name="noti_url" value="<?php echo G5_SHOP_URL; ?>/settle_kcp_common.php"><br /><br />
|
||||
<input type="submit" value="입금통보 테스트">
|
||||
</form>
|
||||
</fieldset>
|
||||
<div class="tbl_frm01 tbl_wrap">
|
||||
<form method="post" action="http://devadmin.kcp.co.kr/Modules/Noti/TEST_Vcnt_Noti_Proc.jsp" target="_blank">
|
||||
<table>
|
||||
<caption>모의입금처리</caption>
|
||||
<colgroup>
|
||||
<col class="grid_3">
|
||||
<col>
|
||||
</colgroup>
|
||||
<tbody>
|
||||
<tr>
|
||||
<th scope="col"><label for="e_trade_no">KCP 거래번호</label></th>
|
||||
<td><input type="text" name="e_trade_no" value="<?php echo $pp['pp_tno']; ?>"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="col"><label for="deposit_no">입금계좌</label></th>
|
||||
<td><input type="text" name="deposit_no" value="<?php echo $deposit_no; ?>"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="col"><label for="req_name">입금자명</label></th>
|
||||
<td><input type="text" name="req_name" value="<?php echo $pp['pp_deposit_name']; ?>"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="col"><label for="noti_url">입금통보 URL</label></th>
|
||||
<td><input type="text" name="noti_url" value="<?php echo G5_SHOP_URL; ?>/settle_kcp_common.php"></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<div id="sod_fin_test" class="btn_confirm">
|
||||
<input type="submit" value="입금통보 테스트" class="btn_submit">
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
<?php } ?>
|
||||
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user