123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- <?php
- namespace catchAdmin\api\controller;
- use catchAdmin\hydraulic\model\DeviceMold;
- use catchAdmin\hydraulic\model\Hydraulic as ModelHydraulic;
- use catchAdmin\hydraulic\model\maintenancemapper;
- use catchAdmin\permissions\model\Users;
- use catchAdmin\worklocation\model\WorkRecord as ModelWorkRecord;
- use catcher\base\CatchRequest as Request;
- use catcher\CatchResponse;
- use catcher\base\CatchController;
- use Hydraulic;
- use \think\facade\Db;
- use Workerman\Worker;
- use WorkRecord;
- class Api extends CatchController
- {
- /**
- * @Descripttion: 上传紧固模式
- * @name: likang
- * @return {*}
- */
- public function UploadWorkRecordFA()
- {
- $param = json_decode(file_get_contents("php://input"), true);
- //校验imei是否存在
- if (!isset($param['IMEI']) || $param['IMEI'] == '') {
- json_fail('缺少设备IMEI号参数');
- }
- $Imei = $param['IMEI'];
- if (!$this->IsImei($Imei)) {
- json_fail('该Imei号不存在');
- }
- if (!($param['SoftVersion']) || $param['SoftVersion'] == '') {
- $param['SoftVersion'] = 0;
- }
- $version = $param['SoftVersion'];
- $this->Conversion($param, 1);
- return json_success('获取成功', '', $Imei);
- }
- /**
- * @Descripttion: 上传维护模式
- * @name: likang
- * @return {*}
- */
- public function UploadWorkRecordMA()
- {
- $param = json_decode(file_get_contents("php://input"), true);
- //校验imei是否存在
- if (!isset($param['IMEI']) || $param['IMEI'] == '') {
- json_fail('缺少设备IMEI号参数');
- }
- $Imei = $param['IMEI'];
- if (!$this->IsImei($Imei)) {
- json_fail('该Imei号不存在');
- }
- if (!($param['SoftVersion']) || $param['SoftVersion'] == '') {
- $param['SoftVersion'] = 0;
- }
- $version = $param['SoftVersion'];
- $this->Conversion($param, 2);
- return json_success('获取成功', '', $Imei);
- }
- /**
- * @Descripttion: Imei 是否存在
- * @name: likang
- * @param {*} $imei
- * @return {*}
- */
- private function IsImei($imei)
- {
- $data = ModelHydraulic::where('imei', $imei)->find();
- if ($data) {
- return true;
- } else {
- return false;
- }
- }
- /**
- * @Descripttion:
- * @name: likang
- * @param {*} $data 数据内容
- * @param {*} $type 工作类型
- * @return {*}
- */
- private function Conversion($data, $type)
- {
- $content = [];
- $content['creator_id'] = Users::where('username', $data['Username'])->value('id');
- $content['wrench_number'] = $data['WrenchNumber'];
- $content['fan_number'] = $data['TurbineNumber'];
- $content['fan_model'] = $data['Model'];
- $content['parts'] = $data['PartNumber'];
- $content['work_sign'] = $data['WorkPos'];
- $content['boit_type'] = $data['BoltModel'];
- $content['bolt_number'] = $data['BoltNumber'];
- $content['boit_total'] = $data['BoltTotal'];
- $content['set_torque'] = $data['SetTorque'];
- $content['fastening_torque'] = $data['FasteningTorque'];
- $content['set_stress'] = $data['SetStress'];
- $content['fastening_stress'] = $data['FasteningStress'];
- $content['fastening_status'] = $data['FasteningStatus'];
- $content['fastening_time'] = $data['Time'];
- $content['move_angle'] = $data['WrenchAngle'];
- $content['imei'] = $data['IMEI'];
- $content['FasteningStatus'] = $data['FasteningStatus'];
- if ($type == 2) {
- $content['wrench_type'] = $data['FasteningStatus'];
- if ($data['FasteningStatus'] == 3) {
- if ($content['move_angle'] > 2) {
- $content['FasteningStatus'] = 2;
- }
- } else {
- $content['FasteningStatus'] = 1;
- }
- } else {
- $content['wrench_type'] = 1;
- }
- $workRecod = new ModelWorkRecord();
- $bool = $workRecod->save($content);
- }
- }
|