사용자 주문상품 리스트에 배송비 지불방법 출력 추가

This commit is contained in:
chicpro
2014-02-11 11:04:04 +09:00
parent ac1369815c
commit 5d0ddde6d6
6 changed files with 46 additions and 7 deletions

View File

@ -178,6 +178,7 @@ function get_intall_file()
<th scope="col">쿠폰</th>
<th scope="col">소계</th>
<th scope="col">포인트</th>
<th scope="col">배송비</th>
</tr>
</thead>
<tbody>
@ -302,6 +303,11 @@ function get_intall_file()
$it_cp_count++;
}
}
// 배송비
$ct_send_cost = '선불';
if($row['ct_send_cost'])
$ct_send_cost = '착불';
?>
<tr>
@ -322,6 +328,7 @@ function get_intall_file()
<td class="td_mngsmall"><?php echo $cp_button; ?></td>
<td class="td_numbig"><span class="total_price"><?php echo number_format($sell_price); ?></span></td>
<td class="td_numbig"><?php echo number_format($point); ?></td>
<td><?php echo $ct_send_cost; ?></td>
</tr>
<?php