检查报告和pdf上传测试修复-pass

3.2.4.44
wyb 2 years ago
parent 2206fc8c93
commit 780f524036

@ -5,5 +5,6 @@
"BL-001": "病理文件分段id",
"CS-001": "超声文件分段id",
"petct": "petct文件分段id",
"xdxt": "xdxt文件分段id",
"other": "其他文件分段id"
}

@ -1,4 +1,4 @@
{
"blocking": ["cs","yx","jc"],
"blocking": ["xdxt","yx","jc"],
"notHandled":["lis","bl","nh"]
}

@ -42,7 +42,12 @@ public interface ReceiveServer {
* @return
*/
public String pushExaminationReport(String examinationReportMessage);
/**
* HIP1166-pdf
* @param uploadMessage pdf
* @return
*/
String pdfUpload(String uploadMessage);
/**
* -
*

@ -63,6 +63,10 @@ public class ReceiveServerImpl implements ReceiveServer {
public String pushExaminationReport(String examinationReportMessage) {
return reportServer.pushExaminationReport(examinationReportMessage);
}
@Override
public String pdfUpload(String uploadMessage) {
return reportServer.pdfUpload(uploadMessage);
}
@Override
public String pushAddInspectionReport(String inspectionReportMessage) {

@ -86,6 +86,8 @@ public class ReportDto {
this.fileSource = "1";
this.filestoragetype = "1";
this.downtype = buffer.getDownType();
this.downUrl = buffer.getDownUrl();
this.sysFlag = buffer.getSysflag();
this.reportSn = buffer.getReportSn();
}
}

Loading…
Cancel
Save