HydEquipment.php 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  1. <?php
  2. namespace catchAdmin\hydraulic\model;
  3. use catchAdmin\equipment\model\EquipmentType;
  4. use catcher\base\CatchModel as Model;
  5. use catchAdmin\permissions\model\DataRangScopeTrait;
  6. use catchAdmin\permissions\model\Department as ModelDepartment;
  7. use catchAdmin\system\model\SysDictData;
  8. use Department;
  9. class HydEquipment extends Model
  10. {
  11. use DataRangScopeTrait;
  12. // 表名
  13. public $name = 'hydraulic_equipment';
  14. // 数据库字段映射
  15. public $field = array(
  16. 'id',
  17. // 物料号
  18. 'material_number',
  19. // 设备类别
  20. 'equipment_type',
  21. // 工具名称
  22. 'name',
  23. // 设备型号
  24. 'equipment_model',
  25. // 发放单位
  26. 'issue_unit',
  27. // 固定资产编号
  28. 'fixed_asset_number',
  29. // 类固定资产编号
  30. 'fixed_asset_number2',
  31. // 序列号
  32. 'serial_number',
  33. // 出厂编号
  34. 'factory_number',
  35. // 上次校验时间
  36. 'check_last_time',
  37. // 下次校验时间
  38. 'check_next_time',
  39. // 校验状态
  40. 'check_status',
  41. // 状态
  42. 'status',
  43. 'longitude',
  44. 'latitude',
  45. 'address',
  46. // 创建人ID
  47. 'creator_id',
  48. // 创建时间
  49. 'created_at',
  50. // 更新时间
  51. 'updated_at',
  52. // 软删除
  53. 'deleted_at',
  54. );
  55. public function getList()
  56. {
  57. $res = $this->dataRange()
  58. ->catchSearch()
  59. ->append(['classification', 'equ_type_name', 'list', 'status1', 'check_status1'])
  60. ->order($this->aliasField('id'), 'desc')
  61. ->paginate();
  62. return $res;
  63. }
  64. /**
  65. * 获取轨迹地图列表定位不分页 只查询有定位时间的
  66. */
  67. public function queryLocationList()
  68. {
  69. $res = $this->dataRange()
  70. ->catchSearch()
  71. ->select();
  72. return $res;
  73. }
  74. //物料号搜索
  75. public function searchMaterialNumberAttr($query, $value, $data)
  76. {
  77. return $query->where('material_number', 'like', '%' . $value . '%');
  78. }
  79. //设备类别搜索
  80. public function searchEquipmentTypeAttr($query, $value, $data)
  81. {
  82. return $query->where('equipment_type', '=', $value);
  83. }
  84. //名称
  85. public function searchNameAttr($query, $value, $data)
  86. {
  87. return $query->where('name', 'like', '%' . $value . '%');
  88. }
  89. //设备序列号以及设备资产编号
  90. public function searchNumberAttr($query, $value, $data)
  91. {
  92. return $query->where('serial_number|fixed_asset_number|fixed_asset_number2', 'like', '%' . $value . '%');
  93. }
  94. //根据pid 查询当前子类的设备
  95. public function searchPidAttr($query, $value, $data)
  96. {
  97. $eqtype = new EquipmentType();
  98. $list = $eqtype->getIdbyPid($value);
  99. $ids = [];
  100. foreach ($list as $key => $value) {
  101. $ids[] = $value['id'];
  102. }
  103. return $query->where('equipment_type', 'in', $ids);
  104. }
  105. /**
  106. * @Descripttion: 搜索泵的Imei
  107. * @name: likang
  108. * @return {*}
  109. */
  110. public function searchImeiAttr($query, $value, $data)
  111. {
  112. $ids = Hydraulic::where('imei', 'like', '%' . $value . '%')->column('eq_id');
  113. return $query->where('id', 'in', $ids);
  114. }
  115. public function getEquipmentTypeAttr()
  116. {
  117. $id = $this->getData('equipment_type');
  118. return intval($id);
  119. }
  120. public function getStatusAttr()
  121. {
  122. $id = $this->getData('status');
  123. return intval($id);
  124. }
  125. public function getCheckStatusAttr()
  126. {
  127. $id = $this->getData('check_status');
  128. return intval($id);
  129. }
  130. public function getClassificationAttr()
  131. {
  132. $id = $this->getData('equipment_type');
  133. $eq = new EquipmentType();
  134. $name = $eq->getParentNamebyChildId($id);
  135. return $name;
  136. }
  137. public function getEquTypeNameAttr()
  138. {
  139. $id = $this->getData('equipment_type');
  140. $name = EquipmentType::where('id', $id)->value('name');
  141. return $name;
  142. }
  143. public function getCheckStatus1Attr()
  144. {
  145. $id = $this->getData('check_status');
  146. $Dict = new SysDictData();
  147. $value = $Dict->getValueByCode('Check', $id);
  148. return $value;
  149. }
  150. public function getStatus1Attr()
  151. {
  152. $id = $this->getData('status');
  153. $Dict = new SysDictData();
  154. $value = $Dict->getValueByCode('ToolStatus', $id);
  155. return $value;
  156. }
  157. // public function getCheckLastTimeAttr()
  158. // {
  159. // $time = $this->getData('check_last_time');
  160. // return $time ? date('Y-m-d', $time) : '';
  161. // }
  162. // public function getCheckNextTimeAttr()
  163. // {
  164. // $time = $this->getData('check_next_time');
  165. // return $time ? date('Y-m-d', $time) : '';
  166. // }
  167. public function getListAttr()
  168. {
  169. $id = $this->getData('id');
  170. $type_id = $this->getData('equipment_type');
  171. $sysdict = new SysDictData();
  172. $data = null;
  173. if ($type_id == 2) {
  174. $data = Hydraulic::where('eq_id', $id)->find();
  175. $data["department_name"] = ModelDepartment::where('id', $data['department_id'])->value('department_name');
  176. $data['alarm_state_name'] = $sysdict->getValueByCode('AlarmType', $data['alarm_state']);
  177. return $data;
  178. }
  179. if ($type_id == 3 || $type_id == 4) {
  180. $data = Wrench::where('eq_id', $id)->find();
  181. $data["department_name"] = ModelDepartment::where('id', $data['department_id'])->value('department_name');
  182. $data['alarm_state_name'] = $sysdict->getValueByCode('AlarmType', $data['alarm_state']);
  183. return $data;
  184. } else {
  185. return null;
  186. }
  187. }
  188. /**
  189. * @Descripttion: 上传excel 信息
  190. * @name: likang
  191. * @return {*}
  192. */
  193. public function importExcel()
  194. {
  195. }
  196. public function exportExcel()
  197. {
  198. }
  199. }