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
<?php
 
class pay_controller extends user{
    function index_action(){//充值
        $orderM        =    $this->MODEL('companyorder');
    
        $nopayorder    =    $orderM->getCompanyOrderNum(array('uid'=>$this->uid,'usertype' => $this->usertype, 'order_state'=>1));
        
        $this -> yunset('nopayorder',$nopayorder);
        $this -> public_action();
        $arr        =   $this->MODEL('cache')->GetCache(array('integralclass'));
 
        $fkey       =   0;
        $class_price=   array();
        foreach ($arr['integralclass_index'] as $k => $v) {
            $arr['integralclass_index'][$k]['val']  =   (int)$v;
            $discount               =   100;
            if ($arr['integralclass_discount'][$v] > 0) {
                $discount           =   $arr['integralclass_discount'][$v];
            }
            $class_price[$v]        =   round($arr['integralclass_name'][$v] / $this->config['integral_proportion'] * $discount / 100, 2);
            $num    =   (int)$arr['integralclass_name'][$v];
            if ($num >= $this->config['integral_min_recharge']) {
                if ($fkey == 0) {
                    $fkey   =   $k + 1;
                }
            }
        }
        if ($fkey != 0) {
 
            $arr['first']           =   $arr['integralclass_index'][$fkey - 1];
            $arr['firstprice']      =   $class_price[$arr['integralclass_index'][$fkey - 1]];
            $arr['firstjf']         =   $arr['integralclass_name'][$arr['integralclass_index'][$fkey - 1]];
        }
        $this->yunset($arr);
        $this -> user_tpl('pay');
    }
    
    //生成订单
    function dingdan_action(){
        $orderM                   =  $this->MODEL('companyorder');
    
        $data['price_int']       =  intval($_POST['price_int']);
        $data['integralid']       =  intval($_POST['integralid']);
        $data['order_remark']  =  $_POST['remark'];
        $data['uid']           =  $this->uid;
        $data['did']           =  $this->userdid;
        $data['usertype']       =  $this->usertype;
 
        $return                   =  $orderM->addComOrder($data);
        
        $this->ACT_layer_msg($return['msg'], $return['errcode'], $return['url']);
    }
}
?>