|
@@ -753,6 +753,8 @@ public class SetlListUpldService {
|
|
|
if (ListUtil.isBlank(page.getRecords())) {
|
|
|
return ResultVoUtil.fail(ExceptionEnum.NO_DATA_EXIST);
|
|
|
}
|
|
|
+ //获取截上传截止天数,结算时间后截止几天到期
|
|
|
+ //String dictValue = dao.getDictValueByDictName("1.1", "1");
|
|
|
Set<String> inpatientNos = new HashSet<>();
|
|
|
for (SiSetlinfoTemp item : page.getRecords()) {
|
|
|
inpatientNos.add(item.getPatNo());
|
|
@@ -1792,4 +1794,22 @@ public class SetlListUpldService {
|
|
|
}
|
|
|
return setlinfoUpld;
|
|
|
}
|
|
|
+ /**
|
|
|
+ * @description:是否质控通过
|
|
|
+ * @author: lihong
|
|
|
+ * @date: 2022/12/26 11:01
|
|
|
+ * @param: patNo
|
|
|
+ * @param: times
|
|
|
+ * @return: thyyxxk.webserver.entity.ResultVo<java.util.Map<java.lang.String,java.lang.Object>>
|
|
|
+ **/
|
|
|
+ public ResultVo<Map<String, Object>> qualityPass(String patNo, Integer times) {
|
|
|
+ Integer auditFlag = dao.qualityPass(patNo, times);
|
|
|
+ boolean flag = false;
|
|
|
+ Map<String, Object> map = new HashMap<>();
|
|
|
+ if(auditFlag != null && auditFlag==1){
|
|
|
+ flag = true;
|
|
|
+ }
|
|
|
+ map.put("qualityPassFlag",flag);
|
|
|
+ return ResultVoUtil.success(map);
|
|
|
+ }
|
|
|
}
|