Commit 447626a0cbe5c255457a41dc79aa0cceccb1b6c9

Authored by yangfei
1 parent 277214aefa

产检医生统计

Showing 1 changed file with 1 additions and 25 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/AntexDoctorStatistController.java View file @ 447626a
... ... @@ -286,32 +286,8 @@
286 286 antextDoctorPatient.add(adp);
287 287 }
288 288  
289   - List<AntextDoctorPatient> resultData = new ArrayList<>();
290 289  
291   - if (number != null) {
292   - if (number == 2) {
293   - for (AntextDoctorPatient ad : antextDoctorPatient) {
294   - if (ad.getCjNum() > 1) {
295   - resultData.add(ad);
296   - }
297   - }
298   - } else if (number == 5) {
299   - for (AntextDoctorPatient ad : antextDoctorPatient) {
300   - if (ad.getCjNum() > 4) {
301   - resultData.add(ad);
302   - }
303   - }
304   - } else {
305   - for (AntextDoctorPatient ad : antextDoctorPatient) {
306   - resultData.add(ad);
307   - }
308   - }
309   - } else {
310   - for (AntextDoctorPatient ad : antextDoctorPatient) {
311   - resultData.add(ad);
312   - }
313   - }
314   - return resultData;
  290 + return antextDoctorPatient;
315 291 }
316 292  
317 293 /**