공통: #366 재입고SMS 알림기능 마크업

This commit is contained in:
whitedot
2014-02-27 13:46:38 +09:00
parent 873b530d58
commit e34ca9b564
8 changed files with 52 additions and 38 deletions

View File

@ -128,16 +128,16 @@ $listall = '<a href="'.$_SERVER['PHP_SELF'].'" class="ov_listall">전체목록</
?> ?>
<tr class="<?php echo $bg; ?>"> <tr class="<?php echo $bg; ?>">
<td> <td class="td_chk">
<label for="chk_<?php echo $i; ?>" class="sound_only"><?php echo $it_name; ?> 알림요청</label> <label for="chk_<?php echo $i; ?>" class="sound_only"><?php echo $it_name; ?> 알림요청</label>
<input type="checkbox" name="chk[]" value="<?php echo $i ?>" id="chk_<?php echo $i; ?>"> <input type="checkbox" name="chk[]" value="<?php echo $i ?>" id="chk_<?php echo $i; ?>">
<input type="hidden" name="ss_id[<?php echo $i; ?>]" value="<?php echo $row['ss_id']; ?>"> <input type="hidden" name="ss_id[<?php echo $i; ?>]" value="<?php echo $row['ss_id']; ?>">
</td> </td>
<td><?php echo $it_name; ?></td> <td><?php echo $it_name; ?></td>
<td><?php echo $row['ss_hp']; ?></td> <td class="td_telbig"><?php echo $row['ss_hp']; ?></td>
<td><?php echo ($row['ss_send'] ? '전송완료' : '전송전'); ?></td> <td class="td_stat"><?php echo ($row['ss_send'] ? '전송완료' : '전송전'); ?></td>
<td><?php echo (is_null_time($row['ss_send_time']) ? '' : $row['ss_send_time']); ?></td> <td class="td_datetime"><?php echo (is_null_time($row['ss_send_time']) ? '' : $row['ss_send_time']); ?></td>
<td><?php echo (is_null_time($row['ss_datetime']) ? '' : $row['ss_datetime']); ?></td> <td class="td_datetime"><?php echo (is_null_time($row['ss_datetime']) ? '' : $row['ss_datetime']); ?></td>
</tr> </tr>
<?php <?php
} }

View File

@ -425,8 +425,10 @@ td.td_grpset {width:160px;border-left:1px solid #e9ecee;text-align:center}
.td_send {width:50px;text-align:center} .td_send {width:50px;text-align:center}
.td_sendcost_by {width:50px;text-align:center} .td_sendcost_by {width:50px;text-align:center}
.td_sendcost_add {width:100px;text-align:center} .td_sendcost_add {width:100px;text-align:center}
.td_stat {width:70px;text-align:center}
.td_tdiv {border-bottom:1px solid #c9c9c9 !important} .td_tdiv {border-bottom:1px solid #c9c9c9 !important}
.td_tel {width:80px;text-align:center} .td_tel {width:80px;text-align:center}
.td_telbig {width:100px;text-align:center}
.td_test {width:50px;text-align:center} .td_test {width:50px;text-align:center}
.txt_true {color:#e8180c} .txt_true {color:#e8180c}

View File

@ -219,7 +219,7 @@ button.btn02 {display:inline-block;margin:0;padding:7px;border:1px solid #3b3c3f
.btn_confirm {text-align:center} /* 서식단계 진행 */ .btn_confirm {text-align:center} /* 서식단계 진행 */
.btn_submit {padding:8px;border:0;background:#ff3061;color:#fff;letter-spacing:-0.1em} .btn_submit {padding:8px;border:0;background:#ff3061;color:#fff;letter-spacing:-0.1em;cursor:pointer}
fieldset .btn_submit {padding:0 7px;height:24px;line-height:1em} fieldset .btn_submit {padding:0 7px;height:24px;line-height:1em}
a.btn_cancel {display:inline-block;padding:7px;border:1px solid #ccc;background:#fafafa;color:#000;text-decoration:none;vertical-align:middle} a.btn_cancel {display:inline-block;padding:7px;border:1px solid #ccc;background:#fafafa;color:#000;text-decoration:none;vertical-align:middle}

View File

@ -564,7 +564,7 @@ a.btn_admin:focus, a.btn_admin:hover {text-decoration:none}
.new_win .win_ul:after {display:block;visibility:hidden;clear:both;content:""} .new_win .win_ul:after {display:block;visibility:hidden;clear:both;content:""}
.new_win .win_ul li {float:left;margin-left:-1px} .new_win .win_ul li {float:left;margin-left:-1px}
.new_win .win_ul a {display:block;padding:10px;border-right:1px solid #455255;border-left:1px solid #455255;color:#fff;font-weight:bold;text-decoration:none} .new_win .win_ul a {display:block;padding:10px;border-right:1px solid #455255;border-left:1px solid #455255;color:#fff;font-weight:bold;text-decoration:none}
.new_win .win_desc {padding:10px 20px} .new_win .win_desc {margin:0 20px}
.new_win .win_btn {clear:both;margin:20px;text-align:center} .new_win .win_btn {clear:both;margin:20px;text-align:center}
.new_win .win_btn a {display:inline-block;padding:0 10px;height:2.5em;background:#666;color:#fff;text-decoration:none;vertical-align:middle;line-height:2.5em} .new_win .win_btn a {display:inline-block;padding:0 10px;height:2.5em;background:#666;color:#fff;text-decoration:none;vertical-align:middle;line-height:2.5em}

View File

@ -267,11 +267,11 @@ add_stylesheet('<link rel="stylesheet" href="'.G5_MSHOP_SKIN_URL.'/style.css">',
<input type="submit" onclick="document.pressed=this.value;" value="바로구매" id="sit_btn_buy"> <input type="submit" onclick="document.pressed=this.value;" value="바로구매" id="sit_btn_buy">
<input type="submit" onclick="document.pressed=this.value;" value="장바구니" id="sit_btn_cart"> <input type="submit" onclick="document.pressed=this.value;" value="장바구니" id="sit_btn_cart">
<?php } ?> <?php } ?>
<?php if(!$is_orderable && $it['it_soldout'] && $it['it_stock_sms']) { ?>
<a href="javascript:popup_stocksms('<?php echo $it['it_id']; ?>');" id="sit_btn_buy">재입고알림</a>
<?php } ?>
<a href="javascript:item_wish(document.fitem, '<?php echo $it['it_id']; ?>');" id="sit_btn_wish">위시리스트</a> <a href="javascript:item_wish(document.fitem, '<?php echo $it['it_id']; ?>');" id="sit_btn_wish">위시리스트</a>
<a href="javascript:popup_item_recommend('<?php echo $it['it_id']; ?>');" id="sit_btn_rec">추천하기</a> <a href="javascript:popup_item_recommend('<?php echo $it['it_id']; ?>');" id="sit_btn_rec">추천하기</a>
<?php if(!$is_orderable && $it['it_soldout'] && $it['it_stock_sms']) { ?>
<a href="javascript:popup_stocksms('<?php echo $it['it_id']; ?>');">재입고SMS 알림등록</a>
<?php } ?>
</div> </div>
</section> </section>
</div> </div>

View File

@ -1,7 +1,7 @@
<?php <?php
include_once('./_common.php'); include_once('./_common.php');
$g5['title'] = '상품 재입고SMS 알림요청 등록'; $g5['title'] = '상품 재입고 알림 (SMS)';
include_once(G5_PATH.'/head.sub.php'); include_once(G5_PATH.'/head.sub.php');
// 상품정보 // 상품정보
@ -15,37 +15,45 @@ if(!$it['it_id'])
if(!$it['it_soldout'] || !$it['it_stock_sms']) if(!$it['it_soldout'] || !$it['it_stock_sms'])
alert_close('재입고SMS 알림을 신청할 수 없는 상품입니다.'); alert_close('재입고SMS 알림을 신청할 수 없는 상품입니다.');
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
add_stylesheet('<link rel="stylesheet" href="'.G5_SHOP_SKIN_URL.'/style.css">', 0);
?> ?>
<div> <div id="sit_sms_new" class="new_win">
<h2><?php echo $g5['title']; ?></h2> <h1 id="win_title"><?php echo $g5['title']; ?></h1>
<form name="fstocksms" method="post" action="<?php echo G5_HTTPS_SHOP_URL; ?>/itemstocksmsupdate.php" onsubmit="return fstocksms_submit(this);" autocomplete="off"> <form name="fstocksms" method="post" action="<?php echo G5_HTTPS_SHOP_URL; ?>/itemstocksmsupdate.php" onsubmit="return fstocksms_submit(this);" autocomplete="off">
<input type="hidden" name="it_id" value="<?php echo $it_id; ?>"> <input type="hidden" name="it_id" value="<?php echo $it_id; ?>">
<table>
<colgroup> <div class="tbl_frm01 tbl_wrap">
<col class="grid_4"> <table>
<col> <colgroup>
</colgroup> <col class="grid_4">
<tbody> <col>
<tr> </colgroup>
<th scope="row">상품</th> <tbody>
<td><?php echo $it['it_name']; ?></td> <tr>
</tr> <th scope="row">상품</th>
<tr> <td><?php echo $it['it_name']; ?></td>
<th scope="row"><label for="ss_hp">휴대폰번호</label></th> </tr>
<td><input type="text" name="ss_hp" value="<?php echo $member['mb_hp']; ?>" id="ss_hp" required class="required frm_input"></td> <tr>
</tr> <th scope="row"><label for="ss_hp">휴대폰번호</label></th>
</tbody> <td><input type="text" name="ss_hp" value="<?php echo $member['mb_hp']; ?>" id="ss_hp" required class="required frm_input"></td>
</table> </tr>
<div> <tr>
개인정보처리방침안내 <th scope="row"><strong>개인정보처리방침안내</strong></th>
<textarea readonly><?php echo get_text($config['cf_privacy']) ?></textarea> <td><textarea readonly><?php echo get_text($config['cf_privacy']) ?></textarea></td>
</tr>
</tbody>
</table>
</div>
<div id="sms_agree" class="win_desc">
<label for="agree">개인정보처리방침안내의 내용에 동의합니다.</label> <label for="agree">개인정보처리방침안내의 내용에 동의합니다.</label>
<input type="checkbox" name="agree" value="1" id="agree"> <input type="checkbox" name="agree" value="1" id="agree">
</div> </div>
<div> <div class="win_btn">
<input type="submit" value="확인"> <input type="submit" value="확인" class="btn_submit">
<button type="button" onclick="window.close();">닫기</button> <button type="button" onclick="window.close();">닫기</button>
</div> </div>
</form> </form>

View File

@ -287,11 +287,11 @@ add_stylesheet('<link rel="stylesheet" href="'.G5_SHOP_SKIN_URL.'/style.css">',
<input type="submit" onclick="document.pressed=this.value;" value="바로구매" id="sit_btn_buy"> <input type="submit" onclick="document.pressed=this.value;" value="바로구매" id="sit_btn_buy">
<input type="submit" onclick="document.pressed=this.value;" value="장바구니" id="sit_btn_cart"> <input type="submit" onclick="document.pressed=this.value;" value="장바구니" id="sit_btn_cart">
<?php } ?> <?php } ?>
<?php if(!$is_orderable && $it['it_soldout'] && $it['it_stock_sms']) { ?>
<a href="javascript:popup_stocksms('<?php echo $it['it_id']; ?>');" id="sit_btn_buy">재입고알림</a>
<?php } ?>
<a href="javascript:item_wish(document.fitem, '<?php echo $it['it_id']; ?>');" id="sit_btn_wish">위시리스트</a> <a href="javascript:item_wish(document.fitem, '<?php echo $it['it_id']; ?>');" id="sit_btn_wish">위시리스트</a>
<a href="javascript:popup_item_recommend('<?php echo $it['it_id']; ?>');" id="sit_btn_rec">추천하기</a> <a href="javascript:popup_item_recommend('<?php echo $it['it_id']; ?>');" id="sit_btn_rec">추천하기</a>
<?php if(!$is_orderable && $it['it_soldout'] && $it['it_stock_sms']) { ?>
<a href="javascript:popup_stocksms('<?php echo $it['it_id']; ?>');">재입고SMS 알림등록</a>
<?php } ?>
</div> </div>
<script> <script>

View File

@ -272,13 +272,17 @@
#sit_ov_soldout {margin:0 0 20px;color:#ff3061;font-weight:bold;text-align:center} #sit_ov_soldout {margin:0 0 20px;color:#ff3061;font-weight:bold;text-align:center}
#sit_ov_btn {margin:0 0 0 34px !important;margin:0 0 0 33px;padding:0;text-align:center;list-style:none;letter-spacing:-3px} #sit_ov_btn {text-align:right;letter-spacing:-3px}
#sit_ov_btn a {display:inline-block;width:80px;height:30px;border:0;font-size:0.95em;vertical-align:middle;text-align:center;text-decoration:none;letter-spacing:-0.1em;line-height:2.8em;cursor:pointer} #sit_ov_btn a {display:inline-block;width:80px;height:30px;border:0;font-size:0.95em;vertical-align:middle;text-align:center;text-decoration:none;letter-spacing:-0.1em;line-height:2.8em;cursor:pointer}
#sit_ov_btn input {display:inline-block;width:80px;height:30px;border:0;font-size:0.95em;text-align:center;text-decoration:none;letter-spacing:-0.1em;cursor:pointer} #sit_ov_btn input {display:inline-block;width:80px;height:30px;border:0;font-size:0.95em;text-align:center;text-decoration:none;letter-spacing:-0.1em;cursor:pointer}
#sit_btn_buy {background:#ff5b89;color:#fff} #sit_btn_buy {background:#ff5b89;color:#fff}
#sit_btn_cart, #sit_btn_wish {background:#555;color:#fff} #sit_btn_cart, #sit_btn_wish {background:#555;color:#fff}
#sit_btn_rec {background:#888;color:#fff} #sit_btn_rec {background:#888;color:#fff}
/* 상품 재입고 알림 (SMS) */
#sit_sms_new {}
#sit_sms_new #sms_agree {padding:10px 0;text-align:right}
/* 상품 상세보기 - 다른 상품 보기 */ /* 상품 상세보기 - 다른 상품 보기 */
#sit_siblings {clear:both;margin:0 0 20px;padding:0 0 20px;border-bottom:1px solid #e9e9e9;text-align:center} #sit_siblings {clear:both;margin:0 0 20px;padding:0 0 20px;border-bottom:1px solid #e9e9e9;text-align:center}
#sit_siblings:after {display:block;visibility:hidden;clear:both;content:""} #sit_siblings:after {display:block;visibility:hidden;clear:both;content:""}