사용자 주문상세에 취소, 환불 금액 분리해서 표시

This commit is contained in:
chicpro
2013-11-25 11:24:17 +09:00
parent 6d26a75135
commit ece7bd5274
2 changed files with 22 additions and 2 deletions

View File

@ -322,12 +322,22 @@ include_once(G5_MSHOP_PATH.'/_head.php');
{
?>
<tr>
<th scope="row">취소/환불 금액</th>
<th scope="row">취소 금액</th>
<td><?php echo display_price($od['od_cancel_price']); ?></td>
</tr>
<?php
}
if ($od['od_refund_price'] > 0)
{
?>
<tr>
<th scope="row">환불 금액</th>
<td><?php echo display_price($od['od_refund_price']); ?></td>
</tr>
<?php
}
// 현금영수증 발급을 사용하는 경우에만
if ($default['de_taxsave_use']) {
// 미수금이 없고 현금일 경우에만 현금영수증을 발급 할 수 있습니다.

View File

@ -334,12 +334,22 @@ if(openwin != null) {
{
?>
<tr>
<th scope="row">취소/환불 금액</th>
<th scope="row">취소 금액</th>
<td><?php echo display_price($od['od_cancel_price']); ?></td>
</tr>
<?php
}
if ($od['od_refund_price'] > 0)
{
?>
<tr>
<th scope="row">환불 금액</th>
<td><?php echo display_price($od['od_refund_price']); ?></td>
</tr>
<?php
}
// 현금영수증 발급을 사용하는 경우에만
if ($default['de_taxsave_use']) {
// 미수금이 없고 현금일 경우에만 현금영수증을 발급 할 수 있습니다.