#211 주문시 추가배송비 처리 코드 추가

This commit is contained in:
chicpro
2013-06-17 15:50:06 +09:00
parent 97d9e2e097
commit 04ec45c0c5
18 changed files with 231 additions and 29 deletions

View File

@ -65,6 +65,13 @@ $ft_a_st = 'display:block;padding:30px 0;background:#484848;color:#fff;text-alig
</tr>
<?php } ?>
<?php if ($od_send_cost2 > 0) { // 추가배송비가 있다면 ?>
<tr>
<th scope="row" style="<?php echo $th_st; ?>">추가배송비</th>
<td style="<?php echo $td_st; ?>"><?php echo display_price($od_send_cost2); ?></td>
</tr>
<?php } ?>
<tr>
<th scope="row" style="<?php echo $th_st; ?>">주문합계</th>
<td style="<?php echo $td_st; ?>"><?php echo display_price($ttotal_amount); ?></td>