order 테이블에 주문금액 등 기록되도록 수정
This commit is contained in:
@ -9,49 +9,20 @@ $date = preg_replace("/([0-9]{4})([0-9]{2})([0-9]{2})/", "\\1-\\2-\\3", $date);
|
||||
$g4['title'] = "$date 일 매출현황";
|
||||
include_once (G4_ADMIN_PATH.'/admin.head.php');
|
||||
|
||||
unset($tot);
|
||||
$lines = $lines1 = array();
|
||||
$sql = " select od_id,
|
||||
mb_id,
|
||||
od_name,
|
||||
od_send_cost,
|
||||
od_settle_case,
|
||||
od_cart_amount,
|
||||
od_receipt_amount,
|
||||
od_receipt_point,
|
||||
od_dc_amount,
|
||||
(od_receipt_amount + od_receipt_point) as receiptamount,
|
||||
(od_refund_amount + od_cancel_card) as receiptcancel
|
||||
od_cancel_amount,
|
||||
(od_cart_amount + od_send_cost + od_send_cost2 - od_cart_coupon - od_coupon - od_send_coupon - od_receipt_amount - od_cancel_amount) as misu,
|
||||
(od_cart_coupon + od_coupon + od_send_coupon) as couponamount
|
||||
from {$g4['shop_order_table']}
|
||||
where SUBSTRING(od_time,1,10) = '$date'
|
||||
order by od_id desc ";
|
||||
$result = sql_query($sql);
|
||||
for ($i=0; $row=mysql_fetch_array($result); $i++)
|
||||
{
|
||||
$lines[$i] = $row;
|
||||
|
||||
// 장바구니 상태별 금액
|
||||
$sql1 = " select (SUM(IF(io_type = 1, io_price * ct_qty, (ct_price + io_price) * ct_qty))) as orderamount, /* 주문합계 */
|
||||
(SUM(IF(ct_status = '취소' OR ct_status = '반품' OR ct_status = '품절', IF(io_type = 1, io_price * ct_qty, (ct_price + io_price) * ct_qty), 0))) as ordercancel /* 주문취소 */
|
||||
from {$g4['shop_cart_table']}
|
||||
where od_id = '{$row['od_id']}' ";
|
||||
$row1 = sql_fetch($sql1);
|
||||
|
||||
$row1['orderamount'] += $row['od_send_cost'];
|
||||
$misu = $row1['orderamount'] - $row1['ordercancel'] - $row['od_dc_amount'] - $row['receiptamount'] + $row['receiptcancel'];
|
||||
$lines1[$i] = $row1;
|
||||
|
||||
$tot['orderamount'] += $row1['orderamount'];
|
||||
$tot['ordercancel'] += $row1['ordercancel'];
|
||||
$tot['dc'] += $row['od_dc_amount'];
|
||||
if($row['od_settle_case'] == '무통장' || $row['od_settle_case'] == '가상계좌' || $row['od_settle_case'] == '계좌이체')
|
||||
$tot['receipt_bank'] += $row['od_receipt_amount'];
|
||||
if($row['od_settle_case'] == '신용카드')
|
||||
$tot['receipt_card'] += $row['od_receipt_amount'];
|
||||
$tot['receipt_point'] += $row['od_receipt_point'];
|
||||
$tot['receiptamount'] += $row['receiptamount'];
|
||||
$tot['receiptcancel'] += $row['receiptcancel'];
|
||||
$tot['misu'] += $misu;
|
||||
}
|
||||
?>
|
||||
|
||||
<section class="cbox">
|
||||
@ -63,58 +34,55 @@ for ($i=0; $row=mysql_fetch_array($result); $i++)
|
||||
<th scope="col">주문번호</th>
|
||||
<th scope="col">주문자</th>
|
||||
<th scope="col">주문합계</th>
|
||||
<th scope="col">취소+DC</th>
|
||||
<th scope="col">무통장</th>
|
||||
<th scope="col">쿠폰</th>
|
||||
<th scope="col">계좌입금</th>
|
||||
<th scope="col">카드</th>
|
||||
<th scope="col">포인트</th>
|
||||
<th scope="col">입금취소</th>
|
||||
<th scope="col">주문취소</th>
|
||||
<th scope="col">미수금</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tfoot>
|
||||
<tr>
|
||||
<td colspan="2">합 계</td>
|
||||
<td><?php echo number_format($tot['orderamount']); ?></td>
|
||||
<td><?php echo number_format($tot['ordercancel'] + $tot['dc']); ?></td>
|
||||
<td><?php echo number_format($tot['receipt_bank']); ?></td>
|
||||
<td><?php echo number_format($tot['receipt_card']); ?></td>
|
||||
<td><?php echo number_format($tot['receipt_point']); ?></td>
|
||||
<td><?php echo number_format($tot['receiptcancel']); ?></td>
|
||||
<td><?php echo number_format($tot['misu']); ?></td>
|
||||
</tr>
|
||||
</tfoot>
|
||||
<tbody>
|
||||
<?php
|
||||
unset($tot);
|
||||
for ($i=0; $i<count($lines); $i++)
|
||||
for ($i=0; $row=sql_fetch_array($result); $i++)
|
||||
{
|
||||
if ($row['mb_id'] == '') { // 비회원일 경우는 주문자로 링크
|
||||
$href = '<a href="./orderlist.php?sel_field=od_name&search='.$lines[$i]['od_name'].'">';
|
||||
$href = '<a href="./orderlist.php?sel_field=od_name&search='.$row['od_name'].'">';
|
||||
} else { // 회원일 경우는 회원아이디로 링크
|
||||
$href = '<a href="./orderlist.php?sel_field=mb_id&search='.$lines[$i]['mb_id'].'">';
|
||||
$href = '<a href="./orderlist.php?sel_field=mb_id&search='.$row['mb_id'].'">';
|
||||
}
|
||||
|
||||
$misu = $lines1[$i]['orderamount'] - $lines1[$i]['ordercancel'] - $lines[$i]['od_dc_amount'] - $lines[$i]['receiptamount'] + $lines[$i]['receiptcancel'];
|
||||
$misu = $row['misu'];
|
||||
|
||||
$receipt_bank = $receipt_card = 0;
|
||||
if($lines[$i]['od_settle_case'] == '무통장' || $lines[$i]['od_settle_case'] == '가상계좌' || $lines[$i]['od_settle_case'] == '계좌이체')
|
||||
$receipt_bank = $lines[$i]['od_receipt_amount'];
|
||||
if($lines[$i]['od_settle_case'] == '신용카드')
|
||||
$receipt_card = $lines[$i]['od_receipt_amount'];
|
||||
if($row['od_settle_case'] == '무통장' || $row['od_settle_case'] == '가상계좌' || $row['od_settle_case'] == '계좌이체')
|
||||
$receipt_bank = $row['od_receipt_amount'];
|
||||
if($row['od_settle_case'] == '신용카드')
|
||||
$receipt_card = $row['od_receipt_amount'];
|
||||
|
||||
?>
|
||||
<tr>
|
||||
<td class="td_odrnum2"><a href="./orderform.php?od_id=<?php echo $lines[$i]['od_id']; ?>"><?php echo $lines[$i]['od_id']; ?></a></td>
|
||||
<td class="td_name"><?php echo $href; ?><?php echo $lines[$i]['od_name']; ?></a></td>
|
||||
<td class="td_num"><?php echo number_format($lines1[$i]['orderamount']); ?></td>
|
||||
<td class="td_num"><?php echo number_format($lines1[$i]['ordercancel'] + $lines[$i]['od_dc_amount']); ?></td>
|
||||
<td class="td_odrnum2"><a href="./orderform.php?od_id=<?php echo $row['od_id']; ?>"><?php echo $row['od_id']; ?></a></td>
|
||||
<td class="td_name"><?php echo $href; ?><?php echo $row['od_name']; ?></a></td>
|
||||
<td class="td_num"><?php echo number_format($row['od_cart_amount']); ?></td>
|
||||
<td class="td_num"><?php echo number_format($row['couponamount']); ?></td>
|
||||
<td class="td_num"><?php echo number_format($receipt_bank); ?></td>
|
||||
<td class="td_num"><?php echo number_format($receipt_card); ?></td>
|
||||
<td class="td_num"><?php echo number_format($lines[$i]['od_receipt_point']); ?></td>
|
||||
<td class="td_num"><?php echo number_format($lines[$i]['receiptcancel']); ?></td>
|
||||
<td class="td_num"><?php echo number_format($row['od_receipt_point']); ?></td>
|
||||
<td class="td_num"><?php echo number_format($row['od_cancel_amount']); ?></td>
|
||||
<td class="td_num"><?php echo number_format($misu); ?></td>
|
||||
</tr>
|
||||
<?php
|
||||
$tot['orderamount'] += $row['od_cart_amount'];
|
||||
$tot['ordercancel'] += $row1['od_cancel_amount'];
|
||||
$tot['coupon'] += $row['couponamount'] ;
|
||||
if($row['od_settle_case'] == '무통장' || $row['od_settle_case'] == '가상계좌' || $row['od_settle_case'] == '계좌이체')
|
||||
$tot['receipt_bank'] += $row['od_receipt_amount'];
|
||||
if($row['od_settle_case'] == '신용카드')
|
||||
$tot['receipt_card'] += $row['od_receipt_amount'];
|
||||
$tot['receipt_point'] += $row['od_receipt_point'];
|
||||
$tot['misu'] += $misu;
|
||||
}
|
||||
|
||||
if ($i == 0) {
|
||||
@ -122,6 +90,18 @@ for ($i=0; $row=mysql_fetch_array($result); $i++)
|
||||
}
|
||||
?>
|
||||
</tbody>
|
||||
<tfoot>
|
||||
<tr>
|
||||
<td colspan="2">합 계</td>
|
||||
<td><?php echo number_format($tot['orderamount']); ?></td>
|
||||
<td><?php echo number_format($tot['coupon']); ?></td>
|
||||
<td><?php echo number_format($tot['receipt_bank']); ?></td>
|
||||
<td><?php echo number_format($tot['receipt_card']); ?></td>
|
||||
<td><?php echo number_format($tot['receipt_point']); ?></td>
|
||||
<td><?php echo number_format($tot['ordercancel']); ?></td>
|
||||
<td><?php echo number_format($tot['misu']); ?></td>
|
||||
</tr>
|
||||
</tfoot>
|
||||
</table>
|
||||
</section>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user