|
@@ -2125,6 +2125,9 @@
|
|
|
<if test="filterPageByDeptVO.doctorName != null and filterPageByDeptVO.doctorName != ''">
|
|
|
AND a.doctor_name like CONCAT('%', #{filterPageByDeptVO.doctorName}, '%')
|
|
|
</if>
|
|
|
+ <if test="filterPageByDeptVO.doctorId != null and filterPageByDeptVO.doctorId != ''">
|
|
|
+ AND a.doctor_id = #{filterPageByDeptVO.doctorId}
|
|
|
+ </if>
|
|
|
<if test="filterPageByDeptVO.casesId != null and filterPageByDeptVO.casesId != 0">
|
|
|
AND d.cases_id = #{filterPageByDeptVO.casesId}
|
|
|
</if>
|
|
@@ -2200,6 +2203,9 @@
|
|
|
<if test="filterPageByDeptVO.doctorName != null and filterPageByDeptVO.doctorName != ''">
|
|
|
AND a.doctor_name like CONCAT('%', #{filterPageByDeptVO.doctorName}, '%')
|
|
|
</if>
|
|
|
+ <if test="filterPageByDeptVO.doctorId != null and filterPageByDeptVO.doctorId != ''">
|
|
|
+ AND a.doctor_id = #{filterPageByDeptVO.doctorId}
|
|
|
+ </if>
|
|
|
<if test="filterPageByDeptVO.isReject != null">
|
|
|
AND d.is_reject = #{filterPageByDeptVO.isReject}
|
|
|
</if>
|