amount 필드명 price 로 변경

This commit is contained in:
chicpro
2013-09-11 15:52:33 +09:00
parent a61215ad14
commit 97cf079a0f
60 changed files with 837 additions and 805 deletions

View File

@ -32,9 +32,9 @@ $pg_anchor = '<ul class="anchor">
<tbody>
<?php
// 미수금이 없고 운송장번호가 없는 자료를 구함
$sql = " select *, "._MISU_QUERY_."
$sql = " select *
from {$g4['shop_order_table']}
having misu <= 0 and od_invoice = ''
where od_receipt_price > 0 and od_misu <= 0 and od_invoice = ''
order by od_id desc
limit $max_limit ";
$result = sql_query($sql);
@ -59,7 +59,7 @@ $pg_anchor = '<ul class="anchor">
<tr>
<td class="td_odrnum2"><?php echo $row['od_id']; ?></td>
<td class="td_name"><?php echo $name; ?></td>
<td class="td_bignum"><?php echo display_price($row['od_receipt_amount']); ?></td>
<td class="td_bignum"><?php echo display_price($row['od_receipt_price']); ?></td>
<td class="td_payby"><?php echo $settle_method; ?></td>
<td class="td_smallmng"><a href="./orderform.php?od_id=<?php echo $row['od_id']; ?>">수정</a></td>
</tr>
@ -92,9 +92,9 @@ $pg_anchor = '<ul class="anchor">
<tbody>
<?php
// 미수금이 있고 송장번호가 없는 자료를 구함
$sql = " select *, "._MISU_QUERY_."
$sql = " select *
from {$g4['shop_order_table']}
having misu > 0
where od_misu > 0
order by od_id desc
limit $max_limit ";
$result = sql_query($sql);