|
@@ -178,7 +178,7 @@ public class DeviceServiceImpl implements DeviceService {
|
|
|
WMeterType wMeterType = wMeterTypeMapper.getChannelIdAndLevel(sysId, 2);
|
|
|
if (wMeterType != null || sysId == -99) {
|
|
|
DateTimeFormatter df = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss");
|
|
|
- String[] rowsName = new String[]{"序号", "设备状态", "设备编号", "水表档案编号", "水表电子号", "集中器编码", "采集器编码", "水表厂商", "所属客户", "所属小区", "所属建筑", "安装地址", "故障类型", "连续故障天数", "水表当前读数", "最后一次更新时间","阀门状态","出厂时间","安装时间","验收时间"};
|
|
|
+ String[] rowsName = new String[]{"序号", "设备状态", "设备编号", "水表档案编号", "水表电子号", "集中器编码", "采集器编码", "水表厂商", "所属客户", "所属小区", "所属建筑", "安装地址", "故障类型", "连续故障天数", "水表当前读数", "最后一次更新时间","阀门控制","出厂时间","安装时间","验收时间"};
|
|
|
List<Object[]> dataList = newArrayList();
|
|
|
Object[] objs = null;
|
|
|
for (int i = 0; i < list.size(); i++) {
|
|
@@ -200,7 +200,7 @@ public class DeviceServiceImpl implements DeviceService {
|
|
|
objs[13] = deviceDto.getDays();
|
|
|
objs[14] = deviceDto.getMeterReading();
|
|
|
objs[15] = deviceDto.getLastReceiveTime()!=null?deviceDto.getLastReceiveTime().format(df):null;
|
|
|
- objs[16] = this.getValveStatusName(deviceDto.getValveStatus());
|
|
|
+ objs[16] = this.getValveStatusName(deviceDto.getIsValve(),deviceDto.getValveStatus());
|
|
|
objs[17] = deviceDto.getPlanTime()!=null?deviceDto.getPlanTime().format(df):null;
|
|
|
objs[18] = deviceDto.getInstallTime()!=null?deviceDto.getInstallTime().format(df):null;
|
|
|
objs[19] = deviceDto.getAcceptTime()!=null?deviceDto.getAcceptTime().format(df):null;
|
|
@@ -239,15 +239,22 @@ public class DeviceServiceImpl implements DeviceService {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- protected String getValveStatusName(Integer valveStatus){
|
|
|
+ protected String getValveStatusName(Integer isValve, Integer valveStatus){
|
|
|
String valveStatusName = "关阀";
|
|
|
- if(valveStatus !=null){
|
|
|
- if(valveStatus == 1){
|
|
|
- valveStatusName = "开阀";
|
|
|
+ if (isValve != null) {
|
|
|
+ if(isValve == 1){
|
|
|
+ if(valveStatus !=null){
|
|
|
+ if(valveStatus == 1){
|
|
|
+ valveStatusName = "开阀";
|
|
|
+ }
|
|
|
+ }else {
|
|
|
+ valveStatusName = "开阀";
|
|
|
+ }
|
|
|
+ }else {
|
|
|
+ valveStatusName = "无阀";
|
|
|
}
|
|
|
- }else {
|
|
|
- valveStatusName = "开阀";
|
|
|
}
|
|
|
+
|
|
|
return valveStatusName;
|
|
|
}
|
|
|
|