Browse Source

增加 打样结论字段筛选

java8
赵宏斌 1 month ago
parent
commit
957b969663
  1. 3
      src/main/resources/mapper/pms/ProofingInformationMapper.xml

3
src/main/resources/mapper/pms/ProofingInformationMapper.xml

@ -1027,6 +1027,9 @@
<if test="query.proofingStatus != null and query.proofingStatus != ''">
and ppi.proofing_status = #{query.proofingStatus}
</if>
<if test="query.proofingResultStatus != null and query.proofingResultStatus != ''">
and ppi.proofing_result_status = #{query.proofingResultStatus}
</if>
</where>
</select>
<select id="queryAllProofing2" resultType="com.xujie.sys.modules.pms.data.ProofDocumentData">

Loading…
Cancel
Save