<?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']);
|
}
|
}
|
?>
|