|
@@ -132,8 +132,9 @@ public class THR03076 extends QCCatalogue {
|
|
|
List<Double> wardUsage = wdvMap.getValue();
|
|
|
if (!CatalogueUtil.compareTime(StringUtil.parseDateTime(adDate), StringUtil.parseDateTime(wardDate), 48 * 60L)) {
|
|
|
wardUsage.removeAll(adUsage);//比如adUsage有1.0、2.0,wardUsage中有2.0、3.0,removeAll之后wardUsage只剩3.0
|
|
|
- if (wardUsage.size() > 0) {
|
|
|
+ if (wardUsage.size() > 0 && !sb.toString().contains(drugKey)) {
|
|
|
infoAppend(sb, drugKey, adDate);
|
|
|
+ break;
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -192,6 +193,9 @@ public class THR03076 extends QCCatalogue {
|
|
|
if (v < 0) {
|
|
|
return;
|
|
|
}
|
|
|
+ if (v > 100) {
|
|
|
+ v = v / 1000;
|
|
|
+ }
|
|
|
if (!antibioticInfo.containsKey(drugName)) {
|
|
|
//存该抗生素使用第1个值
|
|
|
antibioticValueList = Maps.newLinkedHashMap();
|