bug471 手术管理-门诊手术安排:手术申请查询结果中混入住院检验申请单数据(脏数据)

This commit is contained in:
2026-05-13 10:45:33 +08:00
parent 559821e4d3
commit cd12dd7a22
4 changed files with 43 additions and 4 deletions

View File

@@ -161,6 +161,9 @@
<if test="requestFormDto.surgeryNo != null and requestFormDto.surgeryNo != ''">
AND drf.prescription_no LIKE CONCAT('%', #{requestFormDto.surgeryNo}, '%')
</if>
<if test="requestFormDto.typeCode != null and requestFormDto.typeCode != ''">
AND drf.type_code = #{requestFormDto.typeCode}
</if>
<if test="requestFormDto.applyTimeStart != null">
AND drf.create_time >= #{requestFormDto.applyTimeStart}
</if>