|
@@ -8,10 +8,6 @@ import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
import com.gyee.viewticket.util.TicketUtil;
|
|
import com.gyee.viewticket.util.TicketUtil;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.stereotype.Service;
|
|
import org.springframework.stereotype.Service;
|
|
-import sun.text.resources.fr.FormatData_fr;
|
|
|
|
-
|
|
|
|
-import java.lang.reflect.Array;
|
|
|
|
-import java.text.ParseException;
|
|
|
|
import java.text.SimpleDateFormat;
|
|
import java.text.SimpleDateFormat;
|
|
import java.util.*;
|
|
import java.util.*;
|
|
import java.util.stream.Collectors;
|
|
import java.util.stream.Collectors;
|
|
@@ -67,7 +63,7 @@ public class WorkticketServiceImpl extends ServiceImpl<WorkticketMapper, Worktic
|
|
workticket.setWspeed(wspeed);//风速
|
|
workticket.setWspeed(wspeed);//风速
|
|
String wxbj = TicketUtil.getWxbj(description);
|
|
String wxbj = TicketUtil.getWxbj(description);
|
|
if (wxbj.length() > 0) {
|
|
if (wxbj.length() > 0) {
|
|
- String loc = locationsService.gerDescription(location.trim(), wxbj.trim());
|
|
|
|
|
|
+ String loc = locationsService.getDescription(location.trim(), wxbj.trim());
|
|
workticket.setWtnum(loc.length() > 0 ? loc : location);
|
|
workticket.setWtnum(loc.length() > 0 ? loc : location);
|
|
} else {
|
|
} else {
|
|
workticket.setWtnum(location);//风电机编号
|
|
workticket.setWtnum(location);//风电机编号
|
|
@@ -118,10 +114,21 @@ public class WorkticketServiceImpl extends ServiceImpl<WorkticketMapper, Worktic
|
|
|
|
|
|
Map<String, List<Map>> wpMap = new LinkedHashMap<>();
|
|
Map<String, List<Map>> wpMap = new LinkedHashMap<>();
|
|
for (String wp : workdepts) {
|
|
for (String wp : workdepts) {
|
|
- if ("风场风机".equals(type) && wp.endsWith("DZ")) {
|
|
|
|
|
|
+ if ("风场风机".equals(type.getParam()) && wp.endsWith("DZ")) {
|
|
continue;
|
|
continue;
|
|
}
|
|
}
|
|
List<Map> map = workticketMapper.selectWorkticketList(wp, type.getParam(), st, et);
|
|
List<Map> map = workticketMapper.selectWorkticketList(wp, type.getParam(), st, et);
|
|
|
|
+
|
|
|
|
+ if ("风场风机".equals(type.getParam())) {
|
|
|
|
+ map.stream().forEach(i->{
|
|
|
|
+ String wtnum = i.get("wtnum").toString();
|
|
|
|
+ String location = locationsService.getLocations(wtnum);
|
|
|
|
+ i.put("location",location);
|
|
|
|
+
|
|
|
|
+ });
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+
|
|
wpMap.put(wp, map);
|
|
wpMap.put(wp, map);
|
|
}
|
|
}
|
|
objectType.put(type.getValue(), wpMap);
|
|
objectType.put(type.getValue(), wpMap);
|