Revision: 18973
http://sourceforge.net/p/dcm4che/svn/18973
Author: javawilli
Date: 2021-03-22 18:27:20 +0000 (Mon, 22 Mar 2021)
Log Message:
-----------
StudyInfoChanged after moveToTrash
Modified Paths:
--------------
dcm4chee/dcm4chee-web/branches/DCM4CHEE_WEB_3_0_4-RC/dcm4chee-web-sar/dcm4chee-web-sar-contentedit/src/main/java/org/dcm4chee/web/service/contentedit/ContentEditService.java
Modified: dcm4chee/dcm4chee-web/branches/DCM4CHEE_WEB_3_0_4-RC/dcm4chee-web-sar/dcm4chee-web-sar-contentedit/src/main/java/org/dcm4chee/web/service/contentedit/ContentEditService.java
===================================================================
--- dcm4chee/dcm4chee-web/branches/DCM4CHEE_WEB_3_0_4-RC/dcm4chee-web-sar/dcm4chee-web-sar-contentedit/src/main/java/org/dcm4chee/web/service/contentedit/ContentEditService.java 2021-03-22 18:24:44 UTC (rev 18972)
+++ dcm4chee/dcm4chee-web/branches/DCM4CHEE_WEB_3_0_4-RC/dcm4chee-web-sar/dcm4chee-web-sar-contentedit/src/main/java/org/dcm4chee/web/service/contentedit/ContentEditService.java 2021-03-22 18:27:20 UTC (rev 18973)
@@ -1093,6 +1093,7 @@
return null;
DicomObject[] rejNotes = processRejectionNotes(entityTree, true, null);
processIANs(entityTree, Availability.UNAVAILABLE);
+ this.sendStudyInfoChangedNotification(entityTree.getStudyIUIDs().toArray(new String[0]));
return rejNotes;
}
@@ -1101,6 +1102,7 @@
return null;
DicomObject[] rejNotes = this.processRejectionNotes(entityTree, false, auditDetail);
processIANs(entityTree, Availability.UNAVAILABLE);
+ this.sendStudyInfoChangedNotification(entityTree.getStudyIUIDs().toArray(new String[0]));
return rejNotes;
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|