<table style="<?php echo $cont_st; ?>">
<caption style="<?php echo $caption_st; ?>">결제정보</caption>
<colgroup>
<col style="width:130px">
<col>
</colgroup>
<tbody>
<?php if ($od_receipt_point > 0) { ?>
<tr>
<th scope="row" style="<?php echo $th_st; ?>">포인트 입금액</th>
<td style="<?php echo $td_st; ?>"><?php echo display_point($od_receipt_point); ?></td>
</tr>
<?php } ?>
<?php if ($od_receipt_price > 0 && $od_settle_case == '신용카드') { ?>
<tr>
<th scope="row" style="<?php echo $th_st; ?>">신용카드 입금액</th>
<td style="<?php echo $td_st; ?>"><?php echo display_price($od_receipt_price); ?></td>
</tr>
<?php } ?>
<?php if ($od_receipt_price > 0 && $od_settle_case == '계좌이체') { ?>
<tr>
<th scope="row" style="<?php echo $th_st; ?>"><?php echo $od_settle_case; ?> 입금액</th>
<td style="<?php echo $td_st; ?>"><?php echo display_price($od_receipt_price); ?></td>
</tr>
<tr>
<th scope="row" style="<?php echo $th_st; ?>">계좌번호</th>
<td style="<?php echo $td_st; ?>"><?php echo $od_bank_account; ?></td>
</tr>
<tr>
<th scope="row" style="<?php echo $th_st; ?>">입금자 이름</th>
<td style="<?php echo $td_st; ?>"><?php echo $od_deposit_name; ?></td>
</tr>
<?php } ?>
<?php if (!$od_receipt_point && !$od_receipt_price) { ?>
<tr>
<td colspan="2" style="<?php echo $empty_st; ?>">결제정보가 없습니다.</td>
</tr>
<?php } ?>
</tbody>
</table>