主程序
This commit is contained in:
parent
7f358d9068
commit
8ea468caad
@ -811,7 +811,7 @@ public class LisWorkUtils {
|
||||
String resultflag = "M", wjzflag = "";
|
||||
String xmdh = labResult.getXmdh();
|
||||
String csjg = labResult.getCsjg();
|
||||
if (csjg == null || csjg.trim().isEmpty()) return labResult;
|
||||
if (csjg == null || csjg.isEmpty()) return labResult;
|
||||
String csjgnew = LisUtil.getOverNumber(csjg.trim());
|
||||
boolean lb_nummode = LisUtil.isNumber(csjgnew);
|
||||
String dw = xmInfo.getDw();
|
||||
@ -829,8 +829,9 @@ public class LisWorkUtils {
|
||||
String ygzd = xmInfo.getYgzd();
|
||||
String sex = null;
|
||||
if ("Y".equals(ygxb)) {
|
||||
sex = labPat.getBrxb().trim();
|
||||
sex = labPat.getBrxb();
|
||||
if (sex == null) sex = "";
|
||||
sex=sex.trim();
|
||||
}
|
||||
String yblx = null;
|
||||
if ("Y".equals(ygbb)) {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user