|
@@ -81,7 +81,9 @@ public class ClinicalFacade {
|
|
} else {
|
|
} else {
|
|
Otherval = (Otherval.trim().length() > 0) ? Otherval.trim() + "\n" : "";
|
|
Otherval = (Otherval.trim().length() > 0) ? Otherval.trim() + "\n" : "";
|
|
|
|
|
|
- if (lisres.getMaxValue() != null && lisres.getValue() > lisres.getMaxValue()) {
|
|
|
|
|
|
+ if (lisres.getValue() == null) {
|
|
|
|
+ continue;
|
|
|
|
+ } else if (lisres.getMaxValue() != null && lisres.getValue() > lisres.getMaxValue()) {
|
|
lisres.setOtherValue(Otherval + lisres.getDetailName() + up);
|
|
lisres.setOtherValue(Otherval + lisres.getDetailName() + up);
|
|
} else if (lisres.getMinValue() != null && lisres.getValue() < lisres.getMinValue()) {
|
|
} else if (lisres.getMinValue() != null && lisres.getValue() < lisres.getMinValue()) {
|
|
lisres.setOtherValue(Otherval + lisres.getDetailName() + down);
|
|
lisres.setOtherValue(Otherval + lisres.getDetailName() + down);
|