HydEquipment.php 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230
  1. <?php
  2. namespace catchAdmin\hydraulic\controller;
  3. use catcher\base\CatchRequest as Request;
  4. use catcher\CatchResponse;
  5. use catcher\base\CatchController;
  6. use catchAdmin\hydraulic\model\HydEquipment as hydEquipmentModel;
  7. use catchAdmin\hydraulic\model\Hydraulic;
  8. use catchAdmin\hydraulic\model\Wrench;
  9. use catchAdmin\system\model\SysDictData;
  10. use PhpParser\Node\Stmt\Catch_;
  11. class HydEquipment extends CatchController
  12. {
  13. protected $hydEquipmentModel;
  14. public function __construct(HydEquipmentModel $hydEquipmentModel)
  15. {
  16. $this->hydEquipmentModel = $hydEquipmentModel;
  17. }
  18. /**
  19. * 列表
  20. * @time 2022年06月21日 11:02
  21. * @param Request $request
  22. */
  23. public function index(Request $request) : \think\Response
  24. {
  25. return CatchResponse::paginate($this->hydEquipmentModel->getList());
  26. }
  27. /**
  28. * 保存信息
  29. * @time 2022年06月21日 11:02
  30. * @param Request $request
  31. */
  32. public function save(Request $request) : \think\Response
  33. {
  34. $data = $request->post();
  35. $hydraulic = null;
  36. $wrench = null;
  37. $hydequ=[
  38. // 物料号
  39. 'material_number'=>$data['material_number'],
  40. // 设备类别
  41. 'equipment_type'=>$data['equipment_type'],
  42. // 工具名称
  43. 'name'=>$data['name'],
  44. // 设备型号
  45. 'equipment_model'=>$data['equipment_model'],
  46. // 发放单位
  47. 'issue_unit'=>$data['issue_unit'],
  48. // 固定资产编号
  49. 'fixed_asset_number'=>$data['fixed_asset_number'],
  50. // 类固定资产编号
  51. 'fixed_asset_number2'=>$data['fixed_asset_number2'],
  52. // 序列号
  53. 'serial_number'=>$data['serial_number'],
  54. // 出厂编号
  55. 'factory_number'=>$data['factory_number'],
  56. // 上次校验时间
  57. 'check_last_time'=>$data['check_last_time'],
  58. // 下次校验时间
  59. 'check_next_time'=>$data['check_next_time'],
  60. // 校验状态
  61. 'check_status'=>$data['check_status'],
  62. // 状态
  63. 'status'=>$data['status'],
  64. ];
  65. $id = $this->hydEquipmentModel->storeBy($hydequ);
  66. if(!$id)
  67. {
  68. return CatchResponse::fail('提交失败');
  69. }
  70. if($data['equipment_type']==2)
  71. {
  72. $hydraulic=[
  73. // 编号
  74. 'number'=>$data['number'],
  75. // 所属部门
  76. 'department_id'=>$data['department_id'],
  77. 'remark'=>$data['remark']?$data['remark']:'',
  78. 'max_pressure'=>$data['max_pressure'],
  79. 'min_pressure'=>$data['min_pressure'],
  80. 'imei'=>$data['imei'],
  81. 'effective_period'=>$data['effective_period'],
  82. //设备的id
  83. 'eq_id'=>$id
  84. ];
  85. Hydraulic::create($hydraulic);
  86. }
  87. //保存扳手
  88. if($data['equipment_type']==3||$data['equipment_type']==4)
  89. {
  90. $wrench = [
  91. // 编号
  92. 'number'=>$data['number'],
  93. //设备id
  94. 'eq_id'=>$id,
  95. // 所属部门
  96. 'department_id'=>$data['department_id'],
  97. 'remark'=>$data['remark']?$data['remark']:'',
  98. 'pressure'=>$data['pressure'],
  99. 'angle_sensor'=>$data['angle_sensor'],
  100. // 扭矩
  101. 'torque'=>$data['torque'],
  102. ];
  103. Wrench::create($wrench);
  104. }
  105. return CatchResponse::success();
  106. }
  107. /**
  108. * 读取
  109. * @time 2022年06月21日 11:02
  110. * @param $id
  111. */
  112. public function read($id) : \think\Response
  113. {
  114. return CatchResponse::success($this->hydEquipmentModel->findBy($id));
  115. }
  116. /**
  117. * 更新
  118. * @time 2022年06月21日 11:02
  119. * @param Request $request
  120. * @param $id
  121. */
  122. public function update(Request $request, $id) : \think\Response
  123. {
  124. $data = $request->post();
  125. $hydraulic = null;
  126. $wrench = null;
  127. $hydequ=[
  128. // 物料号
  129. 'material_number'=>$data['material_number'],
  130. // 设备类别
  131. 'equipment_type'=>$data['equipment_type'],
  132. // 工具名称
  133. 'name'=>$data['name'],
  134. // 设备型号
  135. 'equipment_model'=>$data['equipment_model'],
  136. // 发放单位
  137. 'issue_unit'=>$data['issue_unit'],
  138. // 固定资产编号
  139. 'fixed_asset_number'=>$data['fixed_asset_number'],
  140. // 类固定资产编号
  141. 'fixed_asset_number2'=>$data['fixed_asset_number2'],
  142. // 序列号
  143. 'serial_number'=>$data['serial_number'],
  144. // 出厂编号
  145. 'factory_number'=>$data['factory_number'],
  146. // 上次校验时间
  147. 'check_last_time'=>$data['check_last_time']?strstr($data['check_last_time'],'-')?strtotime($data['check_last_time']):$data['check_last_time']:'',
  148. // 下次校验时间
  149. 'check_next_time'=>$data['check_next_time']?strstr($data['check_next_time'],'-')?strtotime($data['check_next_time']):$data['check_next_time']:'',
  150. // 校验状态
  151. 'check_status'=>$data['check_status'],
  152. // 状态
  153. 'status'=>$data['status'],
  154. ];
  155. if($data['equipment_type']==2)
  156. {
  157. $hydraulic=[
  158. // 编号
  159. 'number'=>$data['number'],
  160. // 所属部门
  161. 'department_id'=>$data['department_id'],
  162. //备注
  163. 'remark'=>$data['remark'],
  164. 'max_pressure'=>$data['max_pressure'],
  165. 'min_pressure'=>$data['min_pressure'],
  166. 'imei'=>$data['imei'],
  167. 'effective_period'=>$data['effective_period'],
  168. //设备的id
  169. 'eq_id'=>$id
  170. ];
  171. Hydraulic::where('id',$data['list']['id'])->update($hydraulic);
  172. }
  173. //保存扳手
  174. if($data['equipment_type']==3||$data['equipment_type']==4)
  175. {
  176. $wrench = [
  177. // 编号
  178. 'number'=>$data['number'],
  179. //设备id
  180. 'eq_id'=>$id,
  181. // 所属部门
  182. 'department_id'=>$data['department_id'],
  183. 'remark'=>$data['remark'],
  184. 'pressure'=>$data['pressure'],
  185. 'angle_sensor'=>$data['angle_sensor'],
  186. // 扭矩
  187. 'torque'=>$data['torque'],
  188. ];
  189. Wrench::where('id',$data['list']['id'])->update($wrench);
  190. }
  191. return CatchResponse::success($this->hydEquipmentModel->updateBy($id, $hydequ));
  192. }
  193. /**
  194. * 删除
  195. * @time 2022年06月21日 11:02
  196. * @param $id
  197. */
  198. public function delete($id) : \think\Response
  199. {
  200. return CatchResponse::success($this->hydEquipmentModel->deleteBy($id));
  201. }
  202. /**
  203. * @Descripttion: 获取设备状态和校验状态
  204. * @name: likang
  205. * @return {*}
  206. */
  207. public function getHydEquipmentType(Request $request)
  208. {
  209. $data=$request->get();
  210. $code = $data['code'];
  211. $sysDict = new SysDictData();
  212. $list = $sysDict->getTypesByCodeWithRemark($code,'');
  213. return CatchResponse::success($list);
  214. }
  215. }