Api.php 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. <?php
  2. namespace catchAdmin\api\controller;
  3. use catchAdmin\hydraulic\model\DeviceMold;
  4. use catchAdmin\hydraulic\model\Hydraulic as ModelHydraulic;
  5. use catchAdmin\hydraulic\model\maintenancemapper;
  6. use catchAdmin\permissions\model\Users;
  7. use catchAdmin\worklocation\model\WorkRecord as ModelWorkRecord;
  8. use catcher\base\CatchRequest as Request;
  9. use catcher\CatchResponse;
  10. use catcher\base\CatchController;
  11. use Hydraulic;
  12. use \think\facade\Db;
  13. use Workerman\Worker;
  14. use WorkRecord;
  15. class Api extends CatchController
  16. {
  17. /**
  18. * @Descripttion: 上传紧固模式
  19. * @name: likang
  20. * @return {*}
  21. */
  22. public function UploadWorkRecordFA()
  23. {
  24. $param = json_decode(file_get_contents("php://input"), true);
  25. //校验imei是否存在
  26. if (!isset($param['IMEI']) || $param['IMEI'] == '') {
  27. json_fail('缺少设备IMEI号参数');
  28. }
  29. $Imei = $param['IMEI'];
  30. if (!$this->IsImei($Imei)) {
  31. json_fail('该Imei号不存在');
  32. }
  33. if (!($param['SoftVersion']) || $param['SoftVersion'] == '') {
  34. $param['SoftVersion'] = 0;
  35. }
  36. $version = $param['SoftVersion'];
  37. $this->Conversion($param, 1);
  38. return json_success('获取成功', '', $Imei);
  39. }
  40. /**
  41. * @Descripttion: 上传维护模式
  42. * @name: likang
  43. * @return {*}
  44. */
  45. public function UploadWorkRecordMA()
  46. {
  47. $param = json_decode(file_get_contents("php://input"), true);
  48. //校验imei是否存在
  49. if (!isset($param['IMEI']) || $param['IMEI'] == '') {
  50. json_fail('缺少设备IMEI号参数');
  51. }
  52. $Imei = $param['IMEI'];
  53. if (!$this->IsImei($Imei)) {
  54. json_fail('该Imei号不存在');
  55. }
  56. if (!($param['SoftVersion']) || $param['SoftVersion'] == '') {
  57. $param['SoftVersion'] = 0;
  58. }
  59. $version = $param['SoftVersion'];
  60. $this->Conversion($param, 2);
  61. return json_success('获取成功', '', $Imei);
  62. }
  63. /**
  64. * @Descripttion: Imei 是否存在
  65. * @name: likang
  66. * @param {*} $imei
  67. * @return {*}
  68. */
  69. private function IsImei($imei)
  70. {
  71. $data = ModelHydraulic::where('imei', $imei)->find();
  72. if ($data) {
  73. return true;
  74. } else {
  75. return false;
  76. }
  77. }
  78. /**
  79. * @Descripttion:
  80. * @name: likang
  81. * @param {*} $data 数据内容
  82. * @param {*} $type 工作类型
  83. * @return {*}
  84. */
  85. private function Conversion($data, $type)
  86. {
  87. $content = [];
  88. $content['creator_id'] = Users::where('username', $data['Username'])->value('id');
  89. $content['wrench_number'] = $data['WrenchNumber'];
  90. $content['fan_number'] = $data['TurbineNumber'];
  91. $content['fan_model'] = $data['Model'];
  92. $content['parts'] = $data['PartNumber'];
  93. $content['work_sign'] = $data['WorkPos'];
  94. $content['boit_type'] = $data['BoltModel'];
  95. $content['bolt_number'] = $data['BoltNumber'];
  96. $content['boit_total'] = $data['BoltTotal'];
  97. $content['set_torque'] = $data['SetTorque'];
  98. $content['fastening_torque'] = $data['FasteningTorque'];
  99. $content['set_stress'] = $data['SetStress'];
  100. $content['fastening_stress'] = $data['FasteningStress'];
  101. $content['fastening_status'] = $data['FasteningStatus'];
  102. $content['fastening_time'] = $data['Time'];
  103. $content['move_angle'] = $data['WrenchAngle'];
  104. $content['imei'] = $data['IMEI'];
  105. $content['FasteningStatus'] = $data['FasteningStatus'];
  106. if ($type == 2) {
  107. $content['wrench_type'] = $data['FasteningStatus'];
  108. if ($data['FasteningStatus'] == 3) {
  109. if ($content['move_angle'] > 2) {
  110. $content['FasteningStatus'] = 2;
  111. }
  112. } else {
  113. $content['FasteningStatus'] = 1;
  114. }
  115. } else {
  116. $content['wrench_type'] = 1;
  117. }
  118. $workRecod = new ModelWorkRecord();
  119. $bool = $workRecod->save($content);
  120. }
  121. }