#268 주문서에 과세 비과세 금액 저장

This commit is contained in:
chicpro
2013-07-31 17:50:52 +09:00
parent 1768e09aaa
commit c477701690
7 changed files with 53 additions and 4 deletions

View File

@ -474,6 +474,20 @@ $pg_anchor .='<li><a href="#anc_sodr_chk">결제상세정보 확인</a></li>
<td><?php echo display_price($od['od_cancel_card']); ?></td>
</tr>
<?php } ?>
<?php if($od['od_tax_flag']) { ?>
<tr>
<th scope="row">과세공급가액</th>
<td><?php echo display_price($od['od_tax_mny']); ?></td>
</tr>
<tr>
<th scope="row">과세부가세액</th>
<td><?php echo display_price($od['od_vat_mny']); ?></td>
</tr>
<tr>
<th scope="row">비과세공급가액</th>
<td><?php echo display_price($od['od_free_mny']); ?></td>
</tr>
<?php } ?>
<tr>
<th scope="row">포인트</th>
<td><?php echo display_point($od['od_receipt_point']); ?></td>