|
@@ -216,7 +216,7 @@
|
|
|
<![CDATA[ AND b.name like concat('%',#{getAppealReviewVO.patientName},'%')]]>
|
|
|
</if>
|
|
|
<if test="getAppealReviewVO.fileCode != null and getAppealReviewVO.fileCode != '' ">
|
|
|
- <![CDATA[ AND b.file_code = #{getAppealReviewVO.fileCode}]]>
|
|
|
+ <![CDATA[ AND b.file_code like concat('%',#{getAppealReviewVO.fileCode},'%')]]>
|
|
|
</if>
|
|
|
) a
|
|
|
LEFT JOIN med_appeal_examine_info c ON a.id = c.appeal_info_id
|
|
@@ -230,7 +230,7 @@
|
|
|
LEFT JOIN bas_doctor_info doctor ON doctor.doctor_id = a.claimant_id AND a.hospital_id = doctor.hospital_id AND doctor.is_deleted='N'
|
|
|
WHERE c.is_deleted='N'
|
|
|
<if test="getAppealReviewVO.name != null and getAppealReviewVO.name != '' ">
|
|
|
- <![CDATA[ AND b.linkman like concat('%',#{getAppealReviewVO.name},'%')]]>
|
|
|
+ <![CDATA[ AND a.claimant_name like concat('%',#{getAppealReviewVO.name},'%')]]>
|
|
|
</if>
|
|
|
</select>
|
|
|
|