admin Chrglist 수정/삭제부분+ Vue

This commit is contained in:
2023-03-20 08:34:50 +09:00
parent de336d54e6
commit 84ff3d0317
12 changed files with 444 additions and 22 deletions

View File

@@ -1145,7 +1145,7 @@
</update>
<!-- 충전관리 목록 조회 -->
<select id="selectChrgList">
<select id="selectChrgList" parameterType="kr.co.uplus.ez.api.custMgt.dto.ChrgListReqDto" resultType="kr.co.uplus.ez.api.custMgt.dto.ChrgListResDto">
SELECT
@ROWNUM := @ROWNUM + 1 AS NO
, eci.CUST_NM
@@ -1167,14 +1167,14 @@
<if test="endDt != null and endDt != ''">
AND esi.SUBS_DT <![CDATA[ <= ]]> STR_TO_DATE(concat(REPLACE(#{endDt}, '-', '' ),'235959'), '%Y%m%')
</if>
<if test="searchType3 != null and searchType3 != ''">
<if test="searchType3 == '01' and searchText1 != null and searchText1 != ''">
<if test="searchType1 != null and searchType1 != ''">
<if test="searchType1 == '01' and searchText1 != null and searchText1 != ''">
AND UPPER(eci.CUST_NM) LIKE UPPER(CONCAT('%', #{searchText1}, '%'))
</if>
<if test="searchType3 == '02' and searchText1 != null and searchText1 != ''">
<if test="searchType1 == '02' and searchText1 != null and searchText1 != ''">
AND UPPER(eci.BIZRNO) LIKE UPPER(CONCAT('%', #{searchText1}, '%'))
</if>
<if test="searchType3 == '03' and searchText1 != null and searchText1 != ''">
<if test="searchType1 == '03' and searchText1 != null and searchText1 != ''">
AND UPPER(esu.USER_ID) LIKE UPPER(CONCAT('%', #{searchText1}, '%'))
</if>
</if>
@@ -1247,7 +1247,7 @@
, NOW()
, #{regId}
, NOW()
)
)
</insert>
<update id="deleteChrg">