|
|
@ -216,29 +216,21 @@ public class CockpitServiceImpl implements CockpitService{ |
|
|
|
d.setWork_time(duration.toHours() + ""); |
|
|
|
} |
|
|
|
// 设备状态
|
|
|
|
d.setDevice_status(PointUpdateUtil.getDeviceStatus(d.getDevice_code())); |
|
|
|
// d.setDevice_status(PointUpdateUtil.getDeviceStatus(d.getDevice_code()));
|
|
|
|
DeviceEnum deviceEnum = DeviceEnum.get(d.getDevice_model(), d.getDevice_code()); |
|
|
|
// 添加图片名字
|
|
|
|
d.setDevice_url(deviceEnum.getPictureName()); |
|
|
|
// todo: 区分窑与其他设备
|
|
|
|
if (d.getDevice_model().equals(DeviceEnum.YAO.getModel())) { |
|
|
|
// acs上报
|
|
|
|
d.setVehicle_qty(15); |
|
|
|
d.setVehicle_max_qty(20); |
|
|
|
d.setVehicle_max_qty(42); // 最大值 已确认
|
|
|
|
} |
|
|
|
// todo: RGV
|
|
|
|
if (d.getDevice_model().equals(DeviceEnum.RGV.getModel())) { |
|
|
|
d.setDevice_status_name("空位无车,满位有车"); |
|
|
|
} |
|
|
|
// todo: 包装机、碟盘机
|
|
|
|
// 分类链表
|
|
|
|
// if (ObjectUtil.isEmpty(map.get(deviceEnum.getKeyName()))) {
|
|
|
|
// List<DeviceInfoDto> de = new ArrayList<>();
|
|
|
|
// de.add(d);
|
|
|
|
// map.put(deviceEnum.getKeyName(), de);
|
|
|
|
// } else {
|
|
|
|
// map.get(deviceEnum.getKeyName()).add(d);
|
|
|
|
// map.put(deviceEnum.getKeyName(), map.get(deviceEnum.getKeyName()));
|
|
|
|
// }
|
|
|
|
}); |
|
|
|
return res; |
|
|
|
} |
|
|
|