groupList.php
6.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
<? include $_SERVER["DOCUMENT_ROOT"] . "/common/classes/AdminOperate.php" ?>
<? include $_SERVER["DOCUMENT_ROOT"] . "/admin/inc/php/header.php" ?>
<? include $_SERVER["DOCUMENT_ROOT"] . "/admin/inc/php/leftOperateManage.php" ?>
<?
$obj = new AdminOperate($_REQUEST) ;
$list = $obj->getListOfGroup() ;
$vnum = $obj->virtualNum ;
?>
<script>
$(document).ready(function(){
//=====프레입웤 변수들==================================================================================//
var FORM_TARGET_CLS_NM = "DIV#Contents" ; // 폼을 동적 wrap 할 타겟 ID이름
var FORM_NAME = "nf" ; // 폼이름
var FORM_METHOD = "GET" ; // 폼 메쏘드
var FORM_USE_FILE = false ; // 파일폼 사용 여부
var FORM_ACTION = document.URL ;
var NEXT_CMD = "" ; // 다은 수행 할 cmd
//=====================================================================================================//
var jForm = $(FORM_TARGET_CLS_NM).mf({ "name" : FORM_NAME , "method" : FORM_METHOD , "action" : FORM_ACTION , "useFile" : FORM_USE_FILE }) ;
// 페이징
$(".jPage").click2(function(){
jForm.ci() ;
jForm.mi("page",$(this).attr("page")) ;
jForm.submit() ;
}) ;
$(".jAutoSearch").change(function(){
jForm.ci() ;
jForm.submit() ;
});
$(".jSearch").click2(function(){
jForm.ci() ;
jForm.submit() ;
});
$(".jView").click2(function(){
var no = $(this).attr("no");
location.href = "/admin/operateManage/groupView.php?no=" + no + "&rurl=" + jQuery.rich.bin2hex(document.URL);
});
$(".jAdd").click2(function(){
location.href = "/admin/operateManage/groupView.php?rurl=" + jQuery.rich.bin2hex(document.URL);
});
$(".jDel").click2(function(){
var no = $(this).attr("no");
var noArr = new Array(no);
if(confirm("정말 삭제하시겠습니까?"))
{
deleteAction(noArr);
}
}) ;
// 단체 삭제
$(".jDelMulti").click2(function(){
var noArr = new Array();
var noCount = $(".jNo:checked").length;
if(noCount == 0)
{
alert("삭제할 대상을 하나 이상 선택해주세요.");
return false;
}
if(confirm("정말 삭제하시겠습니까?"))
{
for(var i = 0; i < noCount; i++ )
{
noArr[i] = $(".jNo:checked:eq(" + i + ")").val();
}
deleteAction(noArr);
}
});
$("#jCheckAll").change(function(){
if($(this).is(":checked"))
$(".jNo").prop("checked", true);
else
$(".jNo").prop("checked", false);
});
}) ;
function deleteAction(noArr)
{
$.ajax({
url : "/action_front.php?cmd=AdminOperate.delGroup",
async : false,
cache : false,
dataType : "json",
data : {
"no" : noArr
},
success : function(data){
location.reload();
}
});
}
</script>
<div id="Contents" class="notice">
<h1>그룹 리스트</h1>
<div class="data">
<fieldset class="search" style="margin-top:30px;">
<div class="jSearchArea" >
<label>
<span># 그룹명, 주소, 담당자, 담당자 연락처</span>
<input type="text" id="search_text" name="search_text" class="wm" value="<?=$_REQUEST['search_text']?>" />
</label>
<input type="button" class="button bigrounded blue jSearch" style="margin-left:30px;" value="검색" />
</div>
</fieldset>
<div class="btngroupright">
<input type="button" class="button bigrounded blue jAdd" value="등록" />
<input type="button" class="button bigrounded blue jDelMulti" value="삭제" />
</div>
<table class="datacList">
<thead>
<tr>
<th class="no" width="5%">No</th>
<th width="5%"><input type="checkbox" id="jCheckAll"></th>
<th width="15%">그룹명</th>
<th width="10%">담당자</th>
<th width="10%">담당자 연락처</th>
<th width="25%">주소</th>
<th width="10%">마이포인트</th>
<th width="10%">등록날짜</th>
<th width="15%">-</th>
</tr>
</thead>
<tbody><!-- 10줄 리스트// 마지막 tr에 class="last" 넣어주세요 -->
<? for($i=0; $i<sizeof($list); $i++){ ?>
<tr class="<?=(sizeof($list)-1 == $i) ? "last" : "datacLists"?>">
<td class="no center">
<?=$vnum--?>
</td>
<td class="center">
<input type="checkbox" class="jNo" value="<?=$list[$i]["no"] ?>" >
</td>
<td class="center">
<?=$list[$i]["name"]?>
</td>
<td class="center">
<?=$list[$i]["manager_name"]?>
</td>
<td class="center">
<?=$list[$i]["manager_phone"]?>
</td>
<td class="center">
<?=$list[$i]["addr1"] . " " . $list[$i]["addr2"] ?>
</td>
<td class="center">
<?=number_format($list[$i]["group_point"])?>
</td>
<td class="center">
<?=$list[$i]["regist_dt"]?>
</td>
<td class="center">
<input type="button" class="button searchsmall white jView" value="상세보기" no="<?=$list[$i]["no"]?>" />
<input type="button" class="button searchsmall white jDel" value="삭제" no="<?=$list[$i]["no"]?>" />
</td>
</tr>
<? } ?>
<?if(sizeof($list) == 0){?>
<tr class="last">
<td class="no center" colspan="11">No Data</td>
</tr>
<?}?>
</tbody>
</table>
<!-- Pagination -->
<? include $_SERVER["DOCUMENT_ROOT"] . "/admin/inc/php/pageNavigation.php" ?>
<!--//Pagination -->
</div>
</div>
<? include $_SERVER["DOCUMENT_ROOT"] . "/admin/inc/php/footer.php" ?>