|
@@ -1,11 +1,13 @@
|
|
|
<?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
|
|
|
{
|
|
@@ -33,7 +35,83 @@ class HydEquipment extends CatchController
|
|
|
*/
|
|
|
public function save(Request $request) : \think\Response
|
|
|
{
|
|
|
- return CatchResponse::success($this->hydEquipmentModel->storeBy($request->post()));
|
|
|
+ $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();
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -54,7 +132,76 @@ class HydEquipment extends CatchController
|
|
|
*/
|
|
|
public function update(Request $request, $id) : \think\Response
|
|
|
{
|
|
|
- return CatchResponse::success($this->hydEquipmentModel->updateBy($id, $request->post()));
|
|
|
+ $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));
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -66,4 +213,18 @@ class HydEquipment extends CatchController
|
|
|
{
|
|
|
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);
|
|
|
+
|
|
|
+ }
|
|
|
}
|