|
@@ -1,5 +1,7 @@
|
|
|
package com.bz.smart_city.service.impl;
|
|
|
|
|
|
+import com.alibaba.fastjson.JSONArray;
|
|
|
+import com.alibaba.fastjson.JSONObject;
|
|
|
import com.bz.smart_city.commom.model.Pagination;
|
|
|
import com.bz.smart_city.commom.util.UserUtil;
|
|
|
import com.bz.smart_city.dao.MeterReadRecordMapper;
|
|
@@ -11,15 +13,24 @@ import com.bz.smart_city.dto.WarningLogDto;
|
|
|
import com.bz.smart_city.entity.WarningRule;
|
|
|
import com.bz.smart_city.service.BuildingService;
|
|
|
import com.github.pagehelper.PageHelper;
|
|
|
+import org.apache.commons.lang3.StringUtils;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.beans.factory.annotation.Value;
|
|
|
+import org.springframework.http.HttpEntity;
|
|
|
+import org.springframework.http.HttpHeaders;
|
|
|
+import org.springframework.http.MediaType;
|
|
|
+import org.springframework.http.ResponseEntity;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
import javax.annotation.Resource;
|
|
|
import com.bz.smart_city.entity.WarningLog;
|
|
|
import com.bz.smart_city.dao.WarningLogMapper;
|
|
|
import com.bz.smart_city.service.WarningLogService;
|
|
|
+import org.springframework.util.LinkedMultiValueMap;
|
|
|
+import org.springframework.util.MultiValueMap;
|
|
|
+import org.springframework.web.client.RestTemplate;
|
|
|
|
|
|
import java.time.LocalDateTime;
|
|
|
-import java.util.List;
|
|
|
+import java.util.*;
|
|
|
|
|
|
@Service
|
|
|
public class WarningLogServiceImpl implements WarningLogService{
|
|
@@ -33,6 +44,10 @@ public class WarningLogServiceImpl implements WarningLogService{
|
|
|
private BuildingService buildingService;
|
|
|
@Resource
|
|
|
private MeterReadRecordMapper meterReadRecordMapper;
|
|
|
+ @Value("${account_userInfo_url}")
|
|
|
+ private String accountUserInfoUrl;
|
|
|
+
|
|
|
+
|
|
|
|
|
|
@Override
|
|
|
public int insertSelective(WarningLog record) {
|
|
@@ -49,8 +64,44 @@ public class WarningLogServiceImpl implements WarningLogService{
|
|
|
LoginUser loginUser = UserUtil.getCurrentUser();
|
|
|
PageHelper.startPage(pageNum,pageSize);
|
|
|
List<WarningLogDto> list = warningLogMapper.getList(loginUser.getSiteId(),channelId,deviceNo,warningType,clientName,feedbackStatus,provinceId,cityId,regionId,communityId,buildingId,startDate,endDate,UserUtil.getCurrentSiteProgramItems(loginUser));
|
|
|
+ Set<String>meterCodes=new HashSet<>();
|
|
|
+ list.forEach(warningLogDto -> {
|
|
|
+ meterCodes.add(warningLogDto.getMeterCode());
|
|
|
+ });
|
|
|
+ Map<String,Object>args=new HashMap<>();
|
|
|
+ args.put("metercodes", meterCodes);
|
|
|
+ String result = sendApiReQuest(accountUserInfoUrl, JSONObject.toJSONString(args));
|
|
|
+ if(result!=null){
|
|
|
+ JSONArray array = JSONArray.parseArray(result);
|
|
|
+ list.forEach(warningLogDto -> {
|
|
|
+ for (int i = 0; i < array.size(); i++) {
|
|
|
+ JSONObject accountInfo=array.getJSONObject(i);
|
|
|
+ if(accountInfo.getString("metercode").equals(warningLogDto.getMeterCode())){
|
|
|
+ warningLogDto.setAccountName(accountInfo.getString("userName"));
|
|
|
+ warningLogDto.setAccountPhone(accountInfo.getString("phone"));
|
|
|
+ warningLogDto.setAccountNumber(accountInfo.getString("accountNumber"));
|
|
|
+ }
|
|
|
+ }
|
|
|
+ });
|
|
|
+ }
|
|
|
+
|
|
|
return new Pagination<>(list);
|
|
|
}
|
|
|
+ private String sendApiReQuest(String path , String args){
|
|
|
+ HttpHeaders headers = new HttpHeaders();
|
|
|
+ headers.setContentType(MediaType.APPLICATION_JSON);
|
|
|
+ HttpEntity<String> formEntity = new HttpEntity<>(args, headers);
|
|
|
+
|
|
|
+ RestTemplate restTemplate=new RestTemplate();
|
|
|
+ ResponseEntity<String> stringResponseEntity = restTemplate.postForEntity(path, formEntity,
|
|
|
+ String.class);
|
|
|
+ JSONObject info = JSONObject.parseObject(stringResponseEntity.getBody());
|
|
|
+ String result=null;
|
|
|
+ if(info.getInteger("status")==0){
|
|
|
+ result=info.getString("data");
|
|
|
+ }
|
|
|
+ return result;
|
|
|
+ }
|
|
|
|
|
|
@Override
|
|
|
public List<BuildingSelectDto> getAreaList(Integer channelId, String deviceNo, Integer warningType, String clientName, Integer feedbackStatus, LocalDateTime startDate, LocalDateTime endDate) {
|