Practice.php 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498
  1. <?php
  2. namespace app\admin\controller\student;
  3. use app\admin\model\department\Department;
  4. use app\admin\model\Fault;
  5. use app\admin\model\Report;
  6. use app\common\controller\Backend;
  7. use app\common\model\Config as ConfigModel;
  8. use think\Db;
  9. use think\Env;
  10. use think\exception\PDOException;
  11. use think\exception\ValidateException;
  12. /**
  13. * sim-练习集合管理
  14. *
  15. * @icon fa fa-circle-o
  16. */
  17. class Practice extends Backend
  18. {
  19. /**
  20. * Collection模型对象
  21. * @var \app\admin\model\teacher\Collection
  22. */
  23. protected $model = null;
  24. protected $exam_model = null;
  25. protected $whereExtend = null;
  26. public function _initialize()
  27. {
  28. parent::_initialize();
  29. $this->model = new \app\admin\model\teacher\Collection;
  30. $this->exam_model = new \app\admin\model\teacher\Exams;
  31. $this->assignConfig('sim_sim_type', ConfigModel::getSimTypeList());
  32. $this->assignConfig('sim_question_setting_method', ConfigModel::getSimQuestionList());
  33. $this->whereExtend['exam_collection_type'] = 1;//练习
  34. $this->whereExtend['exam_collection_state'] = 2;
  35. }
  36. /**
  37. * 默认生成的控制器所继承的父类中有index/add/edit/del/multi五个基础方法、destroy/restore/recyclebin三个回收站方法
  38. * 因此在当前控制器中可不用编写增删改查的代码,除非需要自己控制这部分逻辑
  39. * 需要将application/admin/library/traits/Backend.php中对应的方法复制到当前控制器,然后进行修改
  40. */
  41. public function index()
  42. {
  43. $isset = $this->model->alias('z')
  44. ->join('real_exam r','z.exam_collection_id=r.exam_collection_id','left')
  45. ->where('z.exam_collection_type=1 and z.exam_collection_state=2 and r.endtime=0 and r.user_id='.$this->auth->id)->find();
  46. if(empty($isset)){
  47. //提示页面,没有开始的考试
  48. return $this->view->fetch('tishi');
  49. }else{
  50. echo "<script>location.href='/admin/student/practice/into/ids/".$isset['exam_collection_id']."'</script>";
  51. }
  52. die();
  53. //设置过滤方法
  54. $this->request->filter(['strip_tags', 'trim']);
  55. if (false === $this->request->isAjax()) {
  56. return $this->view->fetch();
  57. }
  58. //如果发送的来源是 Selectpage,则转发到 Selectpage
  59. if ($this->request->request('keyField')) {
  60. return $this->selectpage();
  61. }
  62. [$where, $sort, $order, $offset, $limit] = $this->buildparams();
  63. $list = $this->model
  64. ->where($where)->where($this->whereExtend)
  65. ->order($sort, $order)
  66. ->paginate($limit);
  67. foreach ($list as $k => $v){
  68. $exam_isset = $this->exam_model->where(['user_id'=>$this->auth->id,'exam_collection_id'=>$v['exam_collection_id'],'exam_collection_type'=>1])->find();
  69. if(isset($exam_isset)){
  70. $v->is_user_examed = 1;
  71. }else{
  72. $v->is_user_examed = 0;
  73. }
  74. }
  75. unset($v);
  76. $result = ['total' => $list->total(), 'rows' => $list->items()];
  77. return json($result);
  78. }
  79. //进入考试
  80. public function into($ids = null)
  81. {
  82. $row = $this->model->get($ids);
  83. if(!$row){
  84. $this->error('未找到记录');
  85. }
  86. $info = $this->exam_model->where(['user_id'=>$this->auth->id,'exam_collection_id'=>$ids])->find();
  87. if(empty($info)){
  88. $arr = [
  89. 'exam_collection_id' => $ids,
  90. 'user_id' => $this->auth->id,
  91. 'user_username' => $this->auth->username,
  92. 'user_nickname' => $this->auth->nickname,
  93. 'user_depart_id' => $this->auth->depart_id,
  94. 'exam_collection_name' => $row->exam_collection_name,
  95. 'exam_collection_type' =>1,
  96. 'sim_type' => $row->sim_type,
  97. 'seat_id' => 1,
  98. 'sim_id' => 12,
  99. ];
  100. $this->exam_model->save($arr);
  101. }
  102. if(!empty($info['starttime']))
  103. {
  104. echo "<script>location.href='/admin/student/practice/examing/ids/".$info['exam_id']."'</script>";
  105. die();
  106. }
  107. // if ($this->request->isPost()) {
  108. // $exam_collection_id = $this->request->post('exam_collection_id');
  109. // if(empty($info->starttime)){
  110. // $info->start_time = date('Y-m-d H:i:s');
  111. // $info->starttime = time();
  112. // }
  113. // $info->exam_status = 4;
  114. // $info->save();
  115. // $this->success('开始成功','/admin/student/practice/examing/ids/'.$info['exam_id']);
  116. // }
  117. $this->assignConfig('exam_id', $info['exam_id']);
  118. $this->assignConfig('url_type', config('site.url_type'));
  119. $this->assignConfig('is_fault', Env::get('app.is_fault'));
  120. $this->view->assign('row', $row);
  121. return $this->view->fetch();
  122. }
  123. public function examing($ids = null)
  124. {
  125. $row = $this->exam_model->get($ids);
  126. if(!$row){
  127. $this->error('未找到记录');
  128. }
  129. if ($this->request->isPost()) {
  130. //先请求接口判断,再进行处理
  131. if(Env::get('app.is_fault')){
  132. $url = config('site.url_type').'/sim/real-exam/student/exam/submit/'.$ids;
  133. // /dev-api/sim/real-exam/student/exam/submit/{examId}
  134. $ret = json_decode(send_get($url),true);
  135. // halt($ret);
  136. if($ret['code']!=200){
  137. $this->error($ret['msg']);
  138. }
  139. }
  140. //计算分数,保存记录
  141. $params = $this->request->post('row/a');
  142. $result = false;
  143. $score = 100;
  144. $fault_one_score = 25;
  145. $fault_two_score = 25;
  146. $fault_three_score = 25;
  147. //故障现象
  148. $xianxian_score = 0;
  149. $xianxian_arr = [];
  150. $xianxian_content = [];
  151. //故障部位
  152. $buwei_score= 0;
  153. $buwei_arr = [];
  154. $buwei_content = [];
  155. //可能原因
  156. $yuanyin_socre= 0;
  157. $yuanyin_arr = [];
  158. $yuanyin_content = [];
  159. //排除方法
  160. $fangfa_score= 0;
  161. $fangfa_arr = [];
  162. $fangfa_content = [];
  163. Db::startTrans();
  164. try {
  165. //更新考试结束时间
  166. $row->end_time = date('Y-m-d H:i:s');
  167. $row->endtime = time();
  168. $row->exam_status = 5;
  169. $row->other_report = $params['other_report'];
  170. $result = $row->save();
  171. $info = $this->exam_model->where(['exam_id'=>$ids])->find();
  172. //更新故障是否正确
  173. $fault_list = Db::name('real_exam_fault')->where(['exam_id'=>$ids,'flag'=>1])->select();
  174. if(!empty($fault_list)){
  175. foreach ($fault_list as $k =>$t){
  176. $answer_right = 0;
  177. if(!empty($t['sim_fault_question_value']) && !empty($t['sim_fault_answer_value'])){
  178. if($t['sim_fault_question_value']!=$t['sim_fault_answer_value']){
  179. $answer_right=1;
  180. }else{
  181. $answer_right=2;
  182. }
  183. }
  184. Db::name('real_exam_fault')->where(['ref_id'=>$t['ref_id']])->update(['answer_right'=>$answer_right]);
  185. }
  186. }
  187. //计算得分,故障是否有扣分 扣分制
  188. $fault_right_list = Db::name('real_exam_fault')->where(['exam_id'=>$ids,'flag'=>1,'answer_right'=>['>',0]])->select();
  189. if(!empty($fault_right_list)){
  190. if($fault_right_list[0]['answer_right']==1){
  191. $fault_one_score = 0;
  192. }
  193. if($fault_right_list[1]['answer_right']==1){
  194. $fault_two_score = 0;
  195. }
  196. if($fault_right_list[2]['answer_right']==1){
  197. $fault_three_score = 0;
  198. }
  199. }
  200. $fault_right_list = Db::name('real_exam_fault')->where(['exam_id'=>$ids,'flag'=>1])->select();
  201. //根据故障部位,查找故障现象
  202. $fault_arr = [$fault_right_list[0]['fault_id'],$fault_right_list[1]['fault_id'],$fault_right_list[2]['fault_id']];
  203. //根据故障部位查找,匹配的排除方法
  204. $paichu_arr = Report::where(['bw_id'=>['in',$fault_arr]])->column('pc_id');
  205. //根据故障部位查找,匹配可能原因
  206. $yy_arr = Report::where(['bw_id'=>['in',$fault_arr]])->column('yy_id');
  207. $partent_fault_id = Fault::where(['fault_id'=>['in',$fault_arr]])->column('parent_fault_id');
  208. //获取数组
  209. $other_report = json_decode($params['other_report'],true);
  210. if(!empty($other_report)){
  211. foreach ($other_report as $key => $em){
  212. //故障现象
  213. $xianxian_arr[] = $em['xx_id'];
  214. //故障部位
  215. $buwei_arr[] = $em['bw_id'];
  216. //可能原因
  217. $yuanyin_arr[] = $em['yy_id'];
  218. //排除方法
  219. $fangfa_arr[] = $em['pc_id'];
  220. }
  221. }
  222. //故障现象 分数 start
  223. foreach ($partent_fault_id as $k1 =>$t){
  224. if(!in_array($t,$xianxian_arr)){
  225. $xianxian_score = 1+$xianxian_score;
  226. $xianxian_content[] = [
  227. 'cx_id'=>$t,
  228. 'cx_type'=>'少写',
  229. 'cx_name'=>Fault::where(['fault_id'=>$t])->value('name'),
  230. ];
  231. }
  232. }
  233. foreach ($xianxian_arr as $k2 =>$t2){
  234. if(!in_array($t2,$partent_fault_id)){
  235. $xianxian_score = 1+$xianxian_score;
  236. $xianxian_content[] = [
  237. 'cx_id'=>$t2,
  238. 'cx_type'=>'错写',
  239. 'cx_name'=>Fault::where(['fault_id'=>$t2])->value('name'),
  240. ];
  241. }
  242. }
  243. //故障现象 end
  244. //故障部位 start
  245. foreach ($fault_arr as $k11 =>$t11){
  246. if(!in_array($t11,$buwei_arr)){
  247. $buwei_score = 1+$buwei_score;
  248. $buwei_content[] = [
  249. 'cx_id'=>$t11,
  250. 'cx_type'=>'少写',
  251. 'cx_name'=>Fault::where(['fault_id'=>$t11])->value('name'),
  252. ];
  253. }
  254. }
  255. foreach ($buwei_arr as $k12 =>$t12){
  256. if(!empty($t12) && !in_array($t12,$fault_arr)){
  257. //错写
  258. $buwei_score = 1+$buwei_score;
  259. $buwei_content[] = [
  260. 'cx_id'=>$t12,
  261. 'cx_type'=>'错写',
  262. 'cx_name'=>Fault::where(['fault_id'=>$t12])->value('name'),
  263. ];
  264. }
  265. }
  266. //故障部位 end
  267. //排除方法 start
  268. //循环固定的排除方法,匹配作答的排除方法
  269. foreach ($paichu_arr as $k21 =>$t21){
  270. if(!in_array($t21,$fangfa_arr)){
  271. $fangfa_score = 1+$fangfa_score;
  272. $fangfa_content[] = [
  273. 'cx_id'=>$t21,
  274. 'cx_type'=>'少写',
  275. 'cx_name'=>Fault::where(['fault_id'=>$t21])->value('name'),
  276. ];
  277. }
  278. }
  279. //循环作答的排除方法,,匹配固定的排除方法
  280. foreach ($fangfa_arr as $k22 =>$t22){
  281. if(!empty($t22) && !in_array($t22,$paichu_arr)){
  282. $fangfa_score = 1+$fangfa_score;
  283. $fangfa_content[] = [
  284. 'cx_id'=>$t22,
  285. 'cx_type'=>'错写',
  286. 'cx_name'=>Fault::where(['fault_id'=>$t22])->value('name'),
  287. ];
  288. }
  289. }
  290. //排除方法 end
  291. //可能原因 start
  292. //循环固定的可能原因,匹配作答的可能原因
  293. foreach ($yy_arr as $k31 =>$t31){
  294. if(!in_array($t31,$yuanyin_arr)){
  295. $yuanyin_socre = 1+$yuanyin_socre;
  296. $yuanyin_content[] = [
  297. 'cx_id'=>$t31,
  298. 'cx_type'=>'少写',
  299. 'cx_name'=>Fault::where(['fault_id'=>$t31])->value('name'),
  300. ];
  301. }
  302. }
  303. //循环作答的排除方法,,匹配固定的排除方法
  304. foreach ($yuanyin_arr as $k32 =>$t32){
  305. if(!empty($t32) && !in_array($t32,$yy_arr)){
  306. $yuanyin_socre = 1+$yuanyin_socre;
  307. $yuanyin_content[] = [
  308. 'cx_id'=>$t32,
  309. 'cx_type'=>'错写',
  310. 'cx_name'=>Fault::where(['fault_id'=>$t32])->value('name'),
  311. ];
  312. }
  313. }
  314. //可能原因 end
  315. $weixiu_score = $xianxian_score+$yuanyin_socre+$buwei_score+$fangfa_score;
  316. if($weixiu_score>15){
  317. $weixiu_score = 15;
  318. }
  319. //是否超时
  320. $overtime_fen = intval((time()-$info['endtime']) / 60);
  321. if($overtime_fen>=10){
  322. $overtime_score = 10;
  323. }else if($overtime_fen>0 && $overtime_fen<10){
  324. $overtime_score = $overtime_fen ;
  325. }else{
  326. $overtime_score =0;
  327. }
  328. $fault_score = $score-$fault_one_score-$fault_two_score-$fault_three_score-$weixiu_score-$overtime_score;
  329. //更新考试结果表
  330. $params['exam_id'] = $ids;
  331. $params['total'] = $fault_score;//得分;
  332. $params['fault_one_score'] = $fault_one_score;//得分;
  333. $params['fault_two_score'] = $fault_two_score;//得分;
  334. $params['fault_three_score'] = $fault_three_score;//得分;
  335. $params['xianxian_score'] = $xianxian_score;//得分;
  336. $params['xianxian_content'] = json_encode($xianxian_content);//错题;
  337. $params['yuanyin_socre'] = $yuanyin_socre;//得分;
  338. $params['yuanyin_content'] = json_encode($yuanyin_content);//错题;
  339. $params['buwei_score'] = $buwei_score;//得分;
  340. $params['buwei_content'] = json_encode($buwei_content);//错题;
  341. $params['fangfa_score'] = $fangfa_score;//得分;
  342. $params['fangfa_content'] = json_encode($fangfa_content);//错题;
  343. $params['overtime_score'] = $overtime_score;//得分;
  344. Db::name('real_exam_score')->insert($params);
  345. $this->exam_model->where(['exam_id'=>$ids])->update(['total_score'=>$fault_score]);
  346. Db::commit();
  347. } catch (ValidateException|PDOException|Exception $e) {
  348. Db::rollback();
  349. $this->error($e->getMessage());
  350. }
  351. if ($result === false) {
  352. $this->error(__('No rows were inserted'));
  353. }
  354. $this->success('交卷成功','/admin/student/practice/analysis/ids/'.$row['exam_id']);
  355. }
  356. if(empty($row->starttime)){
  357. $row->start_time = date('Y-m-d H:i:s');
  358. $row->starttime = time();
  359. $row->exam_status = 4;
  360. $row->save();
  361. }
  362. $isloading =1;
  363. if(empty($row->other_replace)){
  364. $isloading = 0;
  365. $row->other_replace = '[{"fault_id":"","request_status":"0"}]';
  366. }
  367. $row->other_report_text = !empty($row->other_report) ? json_decode($row->other_report,true) : [];
  368. //还未开始练习
  369. $row->limit_duration = $this->model->where(['exam_collection_id'=>$row['exam_collection_id']])->value('limit_duration');
  370. if(empty($row->starttime)){
  371. $timer = 60*$row->limit_duration;
  372. }else{
  373. $timer = $row->limit_duration*60 - abs(time() - $row->starttime);
  374. }
  375. $departmentdata = [];
  376. $departmentdata = Fault::where(['replace_part'=>1,'sim_type'=>$row->sim_type])->order('fault_id asc')->select();
  377. $this->view->assign('departmentdata', $departmentdata);
  378. //故障现象
  379. $xianxiang = Fault::where(['fault_type'=>1,'sim_type'=>$row->sim_type])->select();
  380. $this->view->assign('xianxiang', $xianxiang);
  381. $row->replace_list =Db::name('real_exam_comp_request')->where(['exam_id'=>$ids])->select();
  382. $this->assignConfig('ids',$ids);
  383. $this->assignConfig('timer',$timer);
  384. $this->assignConfig('isloading',$isloading);
  385. $this->view->assign('row', $row);
  386. return $this->view->fetch();
  387. }
  388. public function analysis($ids = null)
  389. {
  390. if ($this->request->isPost()) {
  391. $params = $this->request->post('row/a');
  392. //计算总分到学员考试表
  393. $this->success('操作成功','/admin/student/practice/index');
  394. }
  395. $row = Db::name('real_exam_score')->where('exam_id', $ids)->find();
  396. if (!$row) {
  397. $this->error(__('No Results were found'));
  398. }
  399. $rows = $this->exam_model->get($ids);
  400. $row['seat_id'] = $rows->seat_id;
  401. $row['user_nickname'] = $rows->user_nickname;
  402. $row['user_username'] = $rows->user_username;
  403. $row['user_depart_id'] = $rows->user_depart_id;
  404. $row['user_depart_name'] = Department::where('id',$rows->user_depart_id)->value('name');
  405. $row['start_time'] = $rows->start_time;
  406. $row['end_time'] = $rows->end_time;
  407. $fault_list = Db::name('real_exam_fault')->where(['exam_id'=>$ids,'flag'=>1])->select();
  408. $row['fault_name_one'] = !empty($fault_list[0]['fault_id']) ? Fault::where('fault_id',$fault_list[0]['fault_id'])->value('name'):'';
  409. $row['fault_name_two'] = !empty($fault_list[1]['fault_id']) ? Fault::where('fault_id',$fault_list[1]['fault_id'])->value('name'):'';
  410. $row['fault_name_three'] = !empty($fault_list[2]['fault_id']) ? Fault::where('fault_id',$fault_list[2]['fault_id'])->value('name'):'';
  411. $row['xianxian_content_name'] = '';
  412. if(!empty($row['xianxian_content']))
  413. {
  414. $row['xianxian_content_name'] = json_decode($row['xianxian_content'],true);
  415. }
  416. $row['yuanyin_content_name'] = '';
  417. if(!empty($row['yuanyin_content']))
  418. {
  419. $row['yuanyin_content_name'] = json_decode($row['yuanyin_content'],true);
  420. }
  421. $row['buwei_content_name'] = '';
  422. if(!empty($row['buwei_content']))
  423. {
  424. $row['buwei_content_name'] = json_decode($row['buwei_content'],true);
  425. }
  426. $row['fangfa_content_name'] = '';
  427. if(!empty($row['fangfa_content']))
  428. {
  429. $row['fangfa_content_name'] = json_decode($row['fangfa_content'],true);
  430. }
  431. $other_report = !empty($row['other_report']) ? json_decode($row['other_report'],true):[];
  432. $this->view->assign('other_report', $other_report);
  433. $this->view->assign('row', $row);
  434. return $this->view->fetch();
  435. }
  436. }