| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247 |
- <?php
- global $_GPC, $_W;
- // $action = 'ad';
- // $title = $this->actions_titles[$action];
- $GLOBALS['frames'] = $this->getMainMenu();
- $operation = !empty($_GPC['op']) ? $_GPC['op'] : 'display';
- $type=isset($_GPC['type'])?$_GPC['type']:'all';
- $status=$_GPC['status'];
- load()->func('tpl');
- $pageindex = max(1, intval($_GPC['page']));
- $pagesize=10;
- $where=' WHERE uniacid=:uniacid and is_delete=0 ';
- if($_GPC['keywords']){
- $where.=" and (seller_name LIKE concat('%', :order_no,'%') or name LIKE concat('%', :order_no,'%') or tel LIKE concat('%', :order_no,'%'))";
- $data[':order_no']=$_GPC['keywords'];
- }
- if($type!='all'){
- if ($type == 'overdue') {
- $where.= " and is_out_time = 1";
- } else {
- $where.= " and status = $status";
- }
- }
- if(!empty($_GPC['time'])){
- $start=strtotime($_GPC['time']['start']);
- $end=strtotime($_GPC['time']['end']);
- $where.=" and time >={$start} and time<={$end}";
- }
- $sql="SELECT * FROM ".tablename('zh_jdgjb_order') .$where." ORDER BY id DESC";
- $data[':uniacid']=$_W['uniacid'];
- $total=pdo_fetchcolumn("SELECT count(*) FROM ".tablename('zh_jdgjb_order') .$where,$data);
- $select_sql =$sql." LIMIT " .($pageindex - 1) * $pagesize.",".$pagesize;
- $list=pdo_fetchall($select_sql,$data);
- foreach($list as $key=>$val){
- $list[$key]['count']=pdo_fetchcolumn("SELECT count(*) FROM ".tablename('zh_jdgjb_order') .$where.' and id<='.$val['id'].' and user_id='.$val['user_id'] ,$data)?:0;
- }
- //var_dump($list);die;
- $pager = pagination($total, $pageindex, $pagesize);
- if($operation=='delete'){
- $res=pdo_update('zh_jdgjb_order',array('is_delete'=>1),array('id'=>$_GPC['id']));
- if($res){
- message('删除成功',$this->createWebUrl('order',array()),'success');
- }else{
- message('删除失败','','error');
- }
- }
- if($operation=='rz'){
- $res=pdo_update('zh_jdgjb_order',array('status'=>5),array('id'=>$_GPC['id']));
- if($res){
- $type=pdo_get('zh_jdgjb_system',array('uniacid'=>$_W['uniacid']),array('open_member','is_score'));
- $order=pdo_get('zh_jdgjb_order',array('id'=>$_GPC['id']));
- if($type['open_member']==1){
- //获取用户消费金额
- $userInfo=pdo_get('zh_jdgjb_user',array('id'=>$order['user_id']),array('level_id','dj_money'));
- $xf_money=$userInfo['dj_money']+$order['dis_cost'];
- $members=pdo_getall('zh_jdgjb_level',array('uniacid'=>$_W['uniacid'],'id >'=>$userInfo['level_id']),array() , '' , 'value DESC');
- $level_id= $this->getLevel($members,$xf_money);
- pdo_update('zh_jdgjb_user',array('dj_money +='=>$order['dis_cost']),array('id'=>$order['user_id']));
- }
- if($type['is_score']==1){
- $score=$this->getScore($_GPC['id']);
- $rst=$this->saveScore($_GPC['id'],$order['user_id'],$score);
- if($rst){
- pdo_update('zh_jdgjb_user',array('score +='=>$score),array('id'=>$order['user_id']));
- }
- }
- $this->rzMessage($_GPC['id']);
- if($level_id){
- //更改会员等级
- $level=pdo_get('zh_jdgjb_level',array('id'=>$level_id),array('value'));
- pdo_update('zh_jdgjb_user',array('level_id'=>$level_id,'type'=>2,'dj_money -='=>$level['value']),array('id'=>$order['user_id']));
- //echo $level_id;
- }
- if($order['type']==3){
- $this->roomNum($_GPC['id']);
- }
- //更改拥金
- pdo_update('zh_jdgjb_earnings',array('state'=>2),array('order_id'=>$_GPC['id']));
- message('操作成功',$this->createWebUrl('order',array()),'success');
- }else{
- message('操作失败','','error');
- }
- }
- if($operation=='jjrz'){
- $orderInfo=pdo_get('zh_jdgjb_order',array('id'=>$_GPC['order_id']));
- $this->jjrzMessage($_GPC['order_id']);
- if($orderInfo['type']==1){
- $result=$this->wxrefund($_GPC['order_id']);
- if ($result['result_code'] == 'SUCCESS') {//退款成功
- //更改订单操作
- pdo_update('zh_jdgjb_order',array('status'=>9,'jj_time'=>time()),array('id'=>$_GPC['order_id']));
- $order=pdo_get('zh_jdgjb_order',array('id'=>$_GPC['order_id']));
- //修改房间数量
- $dt_start = strtotime(substr($order['arrival_time'],0,10));
- $dt_end = strtotime(substr($order['departure_time'],0,10));
- while ($dt_start<$dt_end){
- $dateday=$dt_start;
- $res=pdo_get('zh_jdgjb_roomnum',array('rid'=>$order['room_id'],'dateday'=>$dateday));
- if($res['id']){
- $nums=$res['nums']+$order['num'];
- pdo_update('zh_jdgjb_roomnum',array('nums'=>$nums),array('rid'=>$order['room_id'],'dateday'=>$dateday));
- }
- $dt_start = strtotime('+1 day',$dt_start);
- }
- pdo_update('zh_jdgjb_earnings',array('state'=>3),array('order_id'=>$_GPC['order_id']));
- message('拒绝入住成功',$this->createWebUrl('order',array()),'success');
- }else{
- message($result['err_code_des'],'','error');
- }
- }
- //余额支付
- if($orderInfo['type']==2){
- $result=$this->saveRecharge($_GPC['order_id']);
- if($result==1){
- pdo_update('zh_jdgjb_order',array('status'=>9,'jj_time'=>time()),array('id'=>$_GPC['order_id']));
- pdo_update('zh_jdgjb_user',array('balance +='=>$orderInfo['total_cost']),array('id'=>$orderInfo['user_id']));
- message('拒绝入住成功',$this->createWebUrl('order',array()),'success');
- }
- }
- //到店付款
- if($orderInfo['type']==3){
- pdo_update('zh_jdgjb_order',array('status'=>9,'jj_time'=>time()),array('id'=>$_GPC['order_id']));
- message('拒绝入住成功',$this->createWebUrl('order',array()),'success');
- }
- }
- if($operation=='refund'){
- $orderInfo=pdo_get('zh_jdgjb_order',array('id'=>$_GPC['order_id']));
- if($orderInfo['type']==1){
- $result=$this->wxrefund($_GPC['order_id']);
- if ($result['result_code'] == 'SUCCESS') {//退款成功
- //更改订单操作
- pdo_update('zh_jdgjb_order',array('status'=>7),array('id'=>$_GPC['order_id']));
- $order=pdo_get('zh_jdgjb_order',array('id'=>$_GPC['order_id']));
- //修改房间数量
- $dt_start = strtotime(substr($order['arrival_time'],0,10));
- $dt_end = strtotime(substr($order['departure_time'],0,10));
- while ($dt_start<$dt_end){
- $dateday=$dt_start;
- $res=pdo_get('zh_jdgjb_roomnum',array('rid'=>$order['room_id'],'dateday'=>$dateday));
- if($res['id']){
- $nums=$res['nums']+$order['num'];
- pdo_update('zh_jdgjb_roomnum',array('nums'=>$nums),array('rid'=>$order['room_id'],'dateday'=>$dateday));
- }
- $dt_start = strtotime('+1 day',$dt_start);
- }
- pdo_update('zh_jdgjb_earnings',array('state'=>3),array('order_id'=>$_GPC['order_id']));
- message('退款成功',$this->createWebUrl('order',array()),'success');
- }else{
- message($result['err_code_des'],'','error');
- }
- }
- //余额支付
- if($orderInfo['type']==2){
- $result=$this->saveRecharge($_GPC['order_id']);
- if($result==1){
- pdo_update('zh_jdgjb_order',array('status'=>7),array('id'=>$_GPC['order_id']));
- pdo_update('zh_jdgjb_user',array('balance +='=>$orderInfo['total_cost']),array('id'=>$orderInfo['user_id']));
- message('退款成功',$this->createWebUrl('order',array()),'success');
- }
- }
- }
- if($operation=='reject'){
- $res=pdo_update('zh_jdgjb_order',array('status'=>8),array('id'=>$_GPC['order_id']));
- if($res){
- //更改拥金
- pdo_update('zh_jdgjb_earnings',array('state'=>2),array('order_id'=>$_GPC['order_id']));
- message('拒绝成功',$this->createWebUrl('order',array()),'success');
- }else{
- message('拒绝失败','','error');
- }
- }
- if($operation=='close'){
- $res=pdo_update('zh_jdgjb_order',array('voice'=>2),array('id'=>$_GPC['order_id']));
- if($res){
- message('操作成功',$this->createWebUrl('order',array()),'success');
- }else{
- message('操作失败','','error');
- }
- }
- if($operation=='complete'){
- $res=pdo_update('zh_jdgjb_order',array('status'=>4),array('id'=>$_GPC['order_id']));
- if($res){
- message('操作成功',$this->createWebUrl('order',array()),'success');
- }else{
- message('操作失败','','error');
- }
- }
- if($operation=='query'){
- $res=pdo_update('zh_jdgjb_order',array('status'=>10),array('id'=>$_GPC['order_id']));
- if($res){
- $this->queryOrderMessage($_GPC['order_id']);
- message('确认成功',$this->createWebUrl('order',array()),'success');
- }else{
- message('确认失败','','error');
- }
- }
- if($operation=='jjorder'){
- $orderInfo=pdo_get('zh_jdgjb_order',array('id'=>$_GPC['order_id']));
- $this->rejectOrderMessage($_GPC['order_id']);
- if($orderInfo['type']==1){
- $result=$this->wxrefund($_GPC['order_id']);
- if ($result['result_code'] == 'SUCCESS') {//退款成功
- //更改订单操作
- pdo_update('zh_jdgjb_order',array('status'=>9,'jj_time'=>time()),array('id'=>$_GPC['order_id']));
- $order=pdo_get('zh_jdgjb_order',array('id'=>$_GPC['order_id']));
- //修改房间数量
- $dt_start = strtotime(substr($order['arrival_time'],0,10));
- $dt_end = strtotime(substr($order['departure_time'],0,10));
- while ($dt_start<$dt_end){
- $dateday=$dt_start;
- $res=pdo_get('zh_jdgjb_roomnum',array('rid'=>$order['room_id'],'dateday'=>$dateday));
- if($res['id']){
- $nums=$res['nums']+$order['num'];
- pdo_update('zh_jdgjb_roomnum',array('nums'=>$nums),array('rid'=>$order['room_id'],'dateday'=>$dateday));
- }
- $dt_start = strtotime('+1 day',$dt_start);
- }
- pdo_update('zh_jdgjb_earnings',array('state'=>3),array('order_id'=>$_GPC['order_id']));
- message('拒绝成功',$this->createWebUrl('order',array()),'success');
- }else{
- message($result['err_code_des'],'','error');
- }
- }
- //余额支付
- if($orderInfo['type']==2){
- $result=$this->saveRecharge($_GPC['order_id']);
- if($result==1){
- pdo_update('zh_jdgjb_order',array('status'=>9,'jj_time'=>time()),array('id'=>$_GPC['order_id']));
- pdo_update('zh_jdgjb_user',array('balance +='=>$orderInfo['total_cost']),array('id'=>$orderInfo['user_id']));
- message('拒绝成功',$this->createWebUrl('order',array()),'success');
- }
- }
- //到店付款
- if($orderInfo['type']==3){
- pdo_update('zh_jdgjb_order',array('status'=>9,'jj_time'=>time()),array('id'=>$_GPC['order_id']));
- message('拒绝成功',$this->createWebUrl('order',array()),'success');
-
- }
- }
- include $this->template('web/order');
|