#252 관리자 주문취소 기능 추가

This commit is contained in:
chicpro
2013-07-15 11:27:49 +09:00
parent be3a564978
commit 019a311ae3
7 changed files with 64 additions and 36 deletions

View File

@ -65,6 +65,14 @@ $result = sql_query($sql);
}
$image = get_it_image($row['it_id'], 50, 50);
if($row['io_type']) {
$price = $row['io_price'];
$tot_price = $row['io_price'] * $row['ct_qty'];
} else {
$price = $row['ct_price'] + $row['io_price'];
$tot_price = ($row['ct_price'] + $row['io_price']) * $row['ct_qty'];
}
?>
<tr>
<td><a href="./itemform.php?w=u&amp;it_id=<?php echo $row['it_id']; ?>"><?php echo $image; ?> <?php echo stripslashes($row['it_name']); ?></a></td>