gettotal("select count(*) as total from {$dbtbpre}enewscard where card_no='$add[card_no]' limit 1"); if($num) {printerror("ReCard","history.go(-1)");} $cardtime=date("Y-m-d H:i:s"); $add[cardfen]=(int)$add[cardfen]; $add[money]=(int)$add[money]; $add[carddate]=(int)$add[carddate]; $add[cdgroupid]=(int)$add[cdgroupid]; $add[cdzgroupid]=(int)$add[cdzgroupid]; $add['card_no']=hRepPostStr($add['card_no'],1); $add['password']=hRepPostStr($add['password'],1); $add['endtime']=hRepPostStr($add['endtime'],1); $sql=$empire->query("insert into {$dbtbpre}enewscard(card_no,password,cardfen,money,cardtime,endtime,carddate,cdgroupid,cdzgroupid) values('$add[card_no]','$add[password]',$add[cardfen],$add[money],'$cardtime','$add[endtime]',$add[carddate],$add[cdgroupid],$add[cdzgroupid]);"); $cardid=$empire->lastid(); if($sql) { //操作日志 insert_dolog("cardid=$cardid&card_no=$add[card_no]&cardfen=$add[cardfen]&carddate=$add[carddate]"); printerror("AddCardSuccess","AddCard.php?enews=AddCard".hReturnEcmsHashStrHref2(0)); } else {printerror("DbError","history.go(-1)");} } //批量增加点卡 function AddMoreCard($add,$userid,$username){ global $empire,$dbtbpre; $donum=(int)$add['donum']; $cardnum=(int)$add['cardnum']; $passnum=(int)$add['passnum']; $add[cardfen]=(int)$add[cardfen]; $add[money]=(int)$add[money]; $add[carddate]=(int)$add[carddate]; $add[cdgroupid]=(int)$add[cdgroupid]; $add[cdzgroupid]=(int)$add[cdzgroupid]; $add['endtime']=hRepPostStr($add['endtime'],1); if(!$donum||!$cardnum||!$passnum||!$add[money]) {printerror("EmptyMoreCard","history.go(-1)");} //验证权限 CheckLevel($userid,$username,$classid,"card"); $cardtime=date("Y-m-d H:i:s"); //写入卡号 $no=1; while($no<=$donum) { $card_no=strtolower(no_make_password($cardnum)); $password=strtolower(no_make_password($passnum)); $num=$empire->gettotal("select count(*) as total from {$dbtbpre}enewscard where card_no='$card_no' limit 1"); if(!$num) { $sql=$empire->query("insert into {$dbtbpre}enewscard(card_no,password,cardfen,money,cardtime,endtime,carddate,cdgroupid,cdzgroupid) values('$card_no','$password',$add[cardfen],$add[money],'$cardtime','$add[endtime]',$add[carddate],$add[cdgroupid],$add[cdzgroupid]);"); $no+=1; } } if($sql) { //操作日志 insert_dolog("cardnum=$donum&cardfen=$add[cardfen]&carddate=$add[carddate]"); printerror("AddMoreCardSuccess","AddMoreCard.php".hReturnEcmsHashStrHref2(1)); } else {printerror("DbError","history.go(-1)");} } //修改点卡 function EditCard($add,$userid,$username){ global $empire,$time,$dbtbpre; $add[cardid]=(int)$add[cardid]; if(!$add[card_no]||!$add[password]||!$add[money]||!$add[cardid]) {printerror("EmptyCard","history.go(-1)");} //验证权限 CheckLevel($userid,$username,$classid,"card"); $num=$empire->gettotal("select count(*) as total from {$dbtbpre}enewscard where card_no='$add[card_no]' and cardid<>".$add[cardid]." limit 1"); if($num) {printerror("ReCard","history.go(-1)");} $add[cardfen]=(int)$add[cardfen]; $add[money]=(int)$add[money]; $add[carddate]=(int)$add[carddate]; $add[cdgroupid]=(int)$add[cdgroupid]; $add[cdzgroupid]=(int)$add[cdzgroupid]; $add['card_no']=hRepPostStr($add['card_no'],1); $add['password']=hRepPostStr($add['password'],1); $add['endtime']=hRepPostStr($add['endtime'],1); $sql=$empire->query("update {$dbtbpre}enewscard set card_no='$add[card_no]',password='$add[password]',cardfen=$add[cardfen],money=$add[money],endtime='$add[endtime]',carddate=$add[carddate],cdgroupid=$add[cdgroupid],cdzgroupid=$add[cdzgroupid] where cardid='$add[cardid]'"); if($sql) { //操作日志 insert_dolog("cardid=$add[cardid]&card_no=$add[card_no]&cardfen=$add[cardfen]&carddate=$add[carddate]"); printerror("EditCardSuccess","ListCard.php?time=$time".hReturnEcmsHashStrHref2(0)); } else {printerror("DbError","history.go(-1)");} } //删除点卡 function DelCard($cardid,$userid,$username){ global $empire,$time,$dbtbpre; $cardid=(int)$cardid; if(!$cardid) {printerror("NotChangeCardid","history.go(-1)");} //验证权限 CheckLevel($userid,$username,$classid,"card"); $r=$empire->fetch1("select card_no,cardfen,carddate from {$dbtbpre}enewscard where cardid='$cardid'"); $sql=$empire->query("delete from {$dbtbpre}enewscard where cardid='$cardid'"); if($sql) { //操作日志 insert_dolog("cardid=$cardid&card_no=$r[card_no]&cardfen=$r[cardfen]&carddate=$r[carddate]"); printerror("DelCardSuccess","ListCard.php?time=$time".hReturnEcmsHashStrHref2(0)); } else {printerror("DbError","history.go(-1)");} } //批量删除点卡 function DelCard_all($add,$userid,$username){ global $empire,$time,$dbtbpre; $cardid=$add[cardid]; $count=count($cardid); if(!$count) { printerror("NotChangeCardid","history.go(-1)"); } //验证权限 CheckLevel($userid,$username,$classid,"card"); $ids=''; $dh=''; for($i=0;$i<$count;$i++) { $ids.=$dh.intval($cardid[$i]); $dh=','; } $sql=$empire->query("delete from {$dbtbpre}enewscard where cardid in (".$ids.")"); if($sql) { //操作日志 insert_dolog(""); printerror("DelCardSuccess","ListCard.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=="AddCard") { $add=$_POST['add']; AddCard($add,$logininid,$loginin); } //修改点卡 elseif($enews=="EditCard") { $time=(int)$_POST['time']; $add=$_POST['add']; EditCard($add,$logininid,$loginin); } //删除点卡 elseif($enews=="DelCard") { $time=(int)$_GET['time']; $cardid=$_GET['cardid']; DelCard($cardid,$logininid,$loginin); } elseif($enews=="AddMoreCard")//批量增加点卡 { $add=$_POST; AddMoreCard($add,$logininid,$loginin); } elseif($enews=="DelCard_all")//批量删除点卡 { DelCard_all($_POST,$logininid,$loginin); } $search=$ecms_hashur['ehref']; $time=$_GET['time']; if(empty($time)) {$time=$_POST['time'];} $time=RepPostStr($time,1); $page=(int)$_GET['page']; $page=RepPIntvar($page); $start=0; $line=25; $page_line=25; $add=""; //搜索 $sear=$_POST['sear']; if(empty($sear)) {$sear=$_GET['sear'];} $sear=RepPostStr($sear,1); if($sear) { $show=$_POST['show']; if(empty($show)) {$show=$_GET['show'];} $show=RepPostStr($show,1); $keyboard=$_POST['keyboard']; if(empty($keyboard)) {$keyboard=$_GET['keyboard'];} $keyboard=RepPostVar2($keyboard); if($show==1) {$add=" where card_no like '%$keyboard%'";} elseif($show==2) {$add=" where money='$keyboard'";} elseif($show==3) {$add=" where cardfen='$keyboard'";} else {$add=" where carddate='$keyboard'";} $search.="&sear=1&show=$show&keyboard=$keyboard"; } //过期 if($time) { $today=date("Y-m-d"); $search.="&time=$time"; if($add) {$add.=" and endtime<>'0000-00-00' and endtime<'$today'";} else {$add.=" where endtime<>'0000-00-00' and endtime<'$today'";} } $offset=$line*$page; $totalquery="select count(*) as total from {$dbtbpre}enewscard".$add; $num=$empire->gettotal($totalquery); $query="select cardid,card_no,password,cardfen,money,endtime,cardtime,carddate from {$dbtbpre}enewscard".$add; $query.=" order by cardid desc limit $offset,$line"; $sql=$empire->query($query); $returnpage=page2($num,$line,$page_line,$start,$page,$search); ?> 管理点卡
位置:管理点卡
     

搜索:
fetch($sql)) { ?>
ID
卡号
金额(元)
有效期
点数
操作
[修改] [删除]