|
|
|
@ -272,10 +272,16 @@ |
|
|
|
AND ppp.project_id = #{projectId} |
|
|
|
</if> |
|
|
|
<if test="testPartNo != null and testPartNo != ''"> |
|
|
|
AND ppp.test_part_no LIKE '%' + #{testPartNo} + '%' |
|
|
|
AND ppp.test_part_no LIKE #{testPartNo} |
|
|
|
</if> |
|
|
|
<if test="partName != null and partName != ''"> |
|
|
|
AND ppp.part_desc LIKE '%' + #{partName} + '%' |
|
|
|
AND ppp.part_desc LIKE #{partName} |
|
|
|
</if> |
|
|
|
<if test="finalPartNo != null and finalPartNo != ''"> |
|
|
|
AND ppp.final_part_no LIKE #{finalPartNo} |
|
|
|
</if> |
|
|
|
<if test="customerPartNo != null and customerPartNo != ''"> |
|
|
|
AND pcpi.customer_part_no LIKE #{customerPartNo} |
|
|
|
</if> |
|
|
|
</where> |
|
|
|
</select> |
|
|
|
|