사용자 주문상세에 취소, 환불 금액 분리해서 표시
This commit is contained in:
@ -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']) {
|
||||
// 미수금이 없고 현금일 경우에만 현금영수증을 발급 할 수 있습니다.
|
||||
|
||||
@ -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']) {
|
||||
// 미수금이 없고 현금일 경우에만 현금영수증을 발급 할 수 있습니다.
|
||||
|
||||
Reference in New Issue
Block a user