|
@@ -27,7 +27,7 @@ public class THR02150 extends QCCatalogue {
|
|
|
@Override
|
|
|
protected void start(InputInfo inputInfo, OutputInfo outputInfo) throws ParseException {
|
|
|
/**
|
|
|
- * 查房记录里【记录医师】在bas_doctor_info表中的occup=1(职业医师资格0:无,1:有),记录医师的名字里可能包含字母A,F,现在的处理方式是: 先匹配全部,如果无医生信息,字母先替换成空
|
|
|
+ * 查房记录里【审核人】在bas_doctor_info表中的occup=1(职业医师资格0:无,1:有),审核人的名字里可能包含字母A,F,现在的处理方式是: 先匹配全部,如果无医生信息,字母先替换成空
|
|
|
*/
|
|
|
status.set("0");
|
|
|
if (ListUtil.isEmpty(inputInfo.getThreeLevelWardDocs())) {
|
|
@@ -41,7 +41,7 @@ public class THR02150 extends QCCatalogue {
|
|
|
List<ThreeLevelWardDoc> threeLevelWardDocList = inputInfo.getThreeLevelWardDocs().get(0).getAllDoctorWradDocs();
|
|
|
for (ThreeLevelWardDoc bean : threeLevelWardDocList) {
|
|
|
Map<String, String> structureMap = bean.getStructureMap();
|
|
|
- String doctorName = structureMap.get("记录医师");
|
|
|
+ String doctorName = structureMap.get("审核人");
|
|
|
if (StringUtil.isNotBlank(doctorName)) {
|
|
|
Map<String, String> doctor = (Map) surgeon.get(doctorName);
|
|
|
if (doctor == null) {
|