|
|
|
@ -57,6 +57,15 @@ |
|
|
|
<!-- AND project_id in ( select project_id from AccessProject where site=#{query.site} and username=#{query.userName} and searchFlag='Y' )--> |
|
|
|
<!-- AND bu_no in ( select bu_no from AccessBu where site=#{query.site} and username=#{query.userName})--> |
|
|
|
<!-- </if>--> |
|
|
|
<if test="query.priority != null and query.priority != ''"> |
|
|
|
AND plm_project_info.priority = #{query.priority} |
|
|
|
</if> |
|
|
|
<if test="query.projectSource != null and query.projectSource != ''"> |
|
|
|
AND plm_project_info.project_source like #{query.projectSource} |
|
|
|
</if> |
|
|
|
<if test="query.customerId != null and query.customerId != ''"> |
|
|
|
AND plm_project_info.customer_Id like #{query.customerId} |
|
|
|
</if> |
|
|
|
</where> |
|
|
|
|
|
|
|
order by project_id desc |
|
|
|
@ -180,6 +189,9 @@ |
|
|
|
<if test="query.applyNo != null and query.applyNo != ''"> |
|
|
|
AND a.apply_no like #{query.applyNo} |
|
|
|
</if> |
|
|
|
<if test="query.status != null and query.status != ''"> |
|
|
|
AND a.status like #{query.status} |
|
|
|
</if> |
|
|
|
<if test="query.startDate != null "> |
|
|
|
AND a.apply_date >= #{query.startDate} |
|
|
|
</if> |
|
|
|
|