Commit b12a0e8a06d46aef2ba8ab4966b57af1325fe320

Authored by liquanyu
1 parent 2334558454

update

Showing 4 changed files with 1 additions and 4 deletions

platform-biz-service/src/main/java/com/lyms/platform/permission/service/impl/MysqlAntexcServiceImpl.java View file @ b12a0e8
... ... @@ -282,7 +282,6 @@
282 282 return masterMysqlAntexcMapper.getCheckFourRiskCounts(param);
283 283 }
284 284  
285   -
286 285 @Override
287 286 public List<Map<String,String>> getMatDeliverOrgCheckPersonCounts(Map param){
288 287 return masterMysqlAntexcMapper.getMatDeliverOrgCheckPersonCounts(param);
platform-biz-service/src/main/resources/mainOrm/master/MasterMysqlAntexc.xml View file @ b12a0e8
... ... @@ -1341,7 +1341,7 @@
1341 1341 <select id="getMatDeliverCount" resultType="java.util.Map" parameterType="java.util.Map">
1342 1342 select count(m.sourceId) as matDeliverCount from report_matdeliver m
1343 1343 INNER JOIN report_patients p on m.sourceId=p.patientId
1344   - where p.type =3
  1344 + where p.type =3 and p.enable is NULL
1345 1345 <if test="hospitalId != null and hospitalId != ''">
1346 1346 and p.hospitalId = #{hospitalId,jdbcType=VARCHAR}
1347 1347 </if>
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/PatientCourseFacade.java View file @ b12a0e8
... ... @@ -462,7 +462,6 @@
462 462 return objectResponse;
463 463 }
464 464 }
465   -
466 465 PatientCourseQuery patientCourseQuery = new PatientCourseQuery();
467 466 patientCourseQuery.setYn(YnEnums.YES.getId());
468 467 //状态 1预约,2签到
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/PatientSyncMysqlFacade.java View file @ b12a0e8
... ... @@ -1534,7 +1534,6 @@
1534 1534  
1535 1535 public BaseObjectResponse getAreaCheckCount(String time, String hospitalId, String provinceId, String cityId, String areaId, Integer userId)
1536 1536 {
1537   -
1538 1537 Date startDate = null;
1539 1538 Date endDate = null;
1540 1539 if (StringUtils.isNotEmpty(time))