쇼핑몰관리자: #67 쇼핑몰관리 배송일괄처리 질의 커밋

This commit is contained in:
whitedot
2013-04-12 15:25:51 +09:00
parent b5ee45f90c
commit aea8f7f212
2 changed files with 20 additions and 16 deletions

View File

@ -111,7 +111,7 @@ if ($search) // 검색렬일 때만 처음 버튼을 보여줌
<input type="hidden" name="sort1" value="<?=$sort1 ?>"> <input type="hidden" name="sort1" value="<?=$sort1 ?>">
<input type="hidden" name="sort2" value="<?=$sort2 ?>"> <input type="hidden" name="sort2" value="<?=$sort2 ?>">
<table> <table id="sdeli_proc">
<thead> <thead>
<tr> <tr>
<th scope="col"><a href="<?=title_sort("od_id",1) . "&amp;$qstr1"; ?>">주문번호<span class="sound_only"> 순 정렬</span></a></th> <th scope="col"><a href="<?=title_sort("od_id",1) . "&amp;$qstr1"; ?>">주문번호<span class="sound_only"> 순 정렬</span></a></th>
@ -157,7 +157,7 @@ if ($search) // 검색렬일 때만 처음 버튼을 보여줌
<input type="hidden" name="uq_id[<?=$i?>]" value="<?=$row['uq_id']?>"> <input type="hidden" name="uq_id[<?=$i?>]" value="<?=$row['uq_id']?>">
<a href="./orderform.php?od_id=<?=$row['od_id']?>"><?=$row['od_id']?></a> <a href="./orderform.php?od_id=<?=$row['od_id']?>"><?=$row['od_id']?></a>
</td> </td>
<td><?=$row['od_name']?></td> <td class="td_name"><?=$row['od_name']?></td>
<td><?=display_amount($row['orderamount'])?></td> <td><?=display_amount($row['orderamount'])?></td>
<td><?=display_amount($row['receiptamount'])?></td> <td><?=display_amount($row['receiptamount'])?></td>
<td><?=display_amount($row['misu'])?></td> <td><?=display_amount($row['misu'])?></td>
@ -189,24 +189,24 @@ if ($search) // 검색렬일 때만 처음 버튼을 보여줌
?> ?>
</table> </table>
<table width=100%> <fieldset id="sdeli_proc_fs">
<tr bgcolor=#ffffff> <legend>배송 처리 후 안내 발송 선택</legend>
<td width=50%> <label for="od_send_mail">메일발송</label>
<table> <input type="checkbox" name="od_send_mail" value="1" id="od_send_mail" checked>
<tr> <label for="od_send_sms">SMS</label>
<td><input type=checkbox name='od_send_mail' value='1' checked> 메일발송&nbsp;</td> <input type="checkbox" name="send_sms" value="1" id="od_send_sms" checked>
<td><input type=checkbox name='send_sms' value='1' checked> SMS&nbsp;</td> </fieldset>
<td><input type=submit class=btn1 accesskey='s' value='일괄수정'></td>
</tr> <div class="btn_confirm">
</table> <input type="submit" value="일괄수정" class="btn_submit" accesskey='s'>
</td> </div>
<td width=50% align=right><?=get_paging($config['cf_write_pages'], $page, $total_page, "{$_SERVER['PHP_SELF']}?$qstr&page=");?></td>
</tr>
</table>
</form> </form>
</section> </section>
<?=get_paging($config['cf_write_pages'], $page, $total_page, "{$_SERVER['PHP_SELF']}?$qstr&page=");?>
<? <?
include_once (G4_ADMIN_PATH.'/admin.tail.php'); include_once (G4_ADMIN_PATH.'/admin.tail.php');
?> ?>

View File

@ -337,6 +337,10 @@ td {padding:8px 5px 6px;border-top:1px solid #e9e9e9;border-bottom:1px solid #e9
.td_scate {text-align:right} .td_scate {text-align:right}
.td_scate_admin {text-align:center} .td_scate_admin {text-align:center}
/* 배송일괄처리 */
#sdeli_proc {text-align:center}
#sdeli_proc_fs {padding:20px 0;border-bottom:1px solid #f7f7f7;text-align:center}
/* 팝업레이어 관리 */ /* 팝업레이어 관리 */
#spop_list {text-align:center} #spop_list {text-align:center}