ListPrecode.php
14.8 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
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
<?php
define('EmpireCMSAdmin','1');
require("../../class/connect.php");
require("../../class/db_sql.php");
require("../../class/functions.php");
require "../".LoadLang("pub/fun.php");
require("class/hShopSysFun.php");
$link=db_connect();
$empire=new mysqlquery();
$editor=1;
//驗證用戶
$lur=is_login();
$logininid=$lur['userid'];
$loginin=$lur['username'];
$loginrnd=$lur['rnd'];
$loginlevel=$lur['groupid'];
$loginadminstyleid=$lur['adminstyleid'];
//ehash
$ecms_hashur=hReturnEcmsHashStrAll();
//驗證權限
CheckLevel($logininid,$loginin,$classid,"precode");
//返回會員組列表
function ReturnPreGroupids($groupid){
$count=count($groupid);
if(!$count)
{
return '';
}
$gids='';
$dh='';
for($i=0;$i<$count;$i++)
{
$groupid[$i]=(int)$groupid[$i];
if(!$groupid[$i])
{
continue;
}
$gids.=$dh.$groupid[$i];
$dh=',';
}
if($gids)
{
$gids=','.$gids.',';
}
return $gids;
}
//增加優惠碼
function AddPrecode($add,$userid,$username){
global $empire,$dbtbpre;
if(!$add['prename']||!$add['precode']||!$add['premoney'])
{
printerror("EmptyPrecode","history.go(-1)");
}
//驗證權限
CheckLevel($userid,$username,$classid,"precode");
$add['precode']=RepPostVar($add['precode']);
$num=$empire->gettotal("select count(*) as total from {$dbtbpre}enewsshop_precode where precode='$add[precode]' limit 1");
if($num)
{
printerror("RePrecode","history.go(-1)");
}
$addtime=time();
$add['prename']=eaddslashes(ehtmlspecialchars($add['prename']));
$add['premoney']=(int)$add['premoney'];
$add['pretype']=(int)$add['pretype'];
$add['reuse']=(int)$add['reuse'];
$add['endtime']=$add['endtime']?to_time($add['endtime']):0;
$add['musttotal']=(int)$add['musttotal'];
$add['usenum']=(int)$add['usenum'];
$groupids=ReturnPreGroupids($add['groupid']);
$add['classid']=trim($add['classid']);
$classids=$add['classid']?','.$add['classid'].',':'';
$sql=$empire->query("insert into {$dbtbpre}enewsshop_precode(prename,precode,premoney,pretype,reuse,addtime,endtime,groupid,classid,musttotal,usenum) values('$add[prename]','$add[precode]','$add[premoney]','$add[pretype]','$add[reuse]','$addtime','$add[endtime]','$groupids','".eaddslashes($classids)."','$add[musttotal]','$add[usenum]');");
$id=$empire->lastid();
if($sql)
{
//操作日誌
insert_dolog("id=$id&precode=$add[precode]<br>premoney=$add[premoney]&pretype=$add[pretype]");
printerror("AddPrecodeSuccess","AddPrecode.php?enews=AddPrecode".hReturnEcmsHashStrHref2(0));
}
else
{printerror("DbError","history.go(-1)");}
}
//批量增加優惠碼
function AddMorePrecode($add,$userid,$username){
global $empire,$dbtbpre;
$donum=(int)$add['donum'];
$precodenum=(int)$add['precodenum'];
$add['prename']=eaddslashes(ehtmlspecialchars($add['prename']));
$add['premoney']=(int)$add['premoney'];
$add['pretype']=(int)$add['pretype'];
$add['reuse']=(int)$add['reuse'];
$add['endtime']=$add['endtime']?to_time($add['endtime']):0;
$add['musttotal']=(int)$add['musttotal'];
$add['usenum']=(int)$add['usenum'];
$groupids=ReturnPreGroupids($add['groupid']);
$add['classid']=trim($add['classid']);
$classids=$add['classid']?','.$add['classid'].',':'';
if(!$donum||!$precodenum||!$add['prename']||!$add['premoney'])
{
printerror("EmptyMorePrecode","history.go(-1)");
}
//驗證權限
CheckLevel($userid,$username,$classid,"precode");
$addtime=time();
//寫入優惠碼
$no=1;
while($no<=$donum)
{
$precode=strtoupper(make_password($precodenum));
$num=$empire->gettotal("select count(*) as total from {$dbtbpre}enewsshop_precode where precode='$precode' limit 1");
if(!$num)
{
$sql=$empire->query("insert into {$dbtbpre}enewsshop_precode(prename,precode,premoney,pretype,reuse,addtime,endtime,groupid,classid,musttotal,usenum) values('$add[prename]','$precode','$add[premoney]','$add[pretype]','$add[reuse]','$addtime','$add[endtime]','$groupids','".eaddslashes($classids)."','$add[musttotal]','$add[usenum]');");
$no+=1;
}
}
if($sql)
{
//操作日誌
insert_dolog("prenum=$donum&premoney=$add[premoney]&pretype=$add[pretype]");
printerror("AddMorePrecodeSuccess","AddMorePrecode.php".hReturnEcmsHashStrHref2(1));
}
else
{printerror("DbError","history.go(-1)");}
}
//修改優惠碼
function EditPrecode($add,$userid,$username){
global $empire,$dbtbpre;
$add['id']=(int)$add['id'];
if(!$add['prename']||!$add['precode']||!$add['premoney']||!$add['id'])
{
printerror("EmptyPrecode","history.go(-1)");
}
//驗證權限
CheckLevel($userid,$username,$classid,"precode");
$add['precode']=RepPostVar($add['precode']);
$num=$empire->gettotal("select count(*) as total from {$dbtbpre}enewsshop_precode where precode='$add[precode]' and id<>".$add[id]." limit 1");
if($num)
{
printerror("RePrecode","history.go(-1)");
}
$time=(int)$add['time'];
$add['prename']=eaddslashes(ehtmlspecialchars($add['prename']));
$add['premoney']=(int)$add['premoney'];
$add['pretype']=(int)$add['pretype'];
$add['reuse']=(int)$add['reuse'];
$add['endtime']=$add['endtime']?to_time($add['endtime']):0;
$add['musttotal']=(int)$add['musttotal'];
$add['usenum']=(int)$add['usenum'];
$groupids=ReturnPreGroupids($add['groupid']);
$add['classid']=trim($add['classid']);
$classids=$add['classid']?','.$add['classid'].',':'';
$sql=$empire->query("update {$dbtbpre}enewsshop_precode set prename='$add[prename]',precode='$add[precode]',premoney='$add[premoney]',pretype='$add[pretype]',reuse='$add[reuse]',endtime='$add[endtime]',groupid='$groupids',classid='$classids',musttotal='$add[musttotal]',usenum='$add[usenum]' where id='$add[id]'");
if($sql)
{
//操作日誌
insert_dolog("id=$add[id]&precode=$add[precode]<br>premoney=$add[premoney]&pretype=$add[pretype]");
printerror("EditPrecodeSuccess","ListPrecode.php?time=$time".hReturnEcmsHashStrHref2(0));
}
else
{printerror("DbError","history.go(-1)");}
}
//刪除優惠碼
function DelPrecode($add,$userid,$username){
global $empire,$dbtbpre;
$id=(int)$add['id'];
if(!$id)
{
printerror("NotChangePrecodeid","history.go(-1)");
}
//驗證權限
CheckLevel($userid,$username,$classid,"precode");
$time=(int)$add['time'];
$r=$empire->fetch1("select precode,premoney,pretype from {$dbtbpre}enewsshop_precode where id='$id'");
$sql=$empire->query("delete from {$dbtbpre}enewsshop_precode where id='$id'");
if($sql)
{
//操作日誌
insert_dolog("id=$id&precode=$r[precode]<br>premoney=$r[premoney]&pretype=$r[pretype]");
printerror("DelPrecodeSuccess","ListPrecode.php?time=$time".hReturnEcmsHashStrHref2(0));
}
else
{printerror("DbError","history.go(-1)");}
}
//批量刪除優惠碼
function DelPrecode_all($add,$userid,$username){
global $empire,$dbtbpre;
$id=$add['id'];
$count=count($id);
if(!$count)
{
printerror("NotChangePrecodeid","history.go(-1)");
}
//驗證權限
CheckLevel($userid,$username,$classid,"precode");
$ids='';
$dh='';
for($i=0;$i<$count;$i++)
{
$ids.=$dh.intval($id[$i]);
$dh=',';
}
$time=(int)$add['time'];
$sql=$empire->query("delete from {$dbtbpre}enewsshop_precode where id in (".$ids.")");
if($sql)
{
//操作日誌
insert_dolog("");
printerror("DelPrecodeSuccess","ListPrecode.php?time=$add[time]".hReturnEcmsHashStrHref2(0));
}
else
{printerror("DbError","history.go(-1)");}
}
$enews=$_POST['enews'];
if(empty($enews))
{$enews=$_GET['enews'];}
if($enews)
{
hCheckEcmsRHash();
}
if($enews=="AddPrecode")//增加優惠碼
{
AddPrecode($_POST,$logininid,$loginin);
}
elseif($enews=="EditPrecode")//修改優惠碼
{
EditPrecode($_POST,$logininid,$loginin);
}
elseif($enews=="DelPrecode")//刪除優惠碼
{
DelPrecode($_GET,$logininid,$loginin);
}
elseif($enews=="AddMorePrecode")//批量增加優惠碼
{
AddMorePrecode($_POST,$logininid,$loginin);
}
elseif($enews=="DelPrecode_all")//批量刪除優惠碼
{
DelPrecode_all($_POST,$logininid,$loginin);
}
$page=(int)$_GET['page'];
$page=RepPIntvar($page);
$start=0;
$line=25;
$page_line=25;
$add="";
$and=' where ';
$search="";
$search.=$ecms_hashur['ehref'];
$time=(int)$_GET['time'];
//搜索
$sear=(int)$_GET['sear'];
if($sear)
{
$show=(int)$_GET['show'];
$keyboard=$_GET['keyboard'];
$keyboard=RepPostVar2($keyboard);
if($keyboard)
{
if($show==1)//優惠碼名稱
{
$add.=$and."prename like '%$keyboard%'";
}
elseif($show==2)//優惠碼
{
$add.=$and."precode='$keyboard'";
}
else//金額
{
$add.=$and."premoney='$keyboard'";
}
$and=' and ';
}
//類型
$pretype=(int)$_GET['pretype'];
if($pretype)
{
if($pretype==1)//金額
{
$add.=$and."pretype=0";
}
else//百分比
{
$add.=$and."pretype=1";
}
$and=' and ';
}
//重複使用
$reuse=(int)$_GET['reuse'];
if($reuse)
{
if($reuse==1)//一次性使用
{
$add.=$and."reuse=0";
}
else//可重複使用
{
$add.=$and."reuse=1";
}
$and=' and ';
}
$search.="&sear=1&pretype=$pretype&reuse=$reuse&show=$show&keyboard=$keyboard";
}
//過期
if($time)
{
$todaytime=time();
$search.="&time=$time";
$add.=$and."endtime>0 and endtime<".$todaytime;
}
$offset=$line*$page;
$totalquery="select count(*) as total from {$dbtbpre}enewsshop_precode".$add;
$num=$empire->gettotal($totalquery);
$query="select id,prename,precode,pretype,premoney,reuse,addtime,endtime from {$dbtbpre}enewsshop_precode".$add;
$query.=" order by id desc limit $offset,$line";
$sql=$empire->query($query);
$returnpage=page2($num,$line,$page_line,$start,$page,$search);
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>管理優惠碼</title>
<link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
<script>
function CheckAll(form)
{
for (var i=0;i<form.elements.length;i++)
{
var e = form.elements[i];
if (e.name != 'chkall')
e.checked = form.chkall.checked;
}
}
</script>
</head>
<body>
<table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
<tr>
<td width="50%">位置:<a href="ListPrecode.php<?=$ecms_hashur['whehref']?>">管理優惠碼</a><?=$time?' > 過期優惠碼':''?></td>
<td><div align="right" class="emenubutton">
<input type="button" name="Submit5" value="增加優惠碼" onclick="self.location.href='AddPrecode.php?enews=AddPrecode<?=$ecms_hashur['ehref']?>';">
<input type="button" name="Submit52" value="批量增加優惠碼" onclick="self.location.href='AddMorePrecode.php<?=$ecms_hashur['whehref']?>';">
<input type="button" name="Submit53" value="管理過期優惠碼" onclick="self.location.href='ListPrecode.php?time=1<?=$ecms_hashur['ehref']?>';">
</div></td>
</tr>
</table>
<br>
<table width="100%" border="0" cellpadding="0" cellspacing="1">
<form name=search method=GET action=ListPrecode.php>
<?=$ecms_hashur['eform']?>
<tr bgcolor="#FFFFFF">
<td height="25" colspan="6"> 搜索:
<select name="show" id="show">
<option value="1"<?=$show==1?' selected':''?>>優惠碼名稱</option>
<option value="2"<?=$show==2?' selected':''?>>優惠碼</option>
<option value="3"<?=$show==3?' selected':''?>>金額</option>
</select>
<input name="keyboard" type="text" id="keyboard" value="<?=$keyboard?>">
<select name="pretype" id="pretype">
<option value="0"<?=$pretype==0?' selected':''?>>不限類型</option>
<option value="1"<?=$pretype==1?' selected':''?>>減金額的優惠碼</option>
<option value="2"<?=$pretype==2?' selected':''?>>百分比的優惠碼</option>
</select>
<select name="reuse" id="reuse">
<option value="0"<?=$reuse==0?' selected':''?>>不限使用</option>
<option value="1"<?=$reuse==1?' selected':''?>>一次性使用</option>
<option value="2"<?=$reuse==2?' selected':''?>>可重複使用</option>
</select>
<input type="submit" name="Submit" value="搜索"> <input name="sear" type="hidden" id="sear" value="1">
<input name="time" type="hidden" id="time" value="<?=$time?>"> </td>
</tr>
</form>
</table>
<table width="100%" border="0" cellpadding="0" cellspacing="1" class="tableborder">
<form name="listcardform" method="post" action="ListPrecode.php" onsubmit="return confirm('確認要刪除?');">
<?=$ecms_hashur['form']?>
<input type="hidden" name="enews" value="DelPrecode_all">
<input name="time" type="hidden" id="time" value="<?=$time?>">
<tr class="header">
<td width="2%"><div align="center"></div></td>
<td width="5%" height="25"> <div align="center">ID</div></td>
<td width="28%"><div align="center">優惠碼名稱</div></td>
<td width="31%" height="25"> <div align="center">優惠碼</div></td>
<td width="12%" height="25"> <div align="center">金額(元)</div></td>
<td width="7%"><div align="center">重複使用</div></td>
<td width="15%" height="25"> <div align="center">操作</div></td>
</tr>
<?
while($r=$empire->fetch($sql))
{
if($r['pretype']==1)
{
$premoney=$r['premoney'].'%';
}
else
{
$premoney=$r['premoney'].'元';
}
?>
<tr bgcolor="#FFFFFF" onmouseout="this.style.backgroundColor='#ffffff'" onmouseover="this.style.backgroundColor='#C3EFFF'">
<td><div align="center">
<input name="id[]" type="checkbox" id="id[]" value="<?=$r[id]?>">
</div></td>
<td height="25"> <div align="center">
<?=$r[id]?>
</div></td>
<td><div align="center"><a title="<?="增加時間:".date('Y-m-d H:i:s',$r[addtime])."\r\n過期時間:".date('Y-m-d',$r[endtime])?>"><?=$r[prename]?></a></div></td>
<td height="25"> <div align="center">
<?=$r[precode]?>
</div></td>
<td height="25"> <div align="center">
<?=$premoney?>
</div></td>
<td><div align="center"><?=$r['reuse']==1?'可重複':'一次'?></div></td>
<td height="25"> <div align="center">[<a href="AddPrecode.php?enews=EditPrecode&id=<?=$r[id]?>&time=<?=$time?><?=$ecms_hashur['ehref']?>">修改</a>] [<a href="ListPrecode.php?enews=DelPrecode&id=<?=$r[id]?>&time=<?=$time?><?=$ecms_hashur['href']?>" onclick="return confirm('確認要刪除?');">刪除</a>]</div></td>
</tr>
<?
}
?>
<tr bgcolor="#FFFFFF">
<td height="25"> <div align="center">
<input type=checkbox name=chkall value=on onclick="CheckAll(this.form)">
</div></td>
<td height="25" colspan="6">
<?=$returnpage?>
<input type="submit" name="Submit2" value="刪除選中"> </td>
</tr>
</form>
</table>
</body>
</html>
<?
db_close();
$empire=null;
?>