|
@@ -51,6 +51,9 @@ public class THR02986 extends QCCatalogue {
|
|
|
for (Map.Entry<Date, String> doctorAdviceDrug : doctorAdviceDrugMap.entrySet()) {
|
|
|
Date doctorAdviceDate = doctorAdviceDrug.getKey();
|
|
|
String drug = doctorAdviceDrug.getValue();
|
|
|
+ if (drug.contains("注射用")) {
|
|
|
+ drug = drug.substring(drug.indexOf("注射用") + 3);
|
|
|
+ }
|
|
|
int matchSum = 0;
|
|
|
matchSum = getMatchSum(allDoctorWradDocs, doctorAdviceDate, drug, matchSum, 2);
|
|
|
if (matchSum == 0) {
|