주문금액 합계 오류 수정

This commit is contained in:
chicpro
2013-09-24 11:34:06 +09:00
parent 51b7b830f9
commit d66a59b2e7

View File

@ -219,7 +219,7 @@ if ($search) // 검색렬일 때만 처음 버튼을 보여줌
</tr>
<?php
$tot_itemcount += $row['od_cart_count'];
$tot_orderprice += $row['od_cart_price'];
$tot_orderprice += ($row['od_cart_price'] + $row['od_send_cost'] + $row['od_send_cost2']);
$tot_ordercancel += $row['od_cancel_price'];
$tot_receiptprice += $row['od_receipt_price'];
$tot_couponprice += $row['couponprice'];