Commit a5d604ff91f680a9d4c0c2f4473c9f131679bfe1
1 parent
cf3466ab03
Exists in
master
and in
6 other branches
修改电子病历
Showing 1 changed file with 4 additions and 2 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/ViewFacade.java
View file @
a5d604f
... | ... | @@ -913,8 +913,10 @@ |
913 | 913 | if (fmfs.equals("1")){ |
914 | 914 | String fmName = FmTypeEnums.getFmNameById(fmfs); |
915 | 915 | sb.append(fmName).append(","); |
916 | - String scfs = m.get("scfs").toString(); | |
917 | - sb.append(FmTypeEnums.getFmScNameById(scfs)); | |
916 | + if(null!=m.get("scfs")){ | |
917 | + String scfs =m.get("scfs") .toString(); | |
918 | + sb.append(FmTypeEnums.getFmScNameById(scfs)); | |
919 | + } | |
918 | 920 | deliveryMode = sb.toString(); |
919 | 921 | }else if (fmfs.equals("2")){ |
920 | 922 | String fmName = FmTypeEnums.getFmNameById(fmfs); |