|
|
|
@ -170,7 +170,7 @@ public class ReportJob {
|
|
|
|
|
try {
|
|
|
|
|
List<ReportDto> reportDtos = new ArrayList<>();
|
|
|
|
|
int pageNum = 1;
|
|
|
|
|
final int pageSize=10;
|
|
|
|
|
final int pageSize = 5;
|
|
|
|
|
boolean loopCondition = true;
|
|
|
|
|
do {
|
|
|
|
|
String requestParam = organizationQuerySdRyInspectReportParam(sdRyReportPatientId, tBasic, pageNum, pageSize);
|
|
|
|
@ -226,6 +226,7 @@ public class ReportJob {
|
|
|
|
|
map.put("StartTime", startTime);
|
|
|
|
|
map.put("EndTime", endTime);
|
|
|
|
|
map.put("PatientId", sdRyReportPatientId);
|
|
|
|
|
map.put("PatentTypeCode", "1");
|
|
|
|
|
return Func.toJson(map);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -292,6 +293,7 @@ public class ReportJob {
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 查询job需要的开始时间
|
|
|
|
|
*
|
|
|
|
|
* @param jobType job类型
|
|
|
|
|
* @return job需要的开始时间,未查到 默认 1801-01-01 00:00:00
|
|
|
|
|
*/
|
|
|
|
@ -331,7 +333,7 @@ public class ReportJob {
|
|
|
|
|
try {
|
|
|
|
|
List<ReportDto> reportDtos = new ArrayList<>();
|
|
|
|
|
int pageNum = 1;
|
|
|
|
|
final int pageSize=10;
|
|
|
|
|
final int pageSize = 5;
|
|
|
|
|
boolean loopCondition = true;
|
|
|
|
|
do {
|
|
|
|
|
String requestParam = organizationQuerySdRyLisReportParam(sdRyReportPatientId, tBasic, pageNum, pageSize);
|
|
|
|
@ -444,6 +446,7 @@ public class ReportJob {
|
|
|
|
|
map.put("StartTime", startTime);
|
|
|
|
|
map.put("EndTime", endTime);
|
|
|
|
|
map.put("PatientId", sdRyReportPatientId);
|
|
|
|
|
map.put("PatentTypeCode", "1");
|
|
|
|
|
return Func.toJson(map);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -460,11 +463,11 @@ public class ReportJob {
|
|
|
|
|
return new ArrayList<>();
|
|
|
|
|
}
|
|
|
|
|
String param = organizationQuerySdRyReportIndexParam(sDryIndex);
|
|
|
|
|
String[] params = {param};
|
|
|
|
|
|
|
|
|
|
String namespaceUri = sdRyReportQueryConfig.getQueryReportIndexWsdlNamespaceUri();
|
|
|
|
|
String wsdlAddr = sdRyReportQueryConfig.getQueryReportIndexWsdlAddr();
|
|
|
|
|
String operationName = sdRyReportQueryConfig.getQueryReportIndexWsdlOperationName();
|
|
|
|
|
String result = JaxWsDynamicClient.send(wsdlAddr, namespaceUri, operationName, params);
|
|
|
|
|
String result = JaxWsDynamicClient.send(wsdlAddr, namespaceUri, operationName, param);
|
|
|
|
|
log.info("查询顺德人医患者交叉索引数据,返回值:{}", result);
|
|
|
|
|
if (result == null) {
|
|
|
|
|
return new ArrayList<>();
|
|
|
|
|