127 lines
3.4 KiB
PHP
127 lines
3.4 KiB
PHP
<?php
|
|
include_once('./_common.php');
|
|
include_once('./_head.php');
|
|
|
|
$sql_common = " from {$g5['point_table']} where mb_id = '".escape_trim($member['mb_id'])."' ";
|
|
$sql_order = " order by po_id desc ";
|
|
|
|
$sql = " select count(*) as cnt {$sql_common} ";
|
|
$total = sql_fetch($sql);
|
|
$total = $total['cnt'];
|
|
|
|
$rows = $config['cf_page_rows'];
|
|
$total_page = ceil($total / $rows); // 전체 페이지 계산
|
|
if ($page < 1) { $page = 1; } // 페이지가 없으면 첫 페이지 (1 페이지)
|
|
$from_record = ($page - 1) * $rows; // 시작 열을 구함
|
|
|
|
$sql = " select *
|
|
{$sql_common}
|
|
{$sql_order}
|
|
limit {$from_record}, {$rows} ";
|
|
$result = sql_query($sql);
|
|
|
|
?>
|
|
|
|
|
|
<form action="./money_update.php" method="post" name="frmItemSend">
|
|
<input type="hidden" name="se_mb_id" value="<?=$member['mb_id']?>" />
|
|
<table class="theme-form">
|
|
<colgroup>
|
|
<col style="width: 100px;" />
|
|
<col />
|
|
</colgroup>
|
|
<tbody>
|
|
<tr>
|
|
<th>받는사람</th>
|
|
<td>
|
|
<input type="hidden" name="ch_id" id="ch_id" value="" />
|
|
<input type="text" name="ch_name" value="" id="ch_name" onkeyup="get_ajax_character(this, 'character_list', 'ch_id');" />
|
|
<div id="character_list" class="ajax-list-box theme-box"><div class="list"></div></div>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th>전달<?=$config['cf_money']?></th>
|
|
<td>
|
|
<input type="text" name="po_point" id="po_point" size="10"/> <?=$config['cf_money_pice']?>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
<div class="txt-center" style="padding: 20px 0;">
|
|
<button type="submit" class="ui-btn point">전송</button>
|
|
</div>
|
|
</form>
|
|
|
|
<hr class="padding" />
|
|
|
|
<table class="theme-list">
|
|
<colgroup>
|
|
<col />
|
|
<col style="width: 80px;" />
|
|
<col style="width: 80px;" />
|
|
</colgroup>
|
|
<thead>
|
|
<tr>
|
|
<th scope="col">내용</th>
|
|
<th scope="col">획득</th>
|
|
<th scope="col">사용</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php
|
|
$sum_point1 = $sum_point2 = $sum_point3 = 0;
|
|
for ($i=0; $row=sql_fetch_array($result); $i++) {
|
|
$point1 = $point2 = 0;
|
|
if ($row['po_point'] > 0) {
|
|
$point1 = number_format($row['po_point']).$config['cf_money_pice'];
|
|
$sum_point1 += $row['po_point'];
|
|
} else {
|
|
$point2 = number_format($row['po_point'] * -1).$config['cf_money_pice'];
|
|
$sum_point2 += $row['po_point'];
|
|
}
|
|
|
|
$po_content = $row['po_content'];
|
|
|
|
$expr = '';
|
|
if($row['po_expired'] == 1)
|
|
$expr = ' txt_expired';
|
|
?>
|
|
<tr>
|
|
<td>[<?php echo $row['po_datetime']; ?>] <?php echo $po_content; ?></td>
|
|
<td class="txt-right" ><?php echo $point1; ?></td>
|
|
<td class="txt-right" ><?php echo $point2; ?></td>
|
|
</tr>
|
|
<?php
|
|
}
|
|
|
|
if ($i == 0)
|
|
echo '<tr><td colspan="3" class="no-data">자료가 없습니다.</td></tr>';
|
|
else {
|
|
if ($sum_point1 > 0)
|
|
$sum_point1 = number_format($sum_point1);
|
|
$sum_point2 = number_format($sum_point2 * -1);
|
|
}
|
|
?>
|
|
|
|
<tr>
|
|
<th scope="row">소계</th>
|
|
<td class="txt-right"><?php echo $sum_point1; ?><?=$config['cf_money_pice']?></td>
|
|
<td class="txt-right"><?php echo $sum_point2; ?><?=$config['cf_money_pice']?></td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">보유 금액</th>
|
|
<td colspan="2" class="txt-right"><?php echo number_format($member['mb_point']); ?><?=$config['cf_money_pice']?></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
<?php echo get_paging(G5_IS_MOBILE ? $config['cf_mobile_pages'] : $config['cf_write_pages'], $page, $total_page, $_SERVER['PHP_SELF'].'?'.$qstr.'&page='); ?>
|
|
|
|
<hr class="padding" />
|
|
|
|
|
|
|
|
<?php
|
|
include_once('./_tail.php');
|
|
?>
|