Commit 217367e7a90ca068bbc89ed14d52b5c07d2aa3a8

Authored by shiyang
1 parent 91a750d9d7

update

Showing 2 changed files with 3 additions and 3 deletions

platform-biz-service/src/main/resources/mainOrm/master/MasterMysqlAntexc.xml View file @ 217367e
... ... @@ -2977,8 +2977,8 @@
2977 2977 INNER JOIN report_patients p ON p.patientId = f.sourceId
2978 2978 WHERE
2979 2979 p.ENABLE IS NULL
2980   - AND f.fmHospital <![CDATA[ <> ]]> #{hospitalId,jdbcType=INTEGER}
2981   - AND p.hospitalId <![CDATA[ <> ]]> #{hospitalId,jdbcType=INTEGER}
  2980 + AND f.fmHospital <![CDATA[ <> ]]> #{hospitalId}
  2981 + AND p.hospitalId <![CDATA[ <> ]]> #{hospitalId}
2982 2982 <if test="startTime != null">
2983 2983 AND f.dueDate1 <![CDATA[ >= ]]> #{startTime}
2984 2984 </if>
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/MatDeliverFacade.java View file @ 217367e
... ... @@ -3991,7 +3991,7 @@
3991 3991 List<Map<String,Object>> wyjdbyfm =mysqlAntexcService.getLhWyFmManage(param2);
3992 3992 //外院建档外院分娩
3993 3993 Map param3 = new HashMap();
3994   - param2.put("hospitalId",Integer.valueOf(hospitalId));//当前登录用户医院的id
  3994 + param2.put("hospitalId",hospitalId);//当前登录用户医院的id
3995 3995 param3.put("startTime",startTime);
3996 3996 param3.put("endTime",endTime);
3997 3997 int wyjdwyfm =mysqlAntexcService.getLhWyJdWyFmManage(param3);