Exercise.php 19 KB

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