chengkun
2025-05-23 a6f7b382623096b6a00924f418447cf5204e825e
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
<?php
 
class paylog_controller extends lietou{
    function index_action(){
        include(CONFIG_PATH."db.data.php");
        $this->public_action();
        
        $orderM                    =    $this->MODEL('companyorder');
        
        $where['uid']            =    $this->uid;
        $where['usertype']        =    $this->usertype;
        $where['order_price']    =    array('>',0);
        
        //分页链接
        $urlarr['page']    =    '{{page}}';
        $urlarr['c']    =    "paylog";
        $pageurl        =    Url('member',$urlarr);
        
        //提取分页
        $pageM            =    $this  -> MODEL('page');
        $pages            =    $pageM -> pageList('company_order',$where,$pageurl,$_GET['page']);
        
        //分页数大于0的情况下 执行列表查询
        if($pages['total'] > 0){
            
            $where['orderby']    =    'id,desc';
            $where['limit']        =    $pages['limit'];
            
            $List                =    $orderM->getList($where, array('utype'=>'lietou'));
            
            $this->yunset("rows",$List);
        }
        
        $this->lietou_tpl('paylog');
    }
    
    function del_action(){
        $orderM        =    $this->MODEL('companyorder');
        $invoiceM    =    $this->MODEL('invoice');
        $logM        =    $this->MODEL('log');
        
        if($this->usertype!='3' || $this->uid==''){
            
            $this->layer_msg('非法操作!',8,0,$_SERVER['HTTP_REFERER']);
            
        }else{
            
            $oid    =    $orderM->del((int)$_GET['id']);
            
            $return    =    $invoiceM->del('',array('oid'=>(int)$_GET['id'],'uid'=>$this->uid));
            
            if($oid){
                $logM->member_log("取消订单",88,3);
                
                $this->layer_msg('取消成功!',9,0,$_SERVER['HTTP_REFERER']);
            }else{
                
                $this->layer_msg('取消失败!',8,0,$_SERVER['HTTP_REFERER']);
            }
        }
    }
}
?>