Collection.php 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716
  1. <?php
  2. namespace app\admin\controller\student;
  3. use app\common\controller\Backend;
  4. use app\common\model\Config as ConfigModel;
  5. use app\admin\model\Report;
  6. use app\admin\model\Fault;
  7. use think\exception\DbException;
  8. use think\exception\PDOException;
  9. use think\exception\ValidateException;
  10. use think\response\Json;
  11. use think\Db;
  12. use think\Env;
  13. /**
  14. *
  15. * @icon fa fa-circle-o
  16. */
  17. class Collection 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. protected $noNeedLogin = ['addreport','editreport','delreport'];
  27. public function _initialize()
  28. {
  29. parent::_initialize();
  30. $this->model = new \app\admin\model\teacher\Collection;
  31. $this->exam_model = new \app\admin\model\teacher\Exams;
  32. $this->assignConfig('sim_sim_type', ConfigModel::getSimTypeList());
  33. $this->assignConfig('sim_question_setting_method', ConfigModel::getSimQuestionList());
  34. $this->whereExtend['exam_collection_type'] = 3;
  35. $this->whereExtend['exam_collection_state'] = 2;
  36. $this->assignConfig('sim_sim_type', ConfigModel::getSimTypeList());
  37. $groupIds = $this->auth->getGroupIds();
  38. //学员查看自己区队的考试集合
  39. if(in_array(8, $groupIds)){
  40. $departid = $this->auth->depart_id;
  41. $this->whereExtend[] = ['exp',Db::raw("FIND_IN_SET($departid,depart_ids)")];
  42. }
  43. }
  44. /**
  45. * 默认生成的控制器所继承的父类中有index/add/edit/del/multi五个基础方法、destroy/restore/recyclebin三个回收站方法
  46. * 因此在当前控制器中可不用编写增删改查的代码,除非需要自己控制这部分逻辑
  47. * 需要将application/admin/library/traits/Backend.php中对应的方法复制到当前控制器,然后进行修改
  48. */
  49. /**
  50. * 查看
  51. *
  52. * @return string|Json
  53. * @throws \think\Exception
  54. * @throws DbException
  55. */
  56. public function index()
  57. {
  58. $isset = $this->model->alias('z')
  59. ->join('real_exam r','z.exam_collection_id=r.exam_collection_id','left')
  60. ->where('z.exam_collection_type=3 and z.exam_collection_state=2 and r.endtime=0 and r.user_id='.$this->auth->id)->find();
  61. if(empty($isset)){
  62. //提示页面,没有开始的考试
  63. return $this->view->fetch('tishi');
  64. }else{
  65. echo "<script>location.href='/admin/student/collection/into/ids/".$isset['exam_collection_id']."'</script>";
  66. }
  67. die();
  68. //设置过滤方法
  69. $this->request->filter(['strip_tags', 'trim']);
  70. if (false === $this->request->isAjax()) {
  71. return $this->view->fetch();
  72. }
  73. //如果发送的来源是 Selectpage,则转发到 Selectpage
  74. if ($this->request->request('keyField')) {
  75. return $this->selectpage();
  76. }
  77. [$where, $sort, $order, $offset, $limit] = $this->buildparams();
  78. $list = $this->model
  79. ->where($where)->where($this->whereExtend)
  80. ->order($sort, $order)
  81. ->paginate($limit);
  82. foreach ($list as $k => $v){
  83. $exam_isset = $this->exam_model->where(['user_id'=>$this->auth->id,'exam_collection_id'=>$v['exam_collection_id'],'exam_collection_type'=>3,'endtime'=>['>',0]])->find();
  84. if(isset($exam_isset)){
  85. $v->is_user_examed = 1;
  86. }else{
  87. $v->is_user_examed = 0;
  88. }
  89. }
  90. unset($v);
  91. $result = ['total' => $list->total(), 'rows' => $list->items()];
  92. return json($result);
  93. }
  94. //进入考试
  95. public function into($ids = null)
  96. {
  97. $row = $this->model->get($ids);
  98. if(!$row){
  99. $this->error('未找到记录');
  100. }
  101. $info = $this->exam_model->where(['user_id'=>$this->auth->id,'exam_collection_id'=>$ids,'exam_collection_type'=>3,'endtime'=>0])->find();
  102. if(!empty($info)){
  103. if(!empty($this->auth->seat_id) && !empty($info['seat_id']) && $this->auth->seat_id!=$info['seat_id']){
  104. $this->error('已在其他座号有开始的考试,不允许换座号');
  105. }
  106. $sim = Db::name('sim')->where('sim_type',$info['sim_type'])->where('seat_id',$this->auth->seat_id)->find();
  107. if(empty($sim)){
  108. $this->error('未找到模拟器,不可考试');
  109. }
  110. $this->exam_model->where('exam_id',$info['exam_id'])->update(['seat_id'=>$this->auth->seat_id,'sim_id'=>$sim['sim_id']]);
  111. $info['seat_id'] = $this->auth->seat_id;
  112. $sim_text = '';
  113. if(!empty($sim)){
  114. if($sim['sim_state']==1){
  115. $sim_text = '在线';
  116. }else if($sim['sim_state']==2){
  117. $sim_text = '模拟器离线';
  118. }else if($sim['sim_state']==3){
  119. $sim_text = '网关离线';
  120. }else if($sim['sim_state']==4){
  121. $sim_text = '硬件故障异常';
  122. }else if($sim['sim_state']==5){
  123. $sim_text = '手动禁用';
  124. }
  125. }
  126. // 模拟器状态 0:可用初始化 1:在线 2:模拟器离线 3:网关离线 4:硬件故障异常 5:手动禁用
  127. $info['sim_text'] = $sim_text;
  128. }
  129. if(!empty($info['starttime']))
  130. {
  131. echo "<script>location.href='/admin/student/collection/examing/ids/".$info['exam_id']."'</script>";
  132. die();
  133. }
  134. $this->view->assign('info', $info);
  135. $this->view->assign('row', $row);
  136. $this->assignConfig('exam_id', $info['exam_id']);
  137. $this->assignConfig('url_type', config('site.url_type'));
  138. $this->assignConfig('is_fault', Env::get('app.is_fault'));
  139. return $this->view->fetch();
  140. }
  141. public function examing($ids = null)
  142. {
  143. $row = $this->exam_model->get($ids);
  144. if(!$row){
  145. $this->error('未找到记录');
  146. }
  147. if ($this->request->isPost()) {
  148. //先请求接口判断,再进行处理
  149. if(Env::get('app.is_fault')){
  150. $url = config('site.url_type').'/sim/real-exam/student/exam/submit/'.$ids;
  151. $ret = json_decode(send_get($url),true);
  152. if($ret['code']!=200){
  153. $this->error($ret['msg']);
  154. }
  155. }
  156. //计算分数,保存记录
  157. $params = $this->request->post('row/a');
  158. $result = false;
  159. $score = 100;
  160. $fault_one_score = 25;
  161. $fault_two_score = 25;
  162. $fault_three_score = 25;
  163. //故障现象
  164. $xianxian_score = 0;
  165. $xianxian_arr = [];
  166. $xianxian_content = [];
  167. //故障部位
  168. $buwei_score= 0;
  169. $buwei_arr = [];
  170. $buwei_content = [];
  171. //可能原因
  172. $yuanyin_socre= 0;
  173. $yuanyin_arr = [];
  174. $yuanyin_content = [];
  175. //排除方法
  176. $fangfa_score= 0;
  177. $fangfa_arr = [];
  178. $fangfa_content = [];
  179. Db::startTrans();
  180. try {
  181. //更新考试结束时间
  182. $row->end_time = date('Y-m-d H:i:s');
  183. $row->endtime = time();
  184. $row->exam_status = 5;
  185. $row->other_report = $params['other_report'];
  186. $result = $row->save();
  187. $info = $this->exam_model->where(['exam_id'=>$ids])->find();
  188. //更新故障是否正确
  189. $fault_list = Db::name('real_exam_fault')->where(['exam_id'=>$ids,'flag'=>1])->select();
  190. if(!empty($fault_list)){
  191. foreach ($fault_list as $k =>$t){
  192. $answer_right = 2;
  193. if(!empty($t['sim_fault_question_value']) && !empty($t['sim_fault_answer_value'])){
  194. if($t['sim_fault_question_value']!=$t['sim_fault_answer_value'] ){
  195. //真实故障id 0002GZBW0001 薄膜开关FPC排线
  196. if($t['sim_fault_answer_value']=='00000000' && $t['fault_id'] !='0002GZBW0001'){
  197. $answer_right=2;
  198. }
  199. $answer_right=1;
  200. }
  201. }
  202. Db::name('real_exam_fault')->where(['ref_id'=>$t['ref_id']])->update(['answer_right'=>$answer_right]);
  203. }
  204. }
  205. //计算得分,故障是否有扣分 扣分制
  206. $fault_right_list = Db::name('real_exam_fault')->where(['exam_id'=>$ids,'flag'=>1,'answer_right'=>['>',0]])->select();
  207. if(!empty($fault_right_list)){
  208. if($fault_right_list[0]['answer_right']==1){
  209. $fault_one_score = 0;
  210. }
  211. if($fault_right_list[1]['answer_right']==1){
  212. $fault_two_score = 0;
  213. }
  214. if($fault_right_list[2]['answer_right']==1){
  215. $fault_three_score = 0;
  216. }
  217. }
  218. $fault_right_list = Db::name('real_exam_fault')->where(['exam_id'=>$ids,'flag'=>1])->select();
  219. //根据故障部位 数组
  220. $fault_arr = [$fault_right_list[0]['fault_id'],$fault_right_list[1]['fault_id'],$fault_right_list[2]['fault_id']];
  221. //根据故障部位查找,匹配的排除方法
  222. $paichu_arr = Report::where(['bw_id'=>['in',$fault_arr],'sim_type'=>$info['sim_type']])->column('pc_id');
  223. //根据故障部位查找,匹配可能原因
  224. $yy_arr = Report::where(['bw_id'=>['in',$fault_arr],'sim_type'=>$info['sim_type']])->column('yy_id');
  225. //查找故障现象 数组
  226. $partent_fault_id = Fault::where(['fault_id'=>['in',$fault_arr],'sim_type'=>$info['sim_type']])->column('parent_fault_id');
  227. //获取数组
  228. $other_report = json_decode($params['other_report'],true);
  229. if(!empty($other_report)){
  230. foreach ($other_report as $key => $em){
  231. //故障现象
  232. $xianxian_arr[] = $em['xx_id'];
  233. //故障部位
  234. $buwei_arr[] = $em['bw_id'];
  235. //可能原因
  236. $yuanyin_arr[] = $em['yy_id'];
  237. //排除方法
  238. $fangfa_arr[] = $em['pc_id'];
  239. }
  240. }
  241. //故障现象 分数 start
  242. foreach ($partent_fault_id as $k1 =>$t){
  243. if(!in_array($t,$xianxian_arr)){
  244. $xianxian_score = 1+$xianxian_score;
  245. $xianxian_content[] = [
  246. 'cx_id'=>$t,
  247. 'cx_type'=>'少写',
  248. 'cx_name'=>Fault::where(['fault_id'=>$t])->value('name'),
  249. ];
  250. }
  251. }
  252. foreach ($xianxian_arr as $k2 =>$t2){
  253. if(!in_array($t2,$partent_fault_id)){
  254. $xianxian_score = 1+$xianxian_score;
  255. $xianxian_content[] = [
  256. 'cx_id'=>$t2,
  257. 'cx_type'=>'错写',
  258. 'cx_name'=>Fault::where(['fault_id'=>$t2])->value('name'),
  259. ];
  260. }
  261. }
  262. //故障现象 end
  263. //故障部位 start
  264. foreach ($fault_arr as $k11 =>$t11){
  265. if(!in_array($t11,$buwei_arr)){
  266. $buwei_score = 1+$buwei_score;
  267. $buwei_content[] = [
  268. 'cx_id'=>$t11,
  269. 'cx_type'=>'少写',
  270. 'cx_name'=>Fault::where(['fault_id'=>$t11])->value('name'),
  271. ];
  272. }
  273. }
  274. foreach ($buwei_arr as $k12 =>$t12){
  275. if(!empty($t12) && !in_array($t12,$fault_arr)){
  276. //错写
  277. $buwei_score = 1+$buwei_score;
  278. $buwei_content[] = [
  279. 'cx_id'=>$t12,
  280. 'cx_type'=>'错写',
  281. 'cx_name'=>Fault::where(['fault_id'=>$t12])->value('name'),
  282. ];
  283. }
  284. }
  285. //故障部位 end
  286. //排除方法 start
  287. //循环固定的排除方法,匹配作答的排除方法
  288. foreach ($paichu_arr as $k21 =>$t21){
  289. if(!in_array($t21,$fangfa_arr)){
  290. $fangfa_score = 1+$fangfa_score;
  291. $fangfa_content[] = [
  292. 'cx_id'=>$t21,
  293. 'cx_type'=>'少写',
  294. 'cx_name'=>Fault::where(['fault_id'=>$t21])->value('name'),
  295. ];
  296. }
  297. }
  298. //循环作答的排除方法,,匹配固定的排除方法
  299. foreach ($fangfa_arr as $k22 =>$t22){
  300. if(!empty($t22) && !in_array($t22,$paichu_arr)){
  301. $fangfa_score = 1+$fangfa_score;
  302. $fangfa_content[] = [
  303. 'cx_id'=>$t22,
  304. 'cx_type'=>'错写',
  305. 'cx_name'=>Fault::where(['fault_id'=>$t22])->value('name'),
  306. ];
  307. }
  308. }
  309. //排除方法 end
  310. //可能原因 start
  311. //循环固定的可能原因,匹配作答的可能原因
  312. foreach ($yy_arr as $k31 =>$t31){
  313. if(!in_array($t31,$yuanyin_arr)){
  314. $yuanyin_socre = 1+$yuanyin_socre;
  315. $yuanyin_content[] = [
  316. 'cx_id'=>$t31,
  317. 'cx_type'=>'少写',
  318. 'cx_name'=>Fault::where(['fault_id'=>$t31])->value('name'),
  319. ];
  320. }
  321. }
  322. //循环作答的排除方法,,匹配固定的排除方法
  323. foreach ($yuanyin_arr as $k32 =>$t32){
  324. if(!empty($t32)){
  325. foreach(explode(',',$t32) as $k321 =>$t321){
  326. if(!in_array($t321,$yy_arr)){
  327. $yuanyin_socre = 1+$yuanyin_socre;
  328. $yuanyin_content[] = [
  329. 'cx_id'=>$t321,
  330. 'cx_type'=>'错写',
  331. 'cx_name'=>Fault::where(['fault_id'=>$t321])->value('name'),
  332. ];
  333. }
  334. }
  335. }
  336. }
  337. //可能原因 end
  338. $weixiu_score = $xianxian_score+$yuanyin_socre+$buwei_score+$fangfa_score;
  339. if($weixiu_score>15){
  340. $weixiu_score = 15;
  341. }
  342. //是否超时
  343. $overtime_fen = intval((time()-$info['endtime']) / 60);
  344. if($overtime_fen>=10){
  345. $overtime_score = 10;
  346. }else if($overtime_fen>0 && $overtime_fen<10){
  347. $overtime_score = $overtime_fen ;
  348. }else{
  349. $overtime_score =0;
  350. }
  351. $fault_score = $score-$fault_one_score-$fault_two_score-$fault_three_score-$weixiu_score-$overtime_score;
  352. //更新考试结果表
  353. $params['exam_id'] = $ids;
  354. $params['total'] = $fault_score;//得分;
  355. $params['fault_one_score'] = $fault_one_score;//得分;
  356. $params['fault_two_score'] = $fault_two_score;//得分;
  357. $params['fault_three_score'] = $fault_three_score;//得分;
  358. $params['xianxian_score'] = $xianxian_score;//得分;
  359. $params['xianxian_content'] = json_encode($xianxian_content);//错题;
  360. $params['yuanyin_socre'] = $yuanyin_socre;//得分;
  361. $params['yuanyin_content'] = json_encode($yuanyin_content);//错题;
  362. $params['buwei_score'] = $buwei_score;//得分;
  363. $params['buwei_content'] = json_encode($buwei_content);//错题;
  364. $params['fangfa_score'] = $fangfa_score;//得分;
  365. $params['fangfa_content'] = json_encode($fangfa_content);//错题;
  366. $params['overtime_score'] = $overtime_score;//得分;
  367. Db::name('real_exam_score')->insert($params);
  368. $this->exam_model->where(['exam_id'=>$ids])->update(['total_score'=>$fault_score]);
  369. Db::commit();
  370. } catch (ValidateException|PDOException|Exception $e) {
  371. Db::rollback();
  372. $this->error($e->getMessage());
  373. }
  374. if ($result === false) {
  375. $this->error(__('No rows were inserted'));
  376. }
  377. $this->success('交卷成功,待老师确认成绩','/admin/student/exam/index');
  378. }
  379. if(empty($row->starttime)){
  380. $row->start_time = date('Y-m-d H:i:s');
  381. $row->starttime = time();
  382. $row->exam_status = 4;
  383. $row->save();
  384. }
  385. $isloading =1;
  386. if(empty($row->other_replace)){
  387. $isloading = 0;
  388. $row->other_replace = '[{"fault_id":"","request_status":"0"}]';
  389. }
  390. $row->other_report_text = !empty($row->other_report) ? json_decode($row->other_report,true) : [];
  391. $other_report_count = !empty($row->other_report) ? count(json_decode($row->other_report,true)) :0;
  392. //还未开始考试
  393. $row->limit_duration = $this->model->where(['exam_collection_id'=>$row['exam_collection_id']])->value('limit_duration');
  394. if(empty($row->starttime)){
  395. $timer = 60*$row->limit_duration;
  396. }else{
  397. $timer = $row->limit_duration*60 - abs(time() - $row->starttime);
  398. }
  399. $row->replace_list =Db::name('real_exam_comp_request')->where(['exam_id'=>$ids])->select();
  400. $this->assignConfig('ids',$ids);
  401. $this->assignConfig('timer',$timer);
  402. $this->assignConfig('isloading',$isloading);
  403. $this->assignConfig('other_report_count',$other_report_count);
  404. $this->view->assign('row', $row);
  405. $departmentdata = [];
  406. $departmentdata = Fault::where(['replace_part'=>1,'sim_type'=>$row->sim_type])->order('fault_id asc')->select();
  407. //更换件数据
  408. $this->view->assign('departmentdata', $departmentdata);
  409. //故障现象
  410. $xianxiang = Fault::where(['fault_type'=>1,'sim_type'=>$row->sim_type])->select();
  411. $this->view->assign('xianxiang', $xianxiang);
  412. //可能原因
  413. $yuanyin = Fault::where(['fault_type'=>2,'sim_type'=>$row->sim_type])->select();
  414. $this->view->assign('yuanyin', $yuanyin);
  415. //故障部位
  416. $buwei = Fault::where(['fault_type'=>3,'sim_type'=>$row->sim_type])->select();
  417. $this->view->assign('buwei', $buwei);
  418. //排除方法
  419. $paichu = Fault::where(['fault_type'=>4,'sim_type'=>$row->sim_type])->select();
  420. $this->view->assign('paichu', $paichu);
  421. return $this->view->fetch();
  422. }
  423. public function replace($ids = null)
  424. {
  425. if ($this->request->isPost()) {
  426. $params = $this->request->post('other_replace','');
  427. $other_report = $this->request->post('other_report','');
  428. $param = json_decode($params,true);
  429. if(!empty($param)){
  430. $faultid_arr = [];
  431. foreach ($param as $key=>$item){
  432. if(!empty($item['fault_id'])){
  433. $isreplace = Db::name('real_exam_comp_request')->where(['exam_id'=>$ids,'fault_id'=>$item['fault_id']])->find();
  434. if(empty($isreplace)){
  435. $add = [
  436. 'exam_id'=>$ids,
  437. 'fault_id'=>$item['fault_id'],
  438. 'request_status'=>1,
  439. 'fault_name'=>Db::name('fault')->where('fault_id',$item['fault_id'])->value('replace_name'),
  440. 'create_by_user_id'=>$this->auth->id,
  441. 'create_by'=>$this->auth->nickname,
  442. 'createtime'=>time(),
  443. 'updatetime'=>time(),
  444. 'create_time'=>date('Y-m-d H:i:s'),
  445. 'update_time'=>date('Y-m-d H:i:s'),
  446. ];
  447. Db::name('real_exam_comp_request')->insert($add);
  448. $status = 1;
  449. }else{
  450. $status = $isreplace['request_status'];
  451. }
  452. $faultid_arr[] = [
  453. 'fault_id'=>$item['fault_id'],
  454. 'request_status'=>$status,
  455. ];
  456. }
  457. }
  458. unset($item);
  459. $row = $this->exam_model->get($ids);
  460. $row-> other_replace = $faultid_arr ? json_encode($faultid_arr):'';
  461. $row-> other_report = $other_report;
  462. $result = $row->save();
  463. }
  464. $this->success('申请成功,待老师审批');
  465. }
  466. }
  467. /**
  468. * @Notes:添加维修报告
  469. * @Author: jxb
  470. * @Date: 2025/1/21
  471. * @Time: 10:29
  472. */
  473. public function addreport($ids = null){
  474. $row = $this->exam_model->get($ids);
  475. if(!$row){
  476. $this->error('未找到记录');
  477. }
  478. if ($this->request->isPost()) {
  479. $unwin = $this->request->post('unwin/a');
  480. $arr = [];
  481. if(!empty($unwin)){
  482. if(empty($unwin['xx_id'])){
  483. $this->error('故障现象选项有空白项');
  484. }
  485. if(empty($unwin['yy_id'][0])){
  486. $this->error('可能原因选项有空白项');
  487. }
  488. if(empty($unwin['bw_id'])){
  489. $this->error('故障部位选项有空白项');
  490. }
  491. if(empty($unwin['pc_id'])){
  492. $this->error('排除方法选项有空白项');
  493. }
  494. $xx_name = Fault::where('fault_id',$unwin['xx_id'])->value('name');
  495. $yy_name = Fault::where('fault_id','in',$unwin['yy_id'])->column('name');
  496. $bw_name = Fault::where('fault_id',$unwin['bw_id'])->value('name');
  497. $pc_name = Fault::where('fault_id',$unwin['pc_id'])->value('name');
  498. $arr = [
  499. 'xh_id' => $unwin['xh_id'],
  500. 'xx_id' => $unwin['xx_id'],
  501. 'xx_name'=>$xx_name,
  502. 'yy_id' => implode(',',$unwin['yy_id']),
  503. 'yy_name' => implode(',',$yy_name),
  504. 'bw_id' => $unwin['bw_id'],
  505. 'bw_name' => $bw_name,
  506. 'pc_id' => $unwin['pc_id'],
  507. 'pc_name' => $pc_name,
  508. ];
  509. }
  510. $other_report = !empty($row->other_report) ? json_decode($row->other_report,true) : [];
  511. array_push($other_report,$arr);
  512. $row->other_report = json_encode($other_report);
  513. $row->save();
  514. $this->success();
  515. }
  516. //故障现象
  517. $xianxiang = Fault::where(['fault_type'=>1,'sim_type'=>$row->sim_type])->select();
  518. $this->view->assign('xianxiang', $xianxiang);
  519. //可能原因
  520. $yuanyin = Fault::where(['fault_type'=>2,'sim_type'=>$row->sim_type])->column('fault_id,name');
  521. $this->view->assign('yuanyin', $yuanyin);
  522. //故障部位
  523. $buwei = Fault::where(['fault_type'=>3,'sim_type'=>$row->sim_type])->column('fault_id,name');
  524. $this->view->assign('buwei', $buwei);
  525. //排除方法
  526. $paichu = Fault::where(['fault_type'=>4,'sim_type'=>$row->sim_type])->column('fault_id,name');
  527. $this->view->assign('paichu', $paichu);
  528. $row->other_report_count = 0;
  529. $xxid = [];
  530. if(!empty($row->other_report)){
  531. $row->other_report_count = count(json_decode($row->other_report,true));
  532. $otherreport = json_decode($row->other_report,true);
  533. foreach ($otherreport as $k =>$item){
  534. array_push($xxid,$item['xx_id']);
  535. }
  536. }
  537. $row->xxid = $xxid;
  538. $this->view->assign('row', $row);
  539. return $this->view->fetch();
  540. }
  541. /**
  542. * @Notes:编辑报告
  543. * @Author: jxb
  544. * @Date: 2025/1/21
  545. * @Time: 15:04
  546. */
  547. public function editreport($ids = null,$xh_id = null){
  548. $row = $this->exam_model->get($ids);
  549. if(!$row){
  550. $this->error('未找到记录');
  551. }
  552. if ($this->request->isPost()) {
  553. $unwin = $this->request->post('unwin/a');
  554. if(!empty($unwin)){
  555. if(empty($unwin['xx_id'])){
  556. $this->error('故障现象选项有空白项');
  557. }
  558. if(empty($unwin['yy_id'][0])){
  559. $this->error('可能原因选项有空白项');
  560. }
  561. if(empty($unwin['bw_id'])){
  562. $this->error('故障部位选项有空白项');
  563. }
  564. if(empty($unwin['pc_id'])){
  565. $this->error('排除方法选项有空白项');
  566. }
  567. $xx_name = Fault::where('fault_id',$unwin['xx_id'])->value('name');
  568. $yy_name = Fault::where('fault_id','in',$unwin['yy_id'])->column('name');
  569. $bw_name = Fault::where('fault_id',$unwin['bw_id'])->value('name');
  570. $pc_name = Fault::where('fault_id',$unwin['pc_id'])->value('name');
  571. $other_report = !empty($row->other_report) ? json_decode($row->other_report,true) : [];
  572. foreach ($other_report as $k =>$item){
  573. if($k==$xh_id){
  574. $other_report[$k]['xx_id'] =$unwin['xx_id'];
  575. $other_report[$k]['xx_name'] =$xx_name;
  576. $other_report[$k]['yy_id'] = implode(',',$unwin['yy_id']);
  577. $other_report[$k]['yy_name'] =implode(',',$yy_name);
  578. $other_report[$k]['bw_id'] = $unwin['bw_id'];
  579. $other_report[$k]['bw_name'] =$bw_name;
  580. $other_report[$k]['pc_id'] =$unwin['pc_id'];
  581. $other_report[$k]['pc_name'] =$pc_name;
  582. }
  583. }
  584. $row->other_report = json_encode($other_report);
  585. $row->save();
  586. }
  587. $this->success();
  588. }
  589. //故障现象
  590. $xianxiang = Fault::where(['fault_type'=>1,'sim_type'=>$row->sim_type])->select();
  591. $this->view->assign('xianxiang', $xianxiang);
  592. //可能原因
  593. $yuanyin = Fault::where(['fault_type'=>2,'sim_type'=>$row->sim_type])->column('fault_id,name');
  594. $this->view->assign('yuanyin', $yuanyin);
  595. //故障部位
  596. $buwei = Fault::where(['fault_type'=>3,'sim_type'=>$row->sim_type])->column('fault_id,name');
  597. $this->view->assign('buwei', $buwei);
  598. //排除方法
  599. $paichu = Fault::where(['fault_type'=>4,'sim_type'=>$row->sim_type])->column('fault_id,name');
  600. $this->view->assign('paichu', $paichu);
  601. $row->other_report_text = [];
  602. if(!empty($row->other_report)){
  603. $other_report = json_decode($row->other_report,true);
  604. foreach ($other_report as $k =>$item){
  605. if($k==$xh_id){
  606. $row->other_report_text = [
  607. 'xx_id'=>$item['xx_id'],
  608. 'yy_id'=>explode(',',$item['yy_id']),
  609. 'bw_id'=>$item['bw_id'],
  610. 'pc_id'=>$item['pc_id'],
  611. 'xh_id'=>$item['xh_id']
  612. ];
  613. }
  614. }
  615. }
  616. $this->view->assign('row', $row);
  617. return $this->view->fetch();
  618. }
  619. /**
  620. * @Notes:移除 维修报告
  621. * @Author: jxb
  622. * @Date: 2025/1/21
  623. * @Time: 14:45
  624. */
  625. public function delreport($ids = null){
  626. $row = $this->exam_model->get($ids);
  627. if(!$row){
  628. $this->error('未找到记录');
  629. }
  630. if ($this->request->isPost()) {
  631. $xh_id = $this->request->post('xh_id');
  632. if(!empty($row->other_report)){
  633. $other_report = json_decode($row->other_report,true);
  634. unset($other_report[$xh_id]);
  635. $row->other_report = json_encode($other_report);
  636. $row->save();
  637. }
  638. $this->success();
  639. }
  640. }
  641. public function analysis($ids = null)
  642. {
  643. $row = $this->exam_model->get($ids);
  644. if(!$row){
  645. $this->error('未找到记录');
  646. }
  647. if ($this->request->isPost()) {
  648. $params = $this->request->post('row/a');
  649. //计算总分到学员考试表
  650. $this->success('操作成功','/admin/student/collection/index');
  651. }
  652. return $this->view->fetch();
  653. }
  654. }