프리샵 추가
This commit is contained in:
137
adm/shop_admin/coupon_item.php
Normal file
137
adm/shop_admin/coupon_item.php
Normal file
@ -0,0 +1,137 @@
|
||||
<?php
|
||||
include_once('./_common.php');
|
||||
|
||||
$stx = trim($stx);
|
||||
if($stx) {
|
||||
$sql_common = " from {$g4['yc4_item_table']} ";
|
||||
$sql_search = " where it_use = '1' and it_nocoupon = '0' and it_name like '%$stx%' ";
|
||||
$sql_order = " order by it_id asc ";
|
||||
|
||||
$sql = " select it_id, it_name, it_amount
|
||||
$sql_common
|
||||
$sql_search
|
||||
$sql_order ";
|
||||
$result = sql_query($sql);
|
||||
}
|
||||
|
||||
$g4['title'] = "상품찾기";
|
||||
include_once($g4['path'].'/head.sub.php');
|
||||
?>
|
||||
|
||||
<style type="text/css">
|
||||
<!--
|
||||
#container { width: 370px; margin: 0 auto; }
|
||||
form { display: inline; }
|
||||
.searcharea { text-align: center; }
|
||||
.resultarea { padding-top: 15px; width: 370px; height: 200px; }
|
||||
.resultarea .list { width: 350px; height: 250px; overflow-y: auto; }
|
||||
.resultarea .btn { text-align: center; height: 30px; }
|
||||
-->
|
||||
</style>
|
||||
|
||||
<div id="container">
|
||||
<div class="searcharea">
|
||||
<form id="fitem" method="get" action="./coupon_item.php?w=<? echo $w; ?>">
|
||||
<input type="text" name="stx" class="ed" size="30" value="<? echo stripslashes($stx); ?>" />
|
||||
<input type="submit" class="btn1" value="검색" />
|
||||
</form>
|
||||
</div>
|
||||
<? if($stx) { ?>
|
||||
<div class="resultarea">
|
||||
<form id="fresult" method="get">
|
||||
<div class="list">
|
||||
<table width="330" cellpadding="0" cellspacing="0" border="0">
|
||||
<colgroup width="50" />
|
||||
<colgroup width="" />
|
||||
<colgroup width="90" />
|
||||
<colgroup width="90" />
|
||||
<tr>
|
||||
<th><input type="checkbox" name="check_all" /></th>
|
||||
<th>상품코드</th>
|
||||
<th>상품명</th>
|
||||
<th>가격</th>
|
||||
</tr>
|
||||
<?
|
||||
for($i=0; $row=sql_fetch_array($result); $i++) {
|
||||
?>
|
||||
<tr>
|
||||
<td align="center"><input type="checkbox" name="s_it_id[]" value="<? echo $row['it_id']; ?>" /></td>
|
||||
<td align="center"><? echo $row['it_id']; ?></td>
|
||||
<td align="center"><? echo $row['it_name']; ?></td>
|
||||
<td align="center"><? echo number_format($row['it_amount']); ?></td>
|
||||
</tr>
|
||||
<?
|
||||
}
|
||||
|
||||
if($i == 0) {
|
||||
echo "<tr><td colspan=\"4\" height=\"100\" align=\"center\">검색된 상품이 없습니다.</td></tr>";
|
||||
}
|
||||
?>
|
||||
</table>
|
||||
</div>
|
||||
<div class="btn"><input type="submit" class="btn1" value="적용" /></div>
|
||||
</form>
|
||||
</div>
|
||||
<? } ?>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
$(function() {
|
||||
$("#fitem").submit(function() {
|
||||
var stx = $.trim($("input[name=stx]").val());
|
||||
if(stx == "") {
|
||||
alert("검색어를 입력해 주세요.");
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
});
|
||||
|
||||
$("input[name=check_all]").click(function() {
|
||||
if($(this).is(":checked")) {
|
||||
$("input[name^=s_it_id]").attr("checked", true);
|
||||
} else {
|
||||
$("input[name^=s_it_id]").attr("checked", false);
|
||||
}
|
||||
});
|
||||
|
||||
$("#fresult").submit(function() {
|
||||
var $checked = $("input[name^=s_it_id]:checked");
|
||||
var chk_count = $checked.size();
|
||||
if(!chk_count) {
|
||||
alert("적용할 상품을 선택해 주세요.");
|
||||
return false;
|
||||
}
|
||||
|
||||
<? if($w == "u") { ?>
|
||||
if(chk_count > 1) {
|
||||
alert("쿠폰 수정시는 하나의 상품만 선택할 수 있습니다.");
|
||||
return false;
|
||||
<? } ?>
|
||||
|
||||
var $opener = window.opener;
|
||||
var itid = "";
|
||||
var comma = "";
|
||||
|
||||
$checked.each(function() {
|
||||
var id = $(this).val();
|
||||
if(id != "") {
|
||||
itid += comma + id;
|
||||
}
|
||||
|
||||
if(itid != "") {
|
||||
comma = ",";
|
||||
}
|
||||
});
|
||||
|
||||
$opener.$("input[name=it_id]").val(itid);
|
||||
self.close();
|
||||
|
||||
return false;
|
||||
});
|
||||
});
|
||||
</script>
|
||||
|
||||
<?php
|
||||
include_once($g4['path'].'/tail.sub.php');
|
||||
?>
|
||||
Reference in New Issue
Block a user