서비스관리 / 알림톡 템플릿관리 추가

This commit is contained in:
kimre
2022-06-20 13:50:46 +09:00
parent 1d46263735
commit 460d6e03b8
147 changed files with 10360 additions and 6618 deletions

View File

@@ -17,7 +17,7 @@
eci.CUST_SEQ = esi.CUST_SEQ
AND esi.CUST_SEQ = esu.CUST_SEQ
WHERE 1 = 1
<include refid="subsListCondition"></include>
<include refid="subsListCondition"/>
</select>
<select id="selectSubsLists" parameterType="kr.co.uplus.ez.api.custMgt.dto.SubsListReqDto" resultType="kr.co.uplus.ez.api.custMgt.dto.SubsList">
@@ -60,7 +60,7 @@
eci.CUST_SEQ = esi.CUST_SEQ
AND esi.CUST_SEQ = esu.CUST_SEQ
WHERE 1 = 1
<include refid="subsListCondition"></include>
<include refid="subsListCondition"/>
ORDER BY
esi.OPN_DT DESC
LIMIT #{page}, #{pagePerRows}) A,
@@ -127,13 +127,13 @@
AND esu.USER_TP_CD = #{searchType2}
</if>
<if test="searchType3 != null and searchType3 != ''">
<if test="searchType3 == '01'">
<if test="searchType3 == '01' and searchText1 != null and searchText1 != ''">
AND UPPER(eci.CUST_NM) LIKE UPPER(CONCAT('%', #{searchText1}, '%'))
</if>
<if test="searchType3 == '02'">
<if test="searchType3 == '02' and searchText1 != null and searchText1 != ''">
AND esi.ENTR_NO = #{searchText1}
</if>
<if test="searchType3 == '03'">
<if test="searchType3 == '03' and searchText1 != null and searchText1 != ''">
AND esu.USER_ID = #{searchText1}
</if>
</if>
@@ -440,13 +440,13 @@
AND esu.USER_TP_CD = #{searchType2}
</if>
<if test="searchType3 != null and searchType3 != ''">
<if test="searchType3 == '01'">
<if test="searchType3 == '01' and searchText1 != null and searchText1 != ''">
AND esu.USER_ID = #{searchText1}
</if>
<if test="searchType3 == '02'">
<if test="searchType3 == '02' and searchText1 != null and searchText1 != ''">
AND UPPER(esu.USER_NM) LIKE UPPER(CONCAT('%', #{searchText1}, '%'))
</if>
<if test="searchType3 == '03'">
<if test="searchType3 == '03' and searchText1 != null and searchText1 != ''">
AND esu.USER_SEQ = (SELECT PRNTS_USER_SEQ FROM ${HUBEZ_COMMON}.EZ_SVC_USER WHERE USER_ID = #{searchText1})
</if>
</if>