|
@ -1494,7 +1494,7 @@ public class PrescriptionService extends BaseJpaService<WlyyPrescriptionDO, Pres
|
|
|
" JOIN base_doctor_role r ON r.doctor_code = d.id " +
|
|
|
" WHERE " +
|
|
|
" h.org_code = '" + orgCode + "'" +
|
|
|
" AND r.role_code ='specialist'";
|
|
|
" AND r.role_code ='specialist' and d.del=1 ";
|
|
|
if (StringUtils.isNotBlank(chargeType)) {
|
|
|
if ("all".equalsIgnoreCase(chargeType)) {
|
|
|
//不过滤号别
|
|
@ -1559,7 +1559,7 @@ public class PrescriptionService extends BaseJpaService<WlyyPrescriptionDO, Pres
|
|
|
" JOIN base_doctor_role r ON r.doctor_code = d.id " +
|
|
|
" WHERE " +
|
|
|
" h.org_code = '" + orgCode + "'" +
|
|
|
" AND r.role_code ='specialist'";
|
|
|
" AND r.role_code ='specialist' and d.del=1 ";
|
|
|
if (StringUtils.isNotBlank(chargeType)) {
|
|
|
if ("all".equalsIgnoreCase(chargeType)) {
|
|
|
//不过滤号别
|