chengkun
2025-04-30 6ab292fb7415be124651e312ec4f21c594568f17
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
<?php
 
 
class child_controller extends company
{
 
    /**
     * @desc 子账号列表
     * 2019-06-28
     */
    public function index_action()
    {
        
        // 企业账号通用信息
        $this   ->  public_action();
        $this   ->  company_satic();
       
        $comaM          =   $this -> MODEL('companyaccount');
  
        $where          =   array('comid' => $this -> uid);
        
        $urlarr         =   array('c' => 'child', 'page' => '{{page}}');
 
        $pageurl        =   Url('member', $urlarr);
 
        $pageM          =   $this -> MODEL('page');
        
        $pages          =   $pageM -> pageList('company_account', $where, $pageurl, $_GET['page']);
        
        // 子账号列表
        if ($pages['total'] > 0) {
            
            $where['orderby']   =   'uid';
            $where['limit']     =   $pages['limit'];
            $rows               =   $comaM -> getWorkList($where);
        }
       
        $this -> yunset('totalNum', $pages['total']);
        $this -> yunset('rows', $rows);
        $this -> com_tpl('child');
    }
 
    /**
     * @desc 添加 修改子账号
     * 2019-06-28
     */
    public function editSave_action()
    {
        $_POST  =   $this -> post_trim($_POST);
        $rurl   =   'index.php?c=child';
 
        // 参数判断
        if (empty($this->uid)) {
            
            $this -> ACT_layer_msg('非法操作!', 8, $rurl);
        }
        if (empty($_POST['submit'])) {
            
            $this -> ACT_layer_msg('参数错误!', 8, $rurl);
        }
        
        $memberM    =   $this -> MODEL('userinfo');
        $cuid       =   intval($_POST['cuid']);
        
 
        unset($_POST['submit']);
        unset($_POST['cuid']);
        
        if (empty($cuid)) {
            
            $res    =   $memberM -> addChildInfo(array('uid' => $this->uid, 'cdata' => $_POST, 'paytype' => 'vip'));
        } else {
            
            $res    =   $memberM -> updChildInfo(array('uid' => $cuid), $_POST);
        }
 
        // 返回值
        if ($res['ecode'] == 9) {
            
            $this->ACT_layer_msg($res['msg'], 9, $rurl);
        } else {
            
            $this->ACT_layer_msg($res['msg'], 8);
        }
    }
 
    /**
     * 绑定 解绑子账号
     * 2019-06-28
     */
    public function del_action()
    {
        $_POST  =   $this -> post_trim($_POST);
 
        $comaM  =   $this -> MODEL('companyaccount');
 
        $res    =   $comaM -> delChild(array('pid' => $this->uid, 'uid' => $_POST['uid']));
 
        echo json_encode($res);
        
        die();
    }
 
    /**
     * 分配套餐,获取目前的套餐
     */
    public function getstatis_action()
    {
        $cuid   =   intval($_POST['uid']);
        
        if (empty($cuid)) {
            
            echo json_encode(array('ecode' => 8, 'msg' => '参数错误'));
            die();
        }
        $inids  =   $this->uid.','. $cuid;
 
        $statisM    =   $this -> MODEL('statis');
        $statisList =   $statisM -> getList(array('uid' => array('in', $inids)));
        
        if (empty($statisList)) {
            
            echo json_encode(array('ecode' => 8, 'msg' => '主账号套餐不存在'));
            die();
        }
 
        $fatherS    =   $sonS   =   array();
        
        foreach ($statisList as $sv) {
        
            if ($sv['uid'] == $this->uid) {
            
                $fatherS    =   $sv;
            } elseif ($sv['uid'] == $cuid) {
                
                $sonS       =   $sv;
            }
        }
        
        $res    = array('fathers' => $fatherS,'sons' => $sonS);
        
        echo json_encode(array('ecode' => 9, 'msg' => 'ok', 'data' => $res));
        die();
    }
 
    /**
     * 保存分配的套餐
     * 2019-07-01
     */
    public function assignsave_action()
    {
        $_POST  =   $this->post_trim($_POST);
        
        $rurl   =   'index.php?c=child';
 
        if (empty($this->uid)) {
            $this -> ACT_layer_msg('请重新登录!', 8, $rurl);
        }
 
        // 参数判断
        if (empty($_POST['submit'])) {
            
            $this -> ACT_layer_msg('参数错误!', 8, $rurl);
        }
        
        $cuid   =   intval($_POST['cuid']);
        
        if (empty($cuid)) {
            
            $this -> ACT_layer_msg('非法操作!', 8, $rurl);
        }
        
        unset($_POST['submit']);
        unset($_POST['cuid']);
 
        $_POST['uid']   =   $this->uid;
        $_POST['spid']  =   $cuid;
        
        $statisM        =   $this->MODEL('statis');
        $res            =   $statisM->assignChildStatis($_POST);
 
        // 返回值
        if ($res['ecode'] == 9) {
            
            $this->ACT_layer_msg($res['msg'], 9, $rurl);
        } else {
            
            $this->ACT_layer_msg($res['msg'], 8);
        }
    }
 
    /**
     * @desc 创建 / 激活 子账号判断
     */
    function checkStatis_action()
    {
        if (empty($this->uid)) {
            
            echo json_encode(array('ecode' => 8, 'msg' => '非法操作!'));
            die();
        }
 
        // 检查是否可以套餐足够
        $statisM    =   $this -> MODEL('statis');
        $res        =   $statisM -> getItemUseCondition(array('uid' => $this->uid, 'spid' => $_GET['spid'], 'item' => 'sons_num'));
              
        echo json_encode($res);
        die();
    }
}
?>