|
@@ -2,6 +2,7 @@ package com.lantone.qc.kernel.catalogue.threelevelward;
|
|
|
|
|
|
import com.google.common.collect.Lists;
|
|
|
import com.google.common.collect.Maps;
|
|
|
+import com.google.common.collect.Sets;
|
|
|
import com.lantone.qc.kernel.catalogue.QCCatalogue;
|
|
|
import com.lantone.qc.kernel.util.CatalogueUtil;
|
|
|
import com.lantone.qc.pub.model.InputInfo;
|
|
@@ -128,8 +129,8 @@ public class THR03071 extends QCCatalogue {
|
|
|
* @param reptNm
|
|
|
* @param pacsDate
|
|
|
*/
|
|
|
- private void infoAppend(StringBuffer sb, String reptNm, Map<String, List<String>> pacsDate) {
|
|
|
- for (Map.Entry<String, List<String>> map : pacsDate.entrySet()) {
|
|
|
+ private void infoAppend(StringBuffer sb, String reptNm, Map<String, Set<String>> pacsDate) {
|
|
|
+ for (Map.Entry<String, Set<String>> map : pacsDate.entrySet()) {
|
|
|
if (reptNm.equals(map.getKey())) {
|
|
|
for (String date : map.getValue()) {
|
|
|
sb.append(reptNm).append("(").append(DateUtil.formatDateTime(StringUtil.parseDateTime(date))).append(")").append("-");
|