|
|
@@ -68,11 +68,13 @@
|
|
|
<if test="dispYn != null and dispYn != ''">
|
|
|
AND R.DISP_YN = #{dispYn}
|
|
|
</if>
|
|
|
- <if test="searchGb == 'memNm'">
|
|
|
+ <if test="searchTxt != null and searchTxt != ''">
|
|
|
+ <if test="searchGb == 'memNm'">
|
|
|
AND UPPER(C.CUST_NM) LIKE CONCAT('%',UPPER(#{searchTxt}),'%')
|
|
|
- </if>
|
|
|
- <if test="searchGb == 'email'">
|
|
|
+ </if>
|
|
|
+ <if test="searchGb == 'email'">
|
|
|
AND UPPER(C.EMAIL) LIKE CONCAT('%',UPPER(#{searchTxt}),'%')
|
|
|
+ </if>
|
|
|
</if>
|
|
|
ORDER BY R.REG_DT DESC
|
|
|
</select>
|