상품관리 리스트에서 포인트 수정 기능 제거

This commit is contained in:
chicpro
2013-11-20 16:14:13 +09:00
parent 9dcc2132fe
commit a4fa0cba4b
2 changed files with 1 additions and 2 deletions

View File

@ -200,7 +200,7 @@ $listall = '<a href="'.$_SERVER['PHP_SELF'].'" class="ov_listall">전체목록</
</tr>
<tr<?php echo ' '.$tr_bg; ?>>
<td headers="" class="td_input"><input type="text" name="it_mobile_name[<?php echo $i; ?>]" value="<?php echo htmlspecialchars2(cut_str($row['it_mobile_name'],250, "")); ?>" class="frm_input" size="30"></td>
<td headers="th_pt" class="td_numbig td_input"><input type="text" name="it_point[<?php echo $i; ?>]" value="<?php echo $row['it_point']; ?>" class="frm_input sit_pt" size="7"></td>
<td headers="th_pt" class="td_numbig td_input"><?php echo number_format(get_item_point($row)); ?></td>
<td headers="th_qty" class="td_numbig td_input"><input type="text" name="it_stock_qty[<?php echo $i; ?>]" value="<?php echo $row['it_stock_qty']; ?>" class="frm_input sit_qty" size="7"></td>
</tr>
<?php

View File

@ -23,7 +23,6 @@ if ($_POST['act_button'] == "선택수정") {
it_mobile_name = '{$_POST['it_mobile_name'][$k]}',
it_cust_price = '{$_POST['it_cust_price'][$k]}',
it_price = '{$_POST['it_price'][$k]}',
it_point = '{$_POST['it_point'][$k]}',
it_stock_qty = '{$_POST['it_stock_qty'][$k]}',
it_use = '{$_POST['it_use'][$k]}',
it_order = '{$_POST['it_order'][$k]}',