주문결제 내역에 배송비 출력 추가
This commit is contained in:
@ -260,6 +260,9 @@ $pg_anchor = '<ul class="anchor">
|
|||||||
|
|
||||||
if ($od['od_receipt_point'] > 0)
|
if ($od['od_receipt_point'] > 0)
|
||||||
$s_receipt_way .= "+포인트";
|
$s_receipt_way .= "+포인트";
|
||||||
|
|
||||||
|
// 배송비
|
||||||
|
$send_cost = get_sendcost($od['od_id']);
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<strong class="sodr_nonpay">미수금 <?php echo display_price($od['od_misu']); ?></strong>
|
<strong class="sodr_nonpay">미수금 <?php echo display_price($od['od_misu']); ?></strong>
|
||||||
@ -270,6 +273,7 @@ $pg_anchor = '<ul class="anchor">
|
|||||||
<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>
|
<th scope="col">포인트결제</th>
|
||||||
<th scope="col">총결제액</th>
|
<th scope="col">총결제액</th>
|
||||||
<th scope="col">쿠폰</th>
|
<th scope="col">쿠폰</th>
|
||||||
@ -281,6 +285,7 @@ $pg_anchor = '<ul class="anchor">
|
|||||||
<td class="td_odrnum2"><?php echo $od['od_id']; ?></td>
|
<td class="td_odrnum2"><?php echo $od['od_id']; ?></td>
|
||||||
<td class="td_payby"><?php echo $s_receipt_way; ?></td>
|
<td class="td_payby"><?php echo $s_receipt_way; ?></td>
|
||||||
<td class="td_bignum"><?php echo display_price($amount['주문']); ?></td>
|
<td class="td_bignum"><?php echo display_price($amount['주문']); ?></td>
|
||||||
|
<td class="td_bignum"><?php echo display_price($send_cost); ?></td>
|
||||||
<td class="td_bignum"><?php echo display_point($od['od_receipt_point']); ?></td>
|
<td class="td_bignum"><?php echo display_point($od['od_receipt_point']); ?></td>
|
||||||
<td class="td_bignum"><?php echo number_format($amount['입금']); ?>원</td>
|
<td class="td_bignum"><?php echo number_format($amount['입금']); ?>원</td>
|
||||||
<td class="td_bignum"><?php echo display_price($amount['쿠폰']); ?></td>
|
<td class="td_bignum"><?php echo display_price($amount['쿠폰']); ?></td>
|
||||||
|
|||||||
Reference in New Issue
Block a user