修改病案室终审页面是否已打印标识错误

master
zengwh 4 years ago
parent 59f7c63fc8
commit 43011e6f64

@ -218,6 +218,12 @@ public class Archive_MasterServiceImpl implements Archive_MasterService {
}
}
}
String printNum = archiveMaster.getPrintNum();
if(StringUtils.isNotBlank(printNum) && "1".equals(printNum)){
archiveMaster.setPrintNum("已打印");
}else{
archiveMaster.setPrintNum("未打印");
}
//是否打印条件不为空,直接赋值打印标识
if(StringUtils.isNotBlank(archiveMasterVo.getPrintNum())){
String printFlag = "未打印";
@ -233,7 +239,7 @@ public class Archive_MasterServiceImpl implements Archive_MasterService {
}
}
//查询打印情况
if(StringUtils.isNotBlank(masterIds)){
/*if(StringUtils.isNotBlank(masterIds)){
List<ArchivePrintinfo> archivePrintinfos = archivePrintinfoMapper.selectPrintCountByMasterId(masterIds.toString());
//定义初始化打印状态
String printFlag = "未打印";
@ -248,7 +254,7 @@ public class Archive_MasterServiceImpl implements Archive_MasterService {
}
archiveMaster.setPrintNum(printFlag);
}
}
}*/
}
}

Loading…
Cancel
Save