|
@@ -66,9 +66,8 @@ class Collection extends Backend
|
|
|
{
|
|
|
$isset = $this->model->alias('z')
|
|
|
->join('real_exam r','z.exam_collection_id=r.exam_collection_id','left')
|
|
|
- ->where('z.exam_collection_type=3 and z.exam_collection_state=2 and r.endtime=0 and r.user_id='.$this->auth->id)->find();
|
|
|
+ ->where('z.exam_collection_type=3 and z.exam_collection_state=2 and r.endtime=0 and r.user_id='.$this->auth->id)->find();
|
|
|
|
|
|
-// halt($this->model->getLastSql());
|
|
|
if(empty($isset)){
|
|
|
//提示页面,没有开始的考试
|
|
|
return $this->view->fetch('tishi');
|
|
@@ -115,6 +114,12 @@ class Collection extends Backend
|
|
|
if(!$row){
|
|
|
$this->error('未找到记录');
|
|
|
}
|
|
|
+ //如果考试时间结束,也不可进入考试,超时未进入考试的学员
|
|
|
+// $duration = 10+$row->limit_duration;
|
|
|
+// $futureTimestamp = strtotime("+$duration minutes", $row->starttime);
|
|
|
+// if(time()>$futureTimestamp){
|
|
|
+// return $this->view->fetch('tishi');
|
|
|
+// }
|
|
|
$info = $this->exam_model->where(['user_id'=>$this->auth->id,'exam_collection_id'=>$ids,'exam_collection_type'=>3,'endtime'=>0])->find();
|
|
|
if(!empty($info)){
|
|
|
$this->exam_model->where('exam_id',$info['exam_id'])->update(['seat_id'=>$this->auth->seat_id,'sim_id'=>$this->auth->sim_id]);
|
|
@@ -172,13 +177,22 @@ class Collection extends Backend
|
|
|
$fault_one_score = 25;
|
|
|
$fault_two_score = 25;
|
|
|
$fault_three_score = 25;
|
|
|
+
|
|
|
$xianxian_score = 0;
|
|
|
$yuanyin_socre= 0;
|
|
|
$buwei_score= 0;
|
|
|
$fangfa_score= 0;
|
|
|
+
|
|
|
+ $xianxian_arr = [];
|
|
|
+ $yuanyin_arr = [];
|
|
|
+ $buwei_arr = [];
|
|
|
+ $fangfa_arr = [];
|
|
|
$jielun_score = 0;
|
|
|
+
|
|
|
+
|
|
|
Db::startTrans();
|
|
|
try {
|
|
|
+
|
|
|
//更新考试结束时间
|
|
|
$row->end_time = date('Y-m-d H:i:s');
|
|
|
$row->endtime = time();
|
|
@@ -188,6 +202,24 @@ class Collection extends Backend
|
|
|
|
|
|
$info = $this->exam_model->where(['exam_id'=>$ids])->find();
|
|
|
|
|
|
+
|
|
|
+ //更新故障是否正确
|
|
|
+// $fault_list = Db::name('real_exam_fault')->where(['exam_id'=>$ids,'flag'=>1])->select();
|
|
|
+// if(!empty($fault_list)){
|
|
|
+// foreach ($fault_list as $k =>$t){
|
|
|
+// $answer_right = 0;
|
|
|
+// if(!empty($t['sim_fault_question_value']) && !empty($t['sim_fault_answer_value'])){
|
|
|
+// if($t['sim_fault_question_value']==$t['sim_fault_answer_value']){
|
|
|
+// $answer_right=1;
|
|
|
+// }else{
|
|
|
+// $answer_right=2;
|
|
|
+// }
|
|
|
+// }
|
|
|
+// Db::name('real_exam_fault')->where(['ref_id'=>$t['ref_id']])->update(['answer_right'=>$answer_right]);
|
|
|
+// }
|
|
|
+// }
|
|
|
+
|
|
|
+
|
|
|
//计算得分,故障是否有扣分 扣分制
|
|
|
$fault_right_list = Db::name('real_exam_fault')->where(['exam_id'=>$ids,'flag'=>1,'answer_right'=>['>',0]])->select();
|
|
|
if(!empty($fault_right_list)){
|
|
@@ -200,12 +232,114 @@ class Collection extends Backend
|
|
|
if($fault_right_list[2]['answer_right']==1){
|
|
|
$fault_three_score = 0;
|
|
|
}
|
|
|
- }
|
|
|
- $xianxian_score = rand(1,3);
|
|
|
- $yuanyin_socre= rand(1,3);
|
|
|
- $buwei_score= rand(1,3);
|
|
|
- $fangfa_score= rand(1,3);
|
|
|
|
|
|
+ //根据故障部位,查找故障现象
|
|
|
+ $fault_arr = [$fault_right_list[0]['fault_id'],$fault_right_list[1]['fault_id'],$fault_right_list[2]['fault_id']];
|
|
|
+ $partent_fault_id = Fault::where(['fault_id'=>['in',$fault_arr]])->column('parent_fault_id');
|
|
|
+
|
|
|
+ //故障保存的是部位,需要查找故障现象
|
|
|
+ $report = json_decode($params['other_report'],true);
|
|
|
+ if(count($report)<3){
|
|
|
+ $xianxian_score = 5;
|
|
|
+ }else{
|
|
|
+ foreach ($report as $key => $em){
|
|
|
+// //故障现象
|
|
|
+ if(!in_array($em['xx_id'],$partent_fault_id)){
|
|
|
+ $xianxian_score = 5+$xianxian_score;
|
|
|
+ $xianxian_arr[] = $em['xx_id'];
|
|
|
+ }
|
|
|
+// echo $em['yy_id']."<br>";
|
|
|
+
|
|
|
+ //故障部位
|
|
|
+ if(!empty($em['bw_id'])){
|
|
|
+ $report = Report::where('bw_id',$em['bw_id'])->find();
|
|
|
+ if(empty($report) || $report['bw_type']==30){
|
|
|
+ $buwei_score = 1+$buwei_score;
|
|
|
+// array_push($buwei_arr,$em['bw_id']);
|
|
|
+ $buwei_arr[] = $em['bw_id'];
|
|
|
+// echo "这里是假的部位扣了+1分<br/>";
|
|
|
+ }
|
|
|
+// if(!empty($em['yy_id']) && !empty($report)){
|
|
|
+// if($report['bw_type']!=3 || $report['yy_id']!=$em['yy_id'] ){
|
|
|
+// $buwei_score = 1+$buwei_score;
|
|
|
+// echo "这里错误扣了+1分<br/>";
|
|
|
+// }
|
|
|
+// }
|
|
|
+
|
|
|
+ }else{
|
|
|
+ //部位为空 +1
|
|
|
+ $buwei_score = 1+ $buwei_score;
|
|
|
+// $buwei_arr[] = '';
|
|
|
+// array_push($buwei_arr,'');
|
|
|
+// echo "这里为空扣了+1分<br/>";
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ //可能原因
|
|
|
+ if(!empty($em['yy_id'])){
|
|
|
+ $report = Report::where('yy_id',$em['yy_id'])->find();
|
|
|
+ if(empty($report) || $report['bw_type']==30){
|
|
|
+ $yuanyin_socre = 1+ $yuanyin_socre;
|
|
|
+// echo "这里是假的部位扣了+1分<br/>";
|
|
|
+// array_push($yuanyin_arr,$em['yy_id']);
|
|
|
+ $yuanyin_arr[] = $em['yy_id'];
|
|
|
+ }
|
|
|
+ if(!empty($em['yy_id']) && !empty($report)){
|
|
|
+ if($report['bw_id']!=$em['bw_id'] ){
|
|
|
+ $yuanyin_socre = 1+$yuanyin_socre;
|
|
|
+// echo "这里错误扣了+1分<br/>";
|
|
|
+// array_push($yuanyin_arr,$em['yy_id']);
|
|
|
+ $yuanyin_arr[] = $em['yy_id'];
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }else{
|
|
|
+ //部位为空 +1
|
|
|
+ $yuanyin_socre = 1+$yuanyin_socre;
|
|
|
+// array_push($yuanyin_arr,'');
|
|
|
+// echo "这里为空扣了+1分<br/>";
|
|
|
+// $yuanyin_arr[] = '';
|
|
|
+ }
|
|
|
+ //排除方法
|
|
|
+ if(!empty($em['pc_id'])){
|
|
|
+ $report = Report::where('pc_id',$em['pc_id'])->find();
|
|
|
+ if(empty($report) || $report['bw_type']==30){
|
|
|
+ $fangfa_score = 1+ $fangfa_score;
|
|
|
+
|
|
|
+ $fangfa_arr[] = $em['pc_id'];
|
|
|
+// array_push($fangfa_arr,$em['pc_id']);
|
|
|
+// echo "这里是假的方法扣了+1分<br/>";
|
|
|
+ }
|
|
|
+ if(!empty($em['pc_id']) && !empty($report)){
|
|
|
+ if($report['bw_id']!=$em['bw_id'] ){
|
|
|
+ $fangfa_score = 1+$fangfa_score;
|
|
|
+ $fangfa_arr[] = $em['pc_id'];
|
|
|
+// array_push($fangfa_arr,$em['pc_id']);
|
|
|
+// echo "这里错误扣了+1分<br/>";
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }else{
|
|
|
+ $fangfa_score = 1+$fangfa_score;
|
|
|
+// array_push($yuanyin_arr,'');
|
|
|
+// $fangfa_arr[] = '';
|
|
|
+// echo "这里为空扣了+1分<br/>";
|
|
|
+ }
|
|
|
+ }
|
|
|
+// echo '部位:'.$buwei_score.'<br/>';
|
|
|
+// echo '原因:'.$yuanyin_socre.'<br/>';
|
|
|
+// echo '方法:'.$fangfa_score.'<br/>';
|
|
|
+ }
|
|
|
+ }
|
|
|
+// halt($yuanyin_arr);
|
|
|
+// echo '现象:'.$xianxian_score;
|
|
|
+// die();
|
|
|
+ $weixiu_score = $xianxian_score+$yuanyin_socre+$buwei_score+$fangfa_score;
|
|
|
+ if($weixiu_score>15){
|
|
|
+ $weixiu_score = 15;
|
|
|
+ }
|
|
|
+// $xianxian_score = rand(1,3);
|
|
|
+// $yuanyin_socre= rand(1,3);
|
|
|
+// $buwei_score= rand(1,3);
|
|
|
+// $fangfa_score= rand(1,3);
|
|
|
// if(empty($params['other_jielun'])){
|
|
|
// $jielun_score = rand(1,3);
|
|
|
// }
|
|
@@ -218,7 +352,7 @@ class Collection extends Backend
|
|
|
}else{
|
|
|
$overtime_score =0;
|
|
|
}
|
|
|
- $fault_score = $score-$fault_one_score-$fault_two_score-$fault_three_score-$xianxian_score-$yuanyin_socre-$buwei_score-$fangfa_score-$overtime_score;
|
|
|
+ $fault_score = $score-$fault_one_score-$fault_two_score-$fault_three_score-$weixiu_score-$overtime_score;
|
|
|
|
|
|
//更新考试结果表
|
|
|
$params['exam_id'] = $ids;
|
|
@@ -228,9 +362,13 @@ class Collection extends Backend
|
|
|
$params['fault_three_score'] = $fault_three_score;//得分;
|
|
|
|
|
|
$params['xianxian_score'] = $xianxian_score;//得分;
|
|
|
+ $params['xianxian_content'] = !empty($xianxian_arr) ? json_encode($xianxian_arr):'';//错题;
|
|
|
$params['yuanyin_socre'] = $yuanyin_socre;//得分;
|
|
|
+ $params['yuanyin_content'] = !empty($yuanyin_arr) ? json_encode($yuanyin_arr) : '';//错题;
|
|
|
$params['buwei_score'] = $buwei_score;//得分;
|
|
|
+ $params['buwei_content'] = !empty($buwei_arr) ? json_encode($buwei_arr) :'';//错题;
|
|
|
$params['fangfa_score'] = $fangfa_score;//得分;
|
|
|
+ $params['fangfa_content'] = !empty($fangfa_arr) ? json_encode($fangfa_arr):'';//错题;
|
|
|
// $params['jielun_score'] = $jielun_score;//得分;
|
|
|
$params['overtime_score'] = $overtime_score;//得分;
|
|
|
Db::name('real_exam_score')->insert($params);
|
|
@@ -254,7 +392,9 @@ class Collection extends Backend
|
|
|
$row->exam_status = 4;
|
|
|
$row->save();
|
|
|
}
|
|
|
+ $isloading =1;
|
|
|
if(empty($row->other_replace)){
|
|
|
+ $isloading = 0;
|
|
|
$row->other_replace = '[{"fault_id":"","request_status":"0"}]';
|
|
|
}
|
|
|
if(empty($row->other_report)){
|
|
@@ -266,13 +406,13 @@ class Collection extends Backend
|
|
|
if(empty($row->starttime)){
|
|
|
$timer = 60*$row->limit_duration;
|
|
|
}else{
|
|
|
- $fen = $row->limit_duration - intval((time()-$row->starttime) / 60);
|
|
|
- $timer = 60*$fen;
|
|
|
+ $timer = $row->limit_duration*60 - abs(time() - $row->starttime);
|
|
|
}
|
|
|
|
|
|
$row->replace_list =Db::name('real_exam_comp_request')->where(['exam_id'=>$ids])->select();
|
|
|
$this->assignConfig('ids',$ids);
|
|
|
$this->assignConfig('timer',$timer);
|
|
|
+ $this->assignConfig('isloading',$isloading);
|
|
|
$this->view->assign('row', $row);
|
|
|
|
|
|
$departmentdata = [];
|
|
@@ -302,6 +442,7 @@ class Collection extends Backend
|
|
|
{
|
|
|
if ($this->request->isPost()) {
|
|
|
$params = $this->request->post('other_replace','');
|
|
|
+ $other_report = $this->request->post('other_report','');
|
|
|
$param = json_decode($params,true);
|
|
|
if(!empty($param)){
|
|
|
foreach ($param as $key=>$item){
|
|
@@ -332,6 +473,7 @@ class Collection extends Backend
|
|
|
unset($item);
|
|
|
$row = $this->exam_model->get($ids);
|
|
|
$row-> other_replace = json_encode($faultid_arr);
|
|
|
+ $row-> other_report = $other_report;
|
|
|
$result = $row->save();
|
|
|
}
|
|
|
$this->success('申请成功,待老师审批');
|