80 lines
2.5 KiB
PHP
80 lines
2.5 KiB
PHP
<?php
|
|
include_once('./_common.php');
|
|
|
|
if ($is_guest)
|
|
alert_close('회원만 조회하실 수 있습니다.');
|
|
|
|
$g5['title'] = $member['mb_nick'].' 님의 쿠폰 내역';
|
|
include_once(G5_PATH.'/head.sub.php');
|
|
|
|
$sql = " select cp_id, cp_subject, cp_method, cp_target, cp_start, cp_end, cp_type, cp_price
|
|
from {$g5['g5_shop_coupon_table']}
|
|
where mb_id = '{$member['mb_id']}'
|
|
and cp_start <= '".G5_TIME_YMD."'
|
|
and cp_end >= '".G5_TIME_YMD."'
|
|
order by cp_no ";
|
|
$result = sql_query($sql);
|
|
?>
|
|
|
|
<!-- 쿠폰 내역 시작 { -->
|
|
<div id="coupon" class="new_win">
|
|
<h1 id="new_win_title"><?php echo $g5['title'] ?></h1>
|
|
|
|
<table class="basic_tbl">
|
|
<thead>
|
|
<tr>
|
|
<th scope="col">쿠폰명</th>
|
|
<th scope="col">적용대상</th>
|
|
<th scope="col">할인금액</th>
|
|
<th scope="col">사용기한</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php
|
|
$cp_count = 0;
|
|
for($i=0; $row=sql_fetch_array($result); $i++) {
|
|
if(is_used_coupon($member['mb_id'], $row['cp_id']))
|
|
continue;
|
|
|
|
if($row['cp_method'] == 1) {
|
|
$sql = " select ca_name from {$g5['g5_shop_category_table']} where ca_id = '{$row['cp_target']}' ";
|
|
$ca = sql_fetch($sql);
|
|
$cp_target = $ca['ca_name'].'의 상품할인';
|
|
} else if($row['cp_method'] == 2) {
|
|
$cp_target = '결제금액 할인';
|
|
} else if($row['cp_method'] == 3) {
|
|
$cp_target = '배송비 할인';
|
|
} else {
|
|
$sql = " select it_name from {$g5['g5_shop_item_table']} where it_id = '{$row['cp_target']}' ";
|
|
$it = sql_fetch($sql);
|
|
$cp_target = $it['it_name'].' 상품할인';
|
|
}
|
|
|
|
if($row['cp_type'])
|
|
$cp_price = $row['cp_price'].'%';
|
|
else
|
|
$cp_price = number_format($row['cp_price']).'원';
|
|
|
|
$cp_count++;
|
|
?>
|
|
<tr>
|
|
<td><?php echo $row['cp_subject']; ?></td>
|
|
<td><?php echo $cp_target; ?></td>
|
|
<td class="td_bignum"><?php echo $cp_price; ?></td>
|
|
<td class="td_datetime"><?php echo substr($row['cp_start'], 2, 8); ?> ~ <?php echo substr($row['cp_end'], 2, 8); ?></td>
|
|
</tr>
|
|
<?php
|
|
}
|
|
|
|
if(!$cp_count)
|
|
echo '<tr><td colspan="4" class="empty_table">사용할 수 있는 쿠폰이 없습니다.</td></tr>';
|
|
?>
|
|
</tbody>
|
|
</table>
|
|
|
|
<div class="btn_win"><a href="javascript:;" onclick="window.close();">창닫기</a></div>
|
|
</div>
|
|
|
|
<?php
|
|
include_once(G5_PATH.'/tail.sub.php');
|
|
?>
|