주문메일에서 옵션의 추가금액이 표시되도록 수정

This commit is contained in:
chicpro
2014-01-23 14:48:12 +09:00
parent 66265bfc69
commit fb68abcfef
5 changed files with 22 additions and 16 deletions

View File

@ -40,14 +40,14 @@ $ft_a_st = 'display:block;padding:30px 0;background:#484848;color:#fff;text-alig
<th scope="row" style="<?php echo $th_st; ?>">상품명</th>
<td style="<?php echo $td_st; ?>"><a href="<?php echo G5_SHOP_URL.'/item.php?it_id='.$list[$i]['it_id']; ?>" target="_blank" style="text-decoration:none"><span style="display:inline-block;vertical-align:middle"><?php echo $list[$i]['it_simg']; ?></span> <?php echo $list[$i]['it_name']; ?></a></td>
</tr>
<tr>
<th scope="row" style="<?php echo $th_st; ?>">선택옵션 </th>
<td style="<?php echo $td_st; ?>"><?php echo $list[$i]['it_opt']; ?></td>
</tr>
<tr>
<th scope="row" style="<?php echo $th_st; ?>">판매가격</th>
<td style="<?php echo $td_st; ?>"><?php echo display_price($list[$i]['ct_price']); ?></td>
</tr>
<tr>
<th scope="row" style="<?php echo $th_st; ?>">선택옵션 </th>
<td style="<?php echo $td_st; ?>"><?php echo $list[$i]['it_opt']; ?></td>
</tr>
<tr>
<th scope="row" style="<?php echo $th_st; ?>">소계</th>
<td style="<?php echo $td_st; ?>"><?php echo display_price($list[$i]['stotal_price']); ?></td>