Commit 70c81cf312bf8230f7df5f0128e3e193f32b0af9
1 parent
3fb3343355
Exists in
master
and in
6 other branches
update
Showing 1 changed file with 4 additions and 4 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/PremaritalCheckupFacade.java
View file @
70c81cf
... | ... | @@ -1952,17 +1952,17 @@ |
1952 | 1952 | if (result.getMaoFa() != null && result.getMaoFa() == 1) |
1953 | 1953 | { |
1954 | 1954 | String content = ""; |
1955 | - if (result.getFenBu() != null) | |
1955 | + if (result.getFenBu() != null && !"".equals(result.getFenBu())) | |
1956 | 1956 | { |
1957 | 1957 | content += "分布"+strPj("",result.getFenBu())+","; |
1958 | 1958 | } |
1959 | - if (result.getYanSe() != null) | |
1959 | + if (result.getYanSe() != null && !"".equals(result.getYanSe())) | |
1960 | 1960 | { |
1961 | 1961 | content += "颜色"+strPj("",result.getYanSe())+","; |
1962 | 1962 | } |
1963 | - if (result.getBuWei() != null) | |
1963 | + if (result.getBuWei() != null && !"".equals(result.getBuWei())) | |
1964 | 1964 | { |
1965 | - content = "脱离部位"+strPj("",result.getBuWei())+","; | |
1965 | + content += "脱离部位"+strPj("",result.getBuWei())+","; | |
1966 | 1966 | } |
1967 | 1967 | if (StringUtils.isNotEmpty(content)) |
1968 | 1968 | { |