|
@@ -105,15 +105,16 @@ public class PartyARetryServiceImpl implements PartyARetryService {
|
|
|
// tsb.setPackageId(Integer.valueOf(noteList.get(0).getPackageId()));
|
|
|
|
|
|
try {
|
|
|
- List<WmTaskContent> tsb = noteList.stream().map(note -> {
|
|
|
- WmTask task = wmTaskService.getById(note.getTaskId());
|
|
|
- return wmTaskContentService.getById(task.getTaskContentId());
|
|
|
- }).collect(Collectors.toList());
|
|
|
+ // List<WmTaskContent> tsb = noteList.stream().map(note -> {
|
|
|
+ // WmTask task = wmTaskService.getById(note.getTaskId());
|
|
|
+ // return wmTaskContentService.getById(task.getTaskContentId());
|
|
|
+ // }).collect(Collectors.toList());
|
|
|
|
|
|
Map<String, Object> params = new HashMap<>();
|
|
|
params.put("token", token);
|
|
|
params.put("code", "2000");
|
|
|
- params.put("data", JSONUtil.toJsonStr(tsb));
|
|
|
+ // params.put("data", JSONUtil.toJsonStr(tsb));
|
|
|
+ params.put("data", JSONUtil.toJsonStr(null));
|
|
|
params.put("success_msg", "SUCCESS");
|
|
|
ResponseEntity<String> resp = getResp(params, PartyARetryService.WENWEN_SETTLEMENT_RESULTS_URL);
|
|
|
if (HttpStatus.OK.equals(resp.getStatusCode())) {
|
|
@@ -131,7 +132,7 @@ public class PartyARetryServiceImpl implements PartyARetryService {
|
|
|
throw new RuntimeException("问问风湿认证回调请求失败");
|
|
|
}
|
|
|
}finally {
|
|
|
- log.info("推送三方开始");
|
|
|
+ log.info("推送三方结束");
|
|
|
}
|
|
|
|
|
|
}
|