|
@@ -55,6 +55,26 @@ class HydEquipment extends Model
|
|
|
// 软删除
|
|
|
'deleted_at',
|
|
|
);
|
|
|
+ public function getList()
|
|
|
+ {
|
|
|
+ $res = $this->dataRange()
|
|
|
+ ->catchSearch()
|
|
|
+ ->append(['classification', 'equ_type_name', 'list', 'status1', 'check_status1'])
|
|
|
+ ->order($this->aliasField('id'), 'desc')
|
|
|
+ ->paginate();
|
|
|
+ return $res;
|
|
|
+ }
|
|
|
+ /**
|
|
|
+ * 获取轨迹地图列表定位不分页 只查询有定位时间的
|
|
|
+ */
|
|
|
+ public function queryLocationList()
|
|
|
+ {
|
|
|
+ $res = $this->dataRange()
|
|
|
+ ->catchSearch()
|
|
|
+
|
|
|
+ ->select();
|
|
|
+ return $res;
|
|
|
+ }
|
|
|
//物料号搜索
|
|
|
public function searchMaterialNumberAttr($query, $value, $data)
|
|
|
{
|
|
@@ -88,15 +108,6 @@ class HydEquipment extends Model
|
|
|
}
|
|
|
return $query->where('equipment_type', 'in', $ids);
|
|
|
}
|
|
|
- public function getList()
|
|
|
- {
|
|
|
- $res = $this->dataRange()
|
|
|
- ->catchSearch()
|
|
|
- ->append(['classification', 'equ_type_name', 'list', 'status1', 'check_status1'])
|
|
|
- ->order($this->aliasField('id'), 'desc')
|
|
|
- ->paginate();
|
|
|
- return $res;
|
|
|
- }
|
|
|
public function getEquipmentTypeAttr()
|
|
|
{
|
|
|
$id = $this->getData('equipment_type');
|