|
@@ -207,6 +207,9 @@ public class TransferFacade {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+ if (retLisStr.endsWith(",")) {
|
|
|
+ retLisStr = retLisStr.substring(0, retLisStr.length() - 1);
|
|
|
+ }
|
|
|
return retLisStr;
|
|
|
}
|
|
|
|
|
@@ -235,6 +238,9 @@ public class TransferFacade {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+ if (retPacsStr.endsWith(",")) {
|
|
|
+ retPacsStr = retPacsStr.substring(0, retPacsStr.length() - 1);
|
|
|
+ }
|
|
|
return retPacsStr;
|
|
|
}
|
|
|
|
|
@@ -281,6 +287,9 @@ public class TransferFacade {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+ if (convertDiag.endsWith(",")) {
|
|
|
+ convertDiag = convertDiag.substring(0, convertDiag.length() - 1);
|
|
|
+ }
|
|
|
return convertDiag;
|
|
|
}
|
|
|
}
|