|
@@ -42,14 +42,23 @@ public class THR0140 extends QCCatalogue {
|
|
|
|
|
|
StringBuffer message = new StringBuffer();
|
|
|
//长兴:返回所有医师未签名的记录日期
|
|
|
+ int i = 0;
|
|
|
for (ThreeLevelWardDoc threeLevelWardDoc : allDoctorWradDocs) {
|
|
|
- if(StringUtil.isBlank(threeLevelWardDoc.getStructureMap().get("记录医师"))){
|
|
|
- if(threeLevelWardDoc.getStructureMap() != null && threeLevelWardDoc.getStructureMap().get("记录时间") != null){
|
|
|
- message.append(threeLevelWardDoc.getStructureMap().get("记录时间")+",");
|
|
|
+ if (StringUtil.isBlank(threeLevelWardDoc.getStructureMap().get("记录医师"))) {
|
|
|
+ if (threeLevelWardDoc.getStructureMap() != null && threeLevelWardDoc.getStructureMap().get("记录时间") != null) {
|
|
|
+ if (i > 1) {
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ if (message.toString().length() == 0) {
|
|
|
+ message.append(threeLevelWardDoc.getStructureMap().get("记录时间"));
|
|
|
+ } else {
|
|
|
+ message.append(",").append(threeLevelWardDoc.getStructureMap().get("记录时间"));
|
|
|
+ }
|
|
|
+ i++;
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
- info.set(message.toString());
|
|
|
+ info.set(message.append("...").toString());
|
|
|
// if (inputInfo.getDifficultCaseDiscussDocs().size() > 0) {
|
|
|
// processSign(inputInfo, "疑难患者");
|
|
|
// }
|