public_action(); $JobM = $this->MODEL('job'); $ResumeM= $this->MODEL('resume'); $CacheM = $this->MODEL('cache'); $cache = $CacheM->GetCache(array('user', 'uptime')); $this->yunset($cache); $where = array( 'com_id' => $this->uid, 'type' => array('<>', 3), 'isdel' => 9 ); if ($_GET['jobid']) { $jobid = @explode('-', $_GET['jobid']); $jobid['1'] = !array_key_exists('1', $jobid) ? 1 : $jobid['1']; $where['job_id'] = $jobid['0']; $where['type'] = $jobid['1']; $urlarr['jobid'] = $_GET['jobid']; } // 查询简历eid if ($_GET['resumetype'] || $_GET['exp'] || $_GET['edu'] || $_GET['sex'] || $_GET['uptime'] || $_GET['keyword']) { $sqJob = $JobM->getSqJobList($where, array('field' => 'eid')); if (!empty($sqJob) && is_array($sqJob)) { $sqEid = array(); foreach ($sqJob as $v) { $sqEid[] = $v['eid']; } } if ($_GET['resumetype']) { $resumeType = intval($_GET['resumetype']); $rWhere['height_status']= $resumeType == 2 ? 2 : 0; $urlarr['resumetype'] = $resumeType; } if ($_GET['exp']) { $resumeExp = intval($_GET['exp']); $rWhere['exp'] = $resumeExp; $urlarr['exp'] = $resumeExp; } if ($_GET['edu']) { $resumeEdu = intval($_GET['edu']); $rWhere['edu'] = $resumeEdu; $urlarr['edu'] = $resumeEdu; } if ($_GET['sex']) { $resumeSex = intval($_GET['sex']); $rWhere['sex'] = $resumeSex; $urlarr['sex'] = $resumeSex; } if (isset($_GET['uptime'])&&$_GET['uptime']) { $resumeUptime = intval($_GET['uptime']); if ($resumeUptime == 1) { $rWhere['lastupdate'] = array('>', strtotime('today')); } else { $rWhere['lastupdate'] = array('>', strtotime('-' . $resumeUptime . ' day')); } $urlarr['uptime'] = $resumeUptime; } if (!empty($rWhere)) { $rWhere['id'] = array('in', pylode(',', $sqEid)); $rWhere['r_status'] = 1; $resumeA = $ResumeM->getList($rWhere, array('field' => '`id`')); $resumeList = $resumeA['list']; if (!empty($resumeList) && is_array($resumeList)) { $reid = array(); foreach ($resumeList as $v) { $reid[] = $v['id']; } } $where['eid'] = array('in', pylode(',', $reid)); } } if (trim($_GET['keyword'])) { $resume = $ResumeM->getResumeList(array('name' => array('like', trim($_GET['keyword'])), 'r_status' => 1), array('field' => "`uid`")); if (!empty($resume) && is_array($resume)) { $uid = array(); foreach ($resume as $v) { $uid[] = $v['uid']; } } $where['uid'] = array('in', pylode(',', $uid)); $urlarr['keyword'] = trim($_GET['keyword']); } if ($_GET['state']) { $where['is_browse'] = intval($_GET['state']); $urlarr['state'] = $_GET['state']; } if (isset($_GET['rstate']) && $_GET['rstate']!='') { $where['resume_state'] = intval($_GET['rstate']); $urlarr['rstate'] = $_GET['rstate']; } //分页链接 $urlarr['c'] = $_GET['c']; $urlarr['page'] = '{{page}}'; $pageurl = Url('member', $urlarr); //提取分页 $pageM = $this->MODEL('page'); $pages = $pageM->pageList('userid_job', $where, $pageurl, $_GET['page']); if ($pages['total'] > 0) { if ($_GET['order']) { $where['orderby'] = $_GET['t'] . ',' . $_GET['order']; $urlarr['order'] = $_GET['order']; $urlarr['t'] = $_GET['t']; } else { $where['orderby'] = array('datetime,desc', 'is_browse,asc'); } $where['limit'] = $pages['limit']; $rows = $JobM->getSqJobList($where, array('uid' => $this->uid, 'usertype' => $this->usertype, 'is_link' => 'yes')); // s_num 申请状态数目 foreach ($rows as $k => $v) { if ($v['islink'] == 1 || in_array($statis['rating'], @explode(',', $this->config['com_look']))) { $rows[$k]['name'] = $v['username_n']; } unset($rows[$k]['username_n']); // 统计投递简历各种状态数量 if ($v['type'] != 3){ if ($v['is_browse'] == 1){ $dclNum++; }elseif ($v['is_browse'] == 2){ $yckNum++; }elseif ($v['is_browse'] == 3){ $bhsNum++; }elseif ($v['is_browse'] == 4){ $wjtNum++; }elseif ($v['is_browse'] == 5){ $dtzNum++; } } } } $uid = $this->uid; //招聘职位:猎头职位和普通职位 $LtJobM = $this->MODEL('lietoujob'); $ltjob = $LtJobM->getList(array('uid' => $uid), array('field' => '`id`,`job_name` as `name`')); foreach ($ltjob as $key => $val) { $ltjob[$key]['type'] = 2; } $jobArr = $JobM -> getList(array('uid' => $this->uid), array('field' => '`id`,`name`')); $job = $jobArr['list']; foreach ($job as $key => $val) { $job[$key]['type'] = 1; } $JobList= array_merge($ltjob, $job); if ($JobList && is_array($JobList) && $jobid['0']) { foreach ($JobList as $val) { if ($jobid['0'] == $val['id'] && $jobid['1'] == $val['type']) { $current = $val; } } } // 查询所有收到的简历,用于统计数量 $dclNum = $yckNum = $bhsNum = $wjtNum = $dtzNum = 0; $allrows = $JobM->getSqJobList(array('com_id'=>$this->uid,'type'=>array('<>', 3), 'isdel' => 9), array('uid'=>$this->uid, 'usertype'=>$this->usertype,'utype'=>'simple')); foreach ($allrows as $v) { // 统计投递简历各种状态数量 if ($v['is_browse'] == 1) { $dclNum++; } elseif ($v['is_browse'] == 2) { $yckNum++; } elseif ($v['is_browse'] == 3) { $dtzNum++; } elseif ($v['is_browse'] == 4) { $bhsNum++; } elseif ($v['is_browse'] == 5) { $wjtNum++; } } $this->yunset(array('current' => $current, 'rows' => $rows, 'JobList' => $JobList, 'StateList' => array(array('id' => 1, 'name' => '待处理', 'num' => $dclNum), array('id' => 2, 'name' => '已查看', 'num' => $yckNum), array('id' => 3, 'name' => '等通知', 'num' => $dtzNum), array('id' => 4, 'name' => '不合适', 'num' => $bhsNum), array('id' => 5, 'name' => '未接通', 'num' => $wjtNum)))); $resumestate = array( array('name'=>'已审核','val'=>1), array('name'=>'未审核','val'=>0), array('name'=>'未通过','val'=>3) ); $this->yunset('resumestate',$resumestate); $this->yunset('com_look', @explode(',', $this->config['com_look'])); //邀请面试选择职位 $this->yqmsInfo(); $this->com_tpl('hr'); } //标记 function hrset_action() { if ($_POST['ajax'] == 1 && $_POST['ids']) { //批量阅读 $JobM = $this->MODEL('job'); $arr = $JobM->ReadSqJob($_POST['ids'], array('uid' => $this->uid, 'usertype' => $this->usertype)); echo json_encode($arr);die; } else if ($_POST['delid'] || $_GET['delid']) { //删除 $JobM = $this->MODEL('job'); if (is_array($_POST['delid'])) { $id = $_POST['delid']; } else { $id = intval($_GET['delid']); } $arr = $JobM->delSqJob($id, array('utype' => 'com', 'uid' => $this->uid, 'usertype' => $this->usertype)); $this->layer_msg($arr['msg'], $arr['errcode'], $arr['layertype'], $_SERVER['HTTP_REFERER']); } else if ($_POST['browse']) { //简历状态设置 $JobM = $this->MODEL('job'); $id = intval($_POST['id']); $data = array('uid' => $this->uid, 'usertype' => $this->usertype, 'username' => $this->username, 'browse' => intval($_POST['browse']), 'port' => '1'); $arr = $JobM->BrowseSqJob($id, $data); echo $arr;die; } } //备注 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 -> RemarkHr($data); $this -> ACT_layer_msg($return['msg'],$return['errcode'],$_SERVER['HTTP_REFERER']); } //简历详情 function resumeInfo_action(){ if ($_GET['eid']){ $id = $_GET['eid']; $this->yunset("eid", $id); // 企业登录时,获取企业的职位列表 if ($this->usertype == 2) { $JobM = $this->MODEL('job'); $uid = $this->uid; $jobWhere = array('uid' => $uid, 'state' => 1, 'r_status' => 1, 'status' => 0); $jobList = $JobM -> getList($jobWhere, array('link' => 'yes', 'field' => '`com_name`, `name`, `id`, `is_link`, `link_type`, `uid`')); $company_job = array(); if (! empty($jobList['list'])) { $company_job = $jobList['list']; } $this->yunset('company_job', $company_job); //邀请模板 $yqmbM = $this->MODEL('yqmb'); $ymlist = $yqmbM ->getList(array('uid'=>$uid,'status'=>1)); $ymnum = $yqmbM ->getNum(array('uid'=>$uid)); $ymcan = $ymnum<$this->config['com_yqmb_num'] ? true : false; $this->yunset('ymlist', $ymlist); $this->yunset('ymcan', $ymcan); } $resumeM = $this->MODEL('resume'); $resume_expect = $resumeM->getInfoByEid(array('eid' => $id, 'uid' => $this->uid, 'usertype' => $this->usertype,'spid' => $this->spid)); if (empty($resume_expect)) { $this->ACT_msg($this->config['sy_weburl']. '/member/index.php?c=hr', '没有找到该人才!'); } $this->yunset('Info', $resume_expect); // 已邀请面试数量 if (!empty($resume_expect) && !empty($this->uid)) { $usermsgnum = $JobM -> getYqmsNum(array('fid'=>$this->uid,'uid'=>$resume_expect['uid'],'isdel'=>9)); $this->yunset('usermsgnum', $usermsgnum); } //是否查看过 $cData['uid'] = $this->uid; $cData['usertype'] = $this->usertype; $cData['eid'] = $resume_expect['id']; $cData['ruid'] = $resume_expect['uid']; $resumeCkeck = $resumeM->openResumeCheck($cData); $this->yunset('resumeCkeck', $resumeCkeck); /* 模糊字段 */ $this->yunset('tj', $resume_expect['tj']); $this->yunset(array('resumestyle' => $this->config['sy_weburl'].'/app/template/resume')); $statisM = $this->MODEL('statis'); if (in_array($this->usertype, array(2))) { $category = intval($this->usertype) - 1; // 会员等级 增值包 套餐 $ratingM = $this->MODEL('rating'); $ratingList = $ratingM->getList(array('display' => 1, 'orderby' => array('type,asc', 'sort,desc'))); $rating_1 = $rating_2 = $raV = array(); if (!empty($ratingList)) { foreach ($ratingList as $ratingV) { $raV[$ratingV['id']] = $ratingV; if ($ratingV['category'] == $category && $ratingV['service_price'] > 0) { if ($ratingV['type'] == 1) { $rating_1[] = $ratingV; } elseif ($ratingV['type'] == 2) { $rating_2[] = $ratingV; } } } } $this->yunset('rating_1', $rating_1); $this->yunset('rating_2', $rating_2); $statis = $statisM->getInfo($this->uid, array('usertype' => $this->usertype)); if (! empty($statis)) { $discount = isset($raV[$statis['rating']]) ? $raV[$statis['rating']] : array(); $this->yunset('discount', $discount); $this->yunset('statis', $statis); } if ($this->usertype == 2) { $add = $ratingM->getComSerDetailList(array('orderby' => array('type,asc', 'sort,desc')), array('pack' => '1')); } $this->yunset('add', $add); $couponM = $this->MODEL('coupon'); $couponList = $couponM->getCouponList(array('uid' => $this->uid, 'status' => 1, 'validity' => array('>', time()), 'orderby'=>array('coupon_amount,asc','coupon_scope,asc'))); $this->yunset('couponList', $couponList); if (!isVip($statis['vip_etime'])) { $this->yunset('vipIsDown', 1); // 会员过期 } } $cacheM = $this->MODEL('cache'); $options = array('user'); $cache = $cacheM -> GetCache($options); $this -> yunset($cache); $this->com_tpl('hr_resume'); }else{ $this->ACT_msg($this->config['sy_weburl'] . '/member/index.php?c=hr', '参数错误!'); } } } ?>