Commit 1aba920644183b0735146ee31b694ed142dc7049

Authored by liquanyu
1 parent 65086d6425

分娩记录导出

Showing 1 changed file with 1 additions and 1 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/worker/MaterDeliverWorker.java View file @ 1aba920
... ... @@ -178,7 +178,7 @@
178 178 }
179 179  
180 180 if (initQuery.contains("contactM")) {
181   - contactM+=babyModel.getContactM() == null ? "-": babyModel.getContactM()+ ",";
  181 + contactM+= StringUtils.isEmpty(babyModel.getContactM()) ? "-,": babyModel.getContactM()+ ",";
182 182 }
183 183 if (initQuery.contains("fmTime")) {
184 184 fmTime+= new SimpleDateFormat("HH:mm").format(babyModel.getBirth())+ ",";