쇼핑몰관리자: #204 주문상세 상품리스트 마크업 및 스타일 완료
This commit is contained in:
@ -136,30 +136,32 @@ $pg_anchor = '<ul class="anchor">
|
|||||||
<label for="sit_select_all" class="sound_only">현재 상품 목록 전체선택</label>
|
<label for="sit_select_all" class="sound_only">현재 상품 목록 전체선택</label>
|
||||||
<input type="checkbox" id="sit_select_all">
|
<input type="checkbox" id="sit_select_all">
|
||||||
|
|
||||||
<ul>
|
<ul id="sodr_ul">
|
||||||
<?php
|
<?php
|
||||||
for($i=0; $row=sql_fetch_array($result); $i++) {
|
for($i=0; $row=sql_fetch_array($result); $i++) {
|
||||||
// 상품이미지
|
// 상품이미지
|
||||||
$image = get_it_image($row['it_id'], 50, 50);
|
$image = get_it_image($row['it_id'], 50, 50);
|
||||||
?>
|
?>
|
||||||
<li>
|
<li>
|
||||||
<span><a href="./itemform.php?w=u&it_id=<?php echo $row['it_id']; ?>"><?php echo $image; ?></a></span>
|
<p>
|
||||||
<span>
|
<a href="./itemform.php?w=u&it_id=<?php echo $row['it_id']; ?>"><?php echo $image; ?> <?php echo stripslashes($row['it_name']); ?></a>
|
||||||
<label for="sit_sel_<?php echo $i; ?>" class="sound_only"><?php echo $row['it_name']; ?> 옵션 전체선택</label>
|
</p>
|
||||||
<input type="checkbox" id="sit_sel_<?php echo $i; ?>" name="it_sel[]">
|
|
||||||
<a href="./itemform.php?w=u&it_id=<?php echo $row['it_id']; ?>"><?php echo stripslashes($row['it_name']); ?></a>
|
|
||||||
</span>
|
|
||||||
<table>
|
<table>
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
|
<th scope="col">
|
||||||
|
<label for="sit_sel_<?php echo $i; ?>" class="sound_only"><?php echo $row['it_name']; ?> 옵션 전체선택</label>
|
||||||
|
<input type="checkbox" id="sit_sel_<?php echo $i; ?>" name="it_sel[]">
|
||||||
|
</th>
|
||||||
<th scope="col">옵션항목</th>
|
<th scope="col">옵션항목</th>
|
||||||
<th scope="col">상태</th>
|
<th scope="col">상태</th>
|
||||||
<th scope="col">수량</th>
|
<th scope="col">수량</th>
|
||||||
<th scope="col">판매가</th>
|
<th scope="col">판매가</th>
|
||||||
<th scope="col">소계</th>
|
<th scope="col">소계</th>
|
||||||
<th scope="col">포인트</th>
|
<th scope="col">포인트</th>
|
||||||
<th scope="col">포인트<br>반영</th>
|
<th scope="col">포인트반영</th>
|
||||||
<th scope="col">재고<br>반영</th>
|
<th scope="col">재고반영</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
@ -186,25 +188,26 @@ $pg_anchor = '<ul class="anchor">
|
|||||||
$t_ct_amount['취소'] += $ct_amount['소계'];
|
$t_ct_amount['취소'] += $ct_amount['소계'];
|
||||||
?>
|
?>
|
||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td class="td_chk">
|
||||||
|
<label for="ct_opt_chk_<?php echo $i.$k; ?>" class="sound_only"><?php echo $opt['ct_option']; ?></label>
|
||||||
<input type="hidden" name="ct_id[]" value="<?php echo $opt['ct_id']; ?>">
|
<input type="hidden" name="ct_id[]" value="<?php echo $opt['ct_id']; ?>">
|
||||||
<label for="ct_opt_chk_<?php echo $i.$k; ?>" class="sound_only"><?php echo $opt['ct_option']; ?> 체크</label>
|
|
||||||
<input type="checkbox" name="ct_chk[]" id="ct_opt_chk_<?php echo $i.$k; ?>" value="1">
|
<input type="checkbox" name="ct_chk[]" id="ct_opt_chk_<?php echo $i.$k; ?>" value="1">
|
||||||
<?php echo $opt['ct_option']; ?>
|
|
||||||
</td>
|
</td>
|
||||||
<td class="td_small_stats"><?php echo $opt['ct_status']; ?></td>
|
<td><?php echo $opt['ct_option']; ?></td>
|
||||||
|
<td class="td_smallmng"><?php echo $opt['ct_status']; ?></td>
|
||||||
<td class="td_num"><?php echo $opt['ct_qty']; ?></td>
|
<td class="td_num"><?php echo $opt['ct_qty']; ?></td>
|
||||||
<td class="td_num"><?php echo number_format($opt_price); ?></td>
|
<td class="td_bignum"><?php echo number_format($opt_price); ?></td>
|
||||||
<td class="td_num"><?php echo number_format($ct_amount['소계']); ?></td>
|
<td class="td_num"><?php echo number_format($ct_amount['소계']); ?></td>
|
||||||
<td class="td_num"><?php echo number_format($ct_point['소계']); ?></td>
|
<td class="td_bignum"><?php echo number_format($ct_point['소계']); ?></td>
|
||||||
<td class="td_small_stats"><?php echo get_yn($opt['ct_point_use']); ?></td>
|
<td class="td_smallmng"><?php echo get_yn($opt['ct_point_use']); ?></td>
|
||||||
<td class="td_small_stats"><?php echo get_yn($opt['ct_stock_use']); ?></td>
|
<td class="td_smallmng"<?php echo get_yn($opt['ct_stock_use']); ?></td>
|
||||||
</tr>
|
</tr>
|
||||||
<?php
|
<?php
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
</li>
|
</li>
|
||||||
<?
|
<?
|
||||||
$t_ct_amount['합계'] += $ct_amount['소계'];
|
$t_ct_amount['합계'] += $ct_amount['소계'];
|
||||||
|
|||||||
@ -138,6 +138,13 @@ strong.sodr_nonpay {display:block;padding:5px 0;text-align:right}
|
|||||||
#anc_sodr_addressee #od_b_addr1,
|
#anc_sodr_addressee #od_b_addr1,
|
||||||
#anc_sodr_addressee #od_b_addr2 {margin:5px 0 0}
|
#anc_sodr_addressee #od_b_addr2 {margin:5px 0 0}
|
||||||
|
|
||||||
|
#sodr_ul {margin:0;padding:0;list-style:none}
|
||||||
|
#sodr_ul li {background:#f5f6fa;color:#000}
|
||||||
|
#sodr_ul th {border-top:0;text-align:center}
|
||||||
|
#sodr_ul td {background:#fff;color:#000}
|
||||||
|
#sodr_ul p {margin:5px 0 0;padding:14px;background:#565e60;color:#fff}
|
||||||
|
#sodr_ul p a {color:#fff;font-weight:bold;text-decoration:none}
|
||||||
|
|
||||||
/* 주문개별내역 */
|
/* 주문개별내역 */
|
||||||
#sodr_status {text-align:center}
|
#sodr_status {text-align:center}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user