amount 필드명 price 로 변경
This commit is contained in:
@ -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);
|
||||
|
||||
Reference in New Issue
Block a user