Browse Source

정산현황

marseyes 2 years ago
parent
commit
55ca4b2e0c

+ 1 - 0
src/main/java/com/oqpo/api/web/dto/response/sttlmng/SttlMngInfoResponse.java

@@ -67,6 +67,7 @@ public class SttlMngInfoResponse {
67
                 .sttlReqAmt(entity.getSttlReqAmt())
67
                 .sttlReqAmt(entity.getSttlReqAmt())
68
                 .sttlDt(entity.getSttlDt())
68
                 .sttlDt(entity.getSttlDt())
69
                 .sttlAmt(entity.getSttlAmt())
69
                 .sttlAmt(entity.getSttlAmt())
70
+                .acctBal(entity.getAcctBal())
70
                 .sttlRegMgrNm(entity.getSttlRegMgrNm())
71
                 .sttlRegMgrNm(entity.getSttlRegMgrNm())
71
                 .sttlRegMgrId(entity.getSttlRegMgrId())
72
                 .sttlRegMgrId(entity.getSttlRegMgrId())
72
                 .sysRegDttm(entity.getSysRegDttm())
73
                 .sysRegDttm(entity.getSysRegDttm())

+ 0 - 6
src/main/resources/mybatis/sqlmaps/sttlmng/SttlState.xml

@@ -33,9 +33,6 @@
33
         <if test="sSttlStCd != null and sSttlStCd != ''">
33
         <if test="sSttlStCd != null and sSttlStCd != ''">
34
             AND A.sttl_st_cd = #{sSttlStCd}
34
             AND A.sttl_st_cd = #{sSttlStCd}
35
         </if>
35
         </if>
36
-        <if test="sItemNm != null and sItemNm != ''">
37
-            AND A.item_nm LIKE CONCAT('%',#{sItemNm},'%')
38
-        </if>
39
         <choose>
36
         <choose>
40
             <when test="gridRequest.sidx != null and gridRequest.sidx != ''">
37
             <when test="gridRequest.sidx != null and gridRequest.sidx != ''">
41
                 <if test="gridRequest.sidx == 'VIEW_NUM'.toString()">
38
                 <if test="gridRequest.sidx == 'VIEW_NUM'.toString()">
@@ -78,9 +75,6 @@
78
         <if test="sSttlStCd != null and sSttlStCd != ''">
75
         <if test="sSttlStCd != null and sSttlStCd != ''">
79
             AND A.sttl_st_cd = #{sSttlStCd}
76
             AND A.sttl_st_cd = #{sSttlStCd}
80
         </if>
77
         </if>
81
-        <if test="sItemNm != null and sItemNm != ''">
82
-            AND A.item_nm LIKE CONCAT('%',#{sItemNm},'%')
83
-        </if>
84
     </select>
78
     </select>
85
 
79
 
86
 </mapper>
80
 </mapper>