|
@ -3955,7 +3955,9 @@ public class PrescriptionService extends BaseJpaService<WlyyPrescriptionDO, Pres
|
|
|
" base_doctor d " +
|
|
|
" JOIN base_doctor_role r ON d.id = r.doctor_code " +
|
|
|
" WHERE " +
|
|
|
" r.role_code ='specialist'";
|
|
|
" r.role_code ='specialist'" +
|
|
|
" AND d.charge_type is not null " +
|
|
|
" AND d.outpatient_type like '%xt%' ";
|
|
|
List<Map<String, Object>> rstotal = jdbcTemplate.queryForList(sql);
|
|
|
|
|
|
Long doctorTotal = 0l;
|
|
@ -3975,7 +3977,7 @@ public class PrescriptionService extends BaseJpaService<WlyyPrescriptionDO, Pres
|
|
|
" r.role_code ='specialist' " +
|
|
|
" AND d.consult_status ='1' " +
|
|
|
" AND d.charge_type is not null " +
|
|
|
" AND d.outpatient_type is not null ";
|
|
|
" AND d.outpatient_type like '%xt%' ";
|
|
|
List<Map<String, Object>> oltotal = jdbcTemplate.queryForList(onlineSql);
|
|
|
|
|
|
Long onlineTotal = 0l;
|