Browse Source

2025-04-23

master
qiezi 9 months ago
parent
commit
76fa6dddfe
  1. 3
      src/main/resources/mapper/proofing/ProofingInformationMapper.xml

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

@ -93,6 +93,9 @@
<if test="query.engineerName != null and query.engineerName != ''">
AND dbo.plm_get_user_display(a.site, engineer) like #{query.engineerName}
</if>
<if test="query.approverName != null and query.approverName != ''">
AND dbo.plm_get_user_display(a.site, approver) like #{query.approverName}
</if>
<if test="query.testPartNo != null and query.testPartNo != ''">
AND a.test_part_no like #{query.testPartNo}
</if>

Loading…
Cancel
Save