|
@@ -111,7 +111,9 @@ public class THR0127 extends QCCatalogue {
|
|
|
for (int j = 0; j < roundRecordEveryWeek.size(); j++) {
|
|
|
int directorNum = CatalogueUtil.appearNumber(roundRecordEveryWeek.get(j).split(","), Content.director);
|
|
|
int dept_doctorNum = CatalogueUtil.appearNumber(roundRecordEveryWeek.get(j).split(","), Content.dept_doctor);
|
|
|
- if (directorNum + dept_doctorNum < 2) {
|
|
|
+ //三级医师查房算一次主任查房
|
|
|
+ int threeDoctorNum = CatalogueUtil.appearNumber(roundRecordEveryWeek.get(j).split(","), "三级医师查房");
|
|
|
+ if (directorNum + dept_doctorNum + threeDoctorNum < 2) {
|
|
|
//每周无2次主任医师查房记录/科主任查房记录
|
|
|
status.set("-1");
|
|
|
resultInfos.add(lastWardDateRangeList.get(j));
|