chengkun
2025-05-22 1a8aea45ebb1582c9f65d9e8dcd520002f83ae12
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
<?php
 
class talent_pool_controller extends company
{
    function index_action(){
        $this->public_action();
        $ResumeM                    =  $this -> MODEL('resume');
        $where['cuid']                =  $this -> uid;
        
        if(trim($_GET['keyword'])){
            $resume                    =  $ResumeM -> getSimpleList(array('uname'=>array('like',trim($_GET['keyword']))),array('field'=>'uid'));
            
            if ($resume){
                $uid    =   array();
                foreach($resume as $v){
                    if($v['uid'] && !in_array($v['uid'],$uid)){
                        $uid[]        =  $v['uid'];
                    }
                }
                $where['uid']        =  array('in',pylode(',', $uid));
            }
            $urlarr['keyword']        =    trim($_GET['keyword']);
        }
        $urlarr['c']    =    $_GET['c'];
        $urlarr['page']    =    '{{page}}';
        $pageurl        =    Url('member',$urlarr);
 
        $pageM            =    $this   ->  MODEL('page');
        $pages            =    $pageM  ->  pageList('talent_pool',$where,$pageurl,$_GET['page']);
        
        if($pages['total'] > 0){
            $where['orderby']        =    'id';
            $where['limit']            =    $pages['limit'];
            $List   =  $ResumeM -> getTalentList($where,array('uid'=>$this->uid,'isdown'=>1,'utype'=>'pc'));
        }
         //邀请面试选择职位
        $this->yqmsInfo();
        $this->yunset("rows",$List);
        $this->company_satic();
        $this->com_tpl('talent_pool');
    }
    function remark_action(){
        if (empty($_POST['remark'])){
            $this -> ACT_layer_msg('请填写备注内容', 8);
        }
        $ResumeM    =    $this->MODEL('resume');
        $data        =    array(
            'remark'    =>    $_POST['remark'],
            'id'        =>    $_POST['id'],
            'rname'        =>    $_POST['rname'],
            'uid'        =>    $this->uid,
            'usertype'    =>    $this->usertype
        );
        $return        =    $ResumeM -> RemarkTalent($data);
        $this -> ACT_layer_msg($return['msg'],$return['errcode'],$_SERVER['HTTP_REFERER']);
    }
 
    function del_action(){
        if ($_GET['id']){
            $id   =  intval($_GET['id']);
        }elseif ($_POST['delid']){
            $id   =  $_POST['delid'];
        }
        $ResumeM    =  $this->MODEL('resume');
        $return   =  $ResumeM -> delTalentPool($id,array('uid'=>$this->uid,'usertype'=>$this->usertype));
        $this -> layer_msg($return['msg'],$return['errcode'],$return['layertype'],$_SERVER['HTTP_REFERER']);
    }
}
?>