#186 가격 필드명 price 로 변경

This commit is contained in:
chicpro
2013-05-15 18:50:24 +09:00
parent e887152412
commit 23259ab372
34 changed files with 148 additions and 205 deletions

View File

@ -79,7 +79,7 @@ if(openwin != null) {
}
else
{
$wanbul = display_amount($receipt_amount);
$wanbul = display_price($receipt_amount);
}
// 120615 : 취소된 값을 두번 빼주는 결과가 되어 코드 수정 (군포돼지님)
@ -119,7 +119,7 @@ if(openwin != null) {
</tr>
<tr>
<th scope="row">결제금액</th>
<td><?php echo display_amount($cd['cd_amount']); ?></td>
<td><?php echo display_price($cd['cd_amount']); ?></td>
</tr>
<tr>
<th scope="row">승인일시</th>
@ -149,7 +149,7 @@ if(openwin != null) {
</tr>
<tr>
<th scope="row">결제금액</th>
<td><?php echo display_amount($cd['cd_amount']); ?></td>
<td><?php echo display_price($cd['cd_amount']); ?></td>
</tr>
<tr>
<th scope="row">승인일시</th>
@ -181,7 +181,7 @@ if(openwin != null) {
?>
<tr>
<th scope="row">입금액</th>
<td><?php echo display_amount($od['od_receipt_bank']); ?></td>
<td><?php echo display_price($od['od_receipt_bank']); ?></td>
</tr>
<tr>
<th scope="row">입금확인일시</th>
@ -238,7 +238,7 @@ if(openwin != null) {
?>
<tr>
<th scope="row">승인취소 금액</th>
<td><?php echo display_amount($od['od_cancel_card']); ?></td>
<td><?php echo display_price($od['od_cancel_card']); ?></td>
</tr>
<?php
}
@ -248,7 +248,7 @@ if(openwin != null) {
?>
<tr>
<th scope="row">환불 금액</th>
<td><?php echo display_amount($od['od_refund_amount']); ?></td>
<td><?php echo display_price($od['od_refund_amount']); ?></td>
</tr>
<?php
}
@ -421,19 +421,19 @@ if(openwin != null) {
<ul>
<li>
총 구매액
<strong><?php echo display_amount($tot_amount); ?></strong>
<strong><?php echo display_price($tot_amount); ?></strong>
</li>
<?php
if ($od['od_dc_amount'] > 0) {
echo '<li>';
echo '할인액'.PHP_EOL;
echo '<strong>'.display_amount($od['od_dc_amount']).'</strong>';
echo '<strong>'.display_price($od['od_dc_amount']).'</strong>';
echo '</li>';
}
if ($misu_amount > 0) {
echo '<li>';
echo '미결제액'.PHP_EOL;
echo '<strong>'.display_amount($misu_amount).'</strong>';
echo '<strong>'.display_price($misu_amount).'</strong>';
echo '</li>';
}
?>