|
@@ -2,13 +2,16 @@
|
|
|
|
|
|
namespace catchAdmin\api\controller;
|
|
namespace catchAdmin\api\controller;
|
|
|
|
|
|
|
|
+use catchAdmin\hydraulic\model\Hydraulic;
|
|
use catchAdmin\hydraulic\model\maintenancemapper;
|
|
use catchAdmin\hydraulic\model\maintenancemapper;
|
|
use catchAdmin\hydraulic\model\Wrench as ModelWrench;
|
|
use catchAdmin\hydraulic\model\Wrench as ModelWrench;
|
|
|
|
+use catchAdmin\worklocation\model\WorkRecord;
|
|
use catcher\base\CatchRequest as Request;
|
|
use catcher\base\CatchRequest as Request;
|
|
use catcher\CatchResponse;
|
|
use catcher\CatchResponse;
|
|
use catcher\base\CatchController;
|
|
use catcher\base\CatchController;
|
|
use PhpParser\Node\Expr\FuncCall;
|
|
use PhpParser\Node\Expr\FuncCall;
|
|
use think\facade\Db;
|
|
use think\facade\Db;
|
|
|
|
+use Workerman\Worker;
|
|
use Wrench;
|
|
use Wrench;
|
|
|
|
|
|
class Tool extends Base
|
|
class Tool extends Base
|
|
@@ -18,43 +21,56 @@ class Tool extends Base
|
|
* @name: likang
|
|
* @name: likang
|
|
* @return {*}
|
|
* @return {*}
|
|
*/
|
|
*/
|
|
|
|
+
|
|
public function Issued()
|
|
public function Issued()
|
|
{
|
|
{
|
|
|
|
+ $param = json_decode(file_get_contents("php://input"), true);
|
|
//校验imei是否存在
|
|
//校验imei是否存在
|
|
- if (!isset($_GET['imei']) || $_GET['imei'] == '') {
|
|
|
|
|
|
+ if (!isset($param['IMEI']) || $param['IMEI'] == '') {
|
|
json_fail('缺少设备IMEI号参数');
|
|
json_fail('缺少设备IMEI号参数');
|
|
}
|
|
}
|
|
- $Imei = $_GET['imei'];
|
|
|
|
- if (!isset($_GET['version']) || $_GET['version'] == '') {
|
|
|
|
- json_fail('缺少版本号参数', '', $Imei);
|
|
|
|
|
|
+ $Imei = $param['IMEI'];
|
|
|
|
+ if (!$this->IsImei($Imei)) {
|
|
|
|
+ json_fail('该Imei号不存在');
|
|
|
|
+ }
|
|
|
|
+ if (!($param['SoftVersion']) || $param['SoftVersion'] == '') {
|
|
|
|
+
|
|
|
|
+ $param['SoftVersion'] = 0;
|
|
}
|
|
}
|
|
- $version = $_GET['version'];
|
|
|
|
|
|
+ $version = $param['SoftVersion'];
|
|
return $this->DataIssued($Imei, $version);
|
|
return $this->DataIssued($Imei, $version);
|
|
}
|
|
}
|
|
//收到的数据
|
|
//收到的数据
|
|
public function receive()
|
|
public function receive()
|
|
{
|
|
{
|
|
|
|
+ $param = json_decode(file_get_contents("php://input"), true);
|
|
//校验imei是否存在
|
|
//校验imei是否存在
|
|
$where = [];
|
|
$where = [];
|
|
- if (!isset($_POST['imei']) || $_POST['imei'] == '') {
|
|
|
|
|
|
+ if (!isset($param['Imei']) || $param['Imei'] == '') {
|
|
|
|
+
|
|
json_fail('缺少设备IMEI号参数');
|
|
json_fail('缺少设备IMEI号参数');
|
|
}
|
|
}
|
|
- $Imei = $_POST['imei'];
|
|
|
|
- if (!isset($_POST['version']) || $_POST['version'] == '') {
|
|
|
|
- json_fail('缺少版本号参数', '', $Imei);
|
|
|
|
|
|
+ $Imei = $param['Imei'];
|
|
|
|
+ //校验Imei是否存在
|
|
|
|
+ if (!$this->IsImei($Imei)) {
|
|
|
|
+ json_fail('该Imei号不存在');
|
|
|
|
+ }
|
|
|
|
+ if (!isset($param['CntVersion']) || $param['CntVersion'] == '') {
|
|
|
|
+ $param['CntVersion'] = 0;
|
|
}
|
|
}
|
|
- $version = $_POST['version'];
|
|
|
|
|
|
+ $version = $param['CntVersion'];
|
|
|
|
|
|
- if (!isset($_POST['Succ']) || $_POST['Succ'] == '') {
|
|
|
|
|
|
+ if (!isset($param['Succ']) || $param['Succ'] == '') {
|
|
json_fail('缺少返回结果', '', $Imei);
|
|
json_fail('缺少返回结果', '', $Imei);
|
|
}
|
|
}
|
|
- $Succ = $_POST['Succ'];
|
|
|
|
- if (!isset($_POST['Extra'])) {
|
|
|
|
|
|
+ $Succ = $param['Succ'];
|
|
|
|
+ if (!isset($param['Extra'])) {
|
|
json_fail('缺少回复内容参数', '', $Imei);
|
|
json_fail('缺少回复内容参数', '', $Imei);
|
|
}
|
|
}
|
|
- $Extra = $_POST['Extra'];
|
|
|
|
|
|
+ $Extra = $param['Extra'];
|
|
$where[] = ['PublishVersion', '=', $version];
|
|
$where[] = ['PublishVersion', '=', $version];
|
|
$where[] = ['Imei', '=', $Imei];
|
|
$where[] = ['Imei', '=', $Imei];
|
|
|
|
+
|
|
$ack = Db::name("publish_ack")->where($where)->find();
|
|
$ack = Db::name("publish_ack")->where($where)->find();
|
|
if (!$ack) {
|
|
if (!$ack) {
|
|
json_fail('没有找到下发记录', '', $Imei);
|
|
json_fail('没有找到下发记录', '', $Imei);
|
|
@@ -83,16 +99,26 @@ class Tool extends Base
|
|
['ContentType', '=', 'File'],
|
|
['ContentType', '=', 'File'],
|
|
['Version', '>', $version]
|
|
['Version', '>', $version]
|
|
];
|
|
];
|
|
-
|
|
|
|
|
|
+ $where3 = [];
|
|
|
|
+ $CntVersion = $version;
|
|
|
|
+ $content = null;
|
|
$list = Db::name('publish')
|
|
$list = Db::name('publish')
|
|
->whereOr([$where1, $where2])
|
|
->whereOr([$where1, $where2])
|
|
- //->where($where1)
|
|
|
|
->order('Version asc')->limit(5)->select();
|
|
->order('Version asc')->limit(5)->select();
|
|
-
|
|
|
|
-
|
|
|
|
|
|
+ if ($list->isEmpty()) {
|
|
|
|
+ return json_success('获取成功', $content, $Imei);
|
|
|
|
+ }
|
|
foreach ($list as $key => $value) {
|
|
foreach ($list as $key => $value) {
|
|
|
|
|
|
$da = json_decode($value['Content'], true);
|
|
$da = json_decode($value['Content'], true);
|
|
|
|
+ //如果是下发计划的话,或取当前长传记录 记录下数据
|
|
|
|
+ if ($value['ContentType'] == 'WorkPlan') {
|
|
|
|
+ $where3[] = ['wind_number', '=', $da['wnum']];
|
|
|
|
+ $where3[] = ['fan_number', '=', $da['fnum']];
|
|
|
|
+ $where3[] = ['parts', '=', $da['parts']];
|
|
|
|
+ $where3[] = ['work_sign', '=', $da['work']];
|
|
|
|
+ $da['lt'] = WorkRecord::where($where3)->order('fastening_time desc')->value('fastening_torque');
|
|
|
|
+ }
|
|
$da['id'] = strval($da['id']);
|
|
$da['id'] = strval($da['id']);
|
|
$content[] = [
|
|
$content[] = [
|
|
'OpType' => $value['Type'],
|
|
'OpType' => $value['Type'],
|
|
@@ -113,4 +139,19 @@ class Tool extends Base
|
|
Db::name('publish_ack')->save($ack);
|
|
Db::name('publish_ack')->save($ack);
|
|
return json_success('获取成功', $content, $Imei);
|
|
return json_success('获取成功', $content, $Imei);
|
|
}
|
|
}
|
|
|
|
+ /**
|
|
|
|
+ * @Descripttion: Imei 是否存在
|
|
|
|
+ * @name: likang
|
|
|
|
+ * @param {*} $imei
|
|
|
|
+ * @return {*}
|
|
|
|
+ */
|
|
|
|
+ private function IsImei($imei)
|
|
|
|
+ {
|
|
|
|
+ $data = Hydraulic::where('imei', $imei)->find();
|
|
|
|
+ if ($data) {
|
|
|
|
+ return true;
|
|
|
|
+ } else {
|
|
|
|
+ return false;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
}
|
|
}
|