|
@@ -73,6 +73,18 @@
|
|
|
,ONOROFF as onoroff
|
|
|
from RWA_OBJ_CONF_GL_RECONCILIATION t1
|
|
|
where t1.YESORNO ='1'
|
|
|
+ <if test="glCode !=null and glCode!=''">
|
|
|
+ and GL_CODE like concat('%',#{glCode},'%')
|
|
|
+ </if>
|
|
|
+ <if test="subjectDesc !=null and subjectDesc!=''">
|
|
|
+ and SUBJECT_DESC like concat('%',#{subjectDesc},'%')
|
|
|
+ </if>
|
|
|
+ <if test="subjectNature !=null and subjectNature!=''">
|
|
|
+ and SUBJECT_NATURE =#{subjectNature}
|
|
|
+ </if>
|
|
|
+ <if test="onoroff !=null and onoroff!=''">
|
|
|
+ and ONOROFF =#{onoroff}
|
|
|
+ </if>
|
|
|
</select>
|
|
|
|
|
|
<insert id="diffconfig_addone" parameterType="com.sundata.product.rwa.resultList.model.DiffconfigListModel">
|
|
@@ -83,6 +95,9 @@
|
|
|
<delete id="diffconfig_deleteone" parameterType="com.sundata.product.rwa.resultList.model.RuleListModel">
|
|
|
delete from RWA_CALC_CONF_DIFFTOLERANCERANGE where RULE_NO =#{ruleNo}
|
|
|
</delete>
|
|
|
+ <delete id="diffconfig_deleteone1" parameterType="com.sundata.product.rwa.resultList.model.DiffconfigListModel">
|
|
|
+ delete from RWA_CALC_CONF_DIFFTOLERANCE where RULE_NO =#{ruleNo}
|
|
|
+ </delete>
|
|
|
<insert id="diffconfig_addone1" parameterType="com.sundata.product.rwa.resultList.model.RuleListModel">
|
|
|
INSERT INTO RWA_CALC_CONF_DIFFTOLERANCERANGE(CALCINDEX,SDATE,EDATE,TERM,DATA_DATE,RULE_NO,ROLE_LEDGERCHECK_NO)
|
|
|
VALUES
|