주문상품 리스트에 쿠폰 금액 표시하도록 수정

This commit is contained in:
chicpro
2013-09-12 17:56:54 +09:00
parent 6509f0ccf2
commit 7619ae82f6

View File

@ -152,6 +152,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>
@ -191,7 +192,8 @@ $pg_anchor = '<ul class="anchor">
</td>
<td class="td_bignum"><?php echo number_format($opt_price); ?></td>
<td class="td_num"><?php echo number_format($ct_price['소계']); ?></td>
<td class="td_bignum"><?php echo number_format($ct_point['소계']); ?></td>
<td class="td_num"><?php echo number_format($opt['cp_price']); ?></td>
<td class="td_num"><?php echo number_format($ct_point['소계']); ?></td>
<td class="td_sendcost_by"><?php echo $opt['ct_send_cost'] ? '착불' : '선불'; ?></td>
<td class="td_smallmng"><?php echo get_yn($opt['ct_point_use']); ?></td>
<td class="td_smallmng"><?php echo get_yn($opt['ct_stock_use']); ?></td>