|
@@ -50,10 +50,10 @@ public class ClinicalFacade {
|
|
|
Otherval = (lisres.getOtherValue().trim().length() > 0)? lisres.getOtherValue().trim()+"\n":"";
|
|
|
|
|
|
if (lisres.getMaxValue() != null && lisres.getValue() > lisres.getMaxValue()) {
|
|
|
- lisres.setOtherValue(Otherval + "超出标准");
|
|
|
+ lisres.setOtherValue(Otherval + "\n" + lisres.getDetailName() + "升高");
|
|
|
}
|
|
|
else if (lisres.getMinValue() != null && lisres.getValue() < lisres.getMinValue()) {
|
|
|
- lisres.setOtherValue(Otherval + "低于标准");
|
|
|
+ lisres.setOtherValue(Otherval + "\n" + lisres.getDetailName() + "下降");
|
|
|
}
|
|
|
}
|
|
|
|