Lssue.php 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. <?php
  2. namespace catchAdmin\system\model;
  3. use catchAdmin\hydraulic\model\HydEquipment;
  4. use catchAdmin\hydraulic\model\Hydraulic;
  5. use catchAdmin\permissions\model\DataRangScopeTrait;
  6. use catcher\base\CatchModel as Model;
  7. use think\facade\Db;
  8. class Lssue extends Model
  9. {
  10. use DataRangScopeTrait;
  11. // 表名
  12. public $name = 'lssue';
  13. // 数据库字段映射
  14. public $field = array(
  15. 'id',
  16. // 内容
  17. 'file_name',
  18. // 所有设备
  19. 'equ_ids',
  20. // 指令类型
  21. 'type',
  22. //指令类型
  23. 'directive',
  24. //详情
  25. 'info',
  26. // 创建人ID
  27. 'creator_id',
  28. // 创建时间
  29. 'created_at',
  30. // 更新时间
  31. 'updated_at',
  32. // 软删除
  33. 'deleted_at',
  34. );
  35. public function getList()
  36. {
  37. $res = $this->dataRange()
  38. ->catchSearch()
  39. ->order($this->aliasField('id'), 'desc')
  40. ->paginate();
  41. return $res;
  42. }
  43. public function setEquIdsAttr($value)
  44. {
  45. $data = json_encode($value);
  46. return $data;
  47. }
  48. public function getEquIdsAttr()
  49. {
  50. $data = $this->getData('equ_ids');
  51. $data = json_decode($data, true);
  52. $list = HydEquipment::where('id', 'in', $data)->column('name');
  53. return implode(',', $list);
  54. }
  55. public function getDirectiveAttr()
  56. {
  57. $Directive = $this->getData('directive');
  58. $sd = new SysDictData();
  59. return $sd->getValueByCode('directive', $Directive);
  60. }
  61. /**
  62. * @Descripttion: 下发指令
  63. * @name: likang
  64. * @return {*}
  65. */
  66. public function IssueAll($data)
  67. {
  68. $type = $data['type'];
  69. $content = [
  70. 'file_name' => $data['file_name']
  71. ];
  72. if ($type == 1) {
  73. $msetime = msectime();
  74. $cont = [
  75. 'Type' => 'directive',
  76. 'ContentType' => 'File',
  77. 'Content' => json_encode($content),
  78. 'ContentId' => md5(time() . mt_rand(1, 1000000)),
  79. 'AddTime' => $msetime,
  80. 'Version' => $msetime,
  81. 'Status' => 2
  82. ];
  83. Db::name('publish')->save($cont);
  84. }
  85. if ($type == 2) {
  86. $list = HydEquipment::alias('e')->leftJoin('hydraulic h', 'e.id = h.eq_id')
  87. ->where('e.id', 'in', $data['equ_ids'])->field('h.imei as imei')->select()->toArray();
  88. foreach ($list as $item) {
  89. if (!$item['imei']) {
  90. continue;
  91. } else {
  92. $msetime = msectime();
  93. $cont = [
  94. 'Type' => 'directive',
  95. 'ContentType' => 'File',
  96. 'Content' => json_encode($content),
  97. 'ContentId' => md5(time() . mt_rand(1, 1000000)),
  98. 'AddTime' => $msetime,
  99. 'Version' => $msetime,
  100. 'Imei' => $item['imei'],
  101. 'Status' => 2
  102. ];
  103. Db::name('publish')->save($cont);
  104. }
  105. }
  106. }
  107. }
  108. }