Compare commits

..

2 Commits

Author SHA1 Message Date
tangw
33dcb8c5aa Merge remote-tracking branch 'origin/master' 2025-09-02 18:10:35 +08:00
tangw
eb46e1c060 主业务添加代码 2025-09-02 18:10:24 +08:00
2 changed files with 2 additions and 2 deletions

View File

@ -152,8 +152,6 @@ public class CheckResultUtils {
*/ */
public Map<String, Object> chksamplenew(LabPat labPat, List<LabResult> labResultList,int xh){ public Map<String, Object> chksamplenew(LabPat labPat, List<LabResult> labResultList,int xh){
String yq = labPat.getYq(); String yq = labPat.getYq();
Date jyrq = labPat.getJyrq();
String ybh = labPat.getYbh();
String bz= labPat.getBz(); String bz= labPat.getBz();
Map<String, Object> params = new HashMap<>(); Map<String, Object> params = new HashMap<>();
params.put("code", "0"); params.put("code", "0");

View File

@ -228,8 +228,10 @@ public class LisWorkOperServiceImpl implements LisWorkOperService {
String alarmflag = labPat.getAlarmflag(); String alarmflag = labPat.getAlarmflag();
if (("1".equals(alarmflag) && wjz != 1)) { if (("1".equals(alarmflag) && wjz != 1)) {
labPat.setAlarmflag("1"); labPat.setAlarmflag("1");
commonUtil.updateLabPat(labPat);
} else if (("".equals(alarmflag) || alarmflag == null) && wjz == 1) { } else if (("".equals(alarmflag) || alarmflag == null) && wjz == 1) {
labPat.setAlarmflag(""); labPat.setAlarmflag("");
commonUtil.updateLabPat(labPat);
} }
//医学审核条件判断 //医学审核条件判断
if(problemId<4)problemId=4; if(problemId<4)problemId=4;