123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230 |
- <?php
- namespace catchAdmin\hydraulic\controller;
- use catcher\base\CatchRequest as Request;
- use catcher\CatchResponse;
- use catcher\base\CatchController;
- use catchAdmin\hydraulic\model\HydEquipment as hydEquipmentModel;
- use catchAdmin\hydraulic\model\Hydraulic;
- use catchAdmin\hydraulic\model\Wrench;
- use catchAdmin\system\model\SysDictData;
- use PhpParser\Node\Stmt\Catch_;
- class HydEquipment extends CatchController
- {
- protected $hydEquipmentModel;
-
- public function __construct(HydEquipmentModel $hydEquipmentModel)
- {
- $this->hydEquipmentModel = $hydEquipmentModel;
- }
-
- /**
- * 列表
- * @time 2022年06月21日 11:02
- * @param Request $request
- */
- public function index(Request $request) : \think\Response
- {
- return CatchResponse::paginate($this->hydEquipmentModel->getList());
- }
-
- /**
- * 保存信息
- * @time 2022年06月21日 11:02
- * @param Request $request
- */
- public function save(Request $request) : \think\Response
- {
- $data = $request->post();
- $hydraulic = null;
- $wrench = null;
- $hydequ=[
- // 物料号
- 'material_number'=>$data['material_number'],
- // 设备类别
- 'equipment_type'=>$data['equipment_type'],
- // 工具名称
- 'name'=>$data['name'],
- // 设备型号
- 'equipment_model'=>$data['equipment_model'],
- // 发放单位
- 'issue_unit'=>$data['issue_unit'],
- // 固定资产编号
- 'fixed_asset_number'=>$data['fixed_asset_number'],
- // 类固定资产编号
- 'fixed_asset_number2'=>$data['fixed_asset_number2'],
- // 序列号
- 'serial_number'=>$data['serial_number'],
- // 出厂编号
- 'factory_number'=>$data['factory_number'],
- // 上次校验时间
- 'check_last_time'=>$data['check_last_time'],
- // 下次校验时间
- 'check_next_time'=>$data['check_next_time'],
- // 校验状态
- 'check_status'=>$data['check_status'],
- // 状态
- 'status'=>$data['status'],
- ];
- $id = $this->hydEquipmentModel->storeBy($hydequ);
- if(!$id)
- {
- return CatchResponse::fail('提交失败');
- }
- if($data['equipment_type']==2)
- {
- $hydraulic=[
- // 编号
- 'number'=>$data['number'],
- // 所属部门
- 'department_id'=>$data['department_id'],
- 'remark'=>$data['remark']?$data['remark']:'',
- 'max_pressure'=>$data['max_pressure'],
- 'min_pressure'=>$data['min_pressure'],
- 'imei'=>$data['imei'],
- 'effective_period'=>$data['effective_period'],
- //设备的id
- 'eq_id'=>$id
- ];
- Hydraulic::create($hydraulic);
- }
- //保存扳手
- if($data['equipment_type']==3||$data['equipment_type']==4)
- {
-
- $wrench = [
- // 编号
- 'number'=>$data['number'],
- //设备id
- 'eq_id'=>$id,
- // 所属部门
- 'department_id'=>$data['department_id'],
- 'remark'=>$data['remark']?$data['remark']:'',
- 'pressure'=>$data['pressure'],
- 'angle_sensor'=>$data['angle_sensor'],
- // 扭矩
- 'torque'=>$data['torque'],
- ];
- Wrench::create($wrench);
- }
-
- return CatchResponse::success();
- }
-
- /**
- * 读取
- * @time 2022年06月21日 11:02
- * @param $id
- */
- public function read($id) : \think\Response
- {
- return CatchResponse::success($this->hydEquipmentModel->findBy($id));
- }
-
- /**
- * 更新
- * @time 2022年06月21日 11:02
- * @param Request $request
- * @param $id
- */
- public function update(Request $request, $id) : \think\Response
- {
- $data = $request->post();
- $hydraulic = null;
- $wrench = null;
- $hydequ=[
- // 物料号
- 'material_number'=>$data['material_number'],
- // 设备类别
- 'equipment_type'=>$data['equipment_type'],
- // 工具名称
- 'name'=>$data['name'],
- // 设备型号
- 'equipment_model'=>$data['equipment_model'],
- // 发放单位
- 'issue_unit'=>$data['issue_unit'],
- // 固定资产编号
- 'fixed_asset_number'=>$data['fixed_asset_number'],
- // 类固定资产编号
- 'fixed_asset_number2'=>$data['fixed_asset_number2'],
- // 序列号
- 'serial_number'=>$data['serial_number'],
- // 出厂编号
- 'factory_number'=>$data['factory_number'],
- // 上次校验时间
- 'check_last_time'=>$data['check_last_time']?strstr($data['check_last_time'],'-')?strtotime($data['check_last_time']):$data['check_last_time']:'',
- // 下次校验时间
- 'check_next_time'=>$data['check_next_time']?strstr($data['check_next_time'],'-')?strtotime($data['check_next_time']):$data['check_next_time']:'',
- // 校验状态
- 'check_status'=>$data['check_status'],
- // 状态
- 'status'=>$data['status'],
- ];
- if($data['equipment_type']==2)
- {
- $hydraulic=[
- // 编号
- 'number'=>$data['number'],
- // 所属部门
- 'department_id'=>$data['department_id'],
- //备注
- 'remark'=>$data['remark'],
- 'max_pressure'=>$data['max_pressure'],
- 'min_pressure'=>$data['min_pressure'],
- 'imei'=>$data['imei'],
- 'effective_period'=>$data['effective_period'],
- //设备的id
- 'eq_id'=>$id
- ];
- Hydraulic::where('id',$data['list']['id'])->update($hydraulic);
- }
- //保存扳手
- if($data['equipment_type']==3||$data['equipment_type']==4)
- {
-
- $wrench = [
- // 编号
- 'number'=>$data['number'],
- //设备id
- 'eq_id'=>$id,
- // 所属部门
- 'department_id'=>$data['department_id'],
- 'remark'=>$data['remark'],
-
- 'pressure'=>$data['pressure'],
- 'angle_sensor'=>$data['angle_sensor'],
- // 扭矩
- 'torque'=>$data['torque'],
- ];
- Wrench::where('id',$data['list']['id'])->update($wrench);
- }
- return CatchResponse::success($this->hydEquipmentModel->updateBy($id, $hydequ));
- }
-
- /**
- * 删除
- * @time 2022年06月21日 11:02
- * @param $id
- */
- public function delete($id) : \think\Response
- {
- return CatchResponse::success($this->hydEquipmentModel->deleteBy($id));
- }
- /**
- * @Descripttion: 获取设备状态和校验状态
- * @name: likang
- * @return {*}
- */
- public function getHydEquipmentType(Request $request)
- {
- $data=$request->get();
- $code = $data['code'];
- $sysDict = new SysDictData();
- $list = $sysDict->getTypesByCodeWithRemark($code,'');
- return CatchResponse::success($list);
-
- }
- }
|