|
|
@@ -173,6 +173,12 @@
|
|
|
<if test="costParam.ptlAgreementId != null and costParam.ptlAgreementId != ''">
|
|
|
AND ce.ptl_agreement_id = #{costParam.ptlAgreementId}
|
|
|
</if>
|
|
|
+ <if test="costParam.agreementIds.length > 0 ">
|
|
|
+ AND ce.ptl_agreement_id in
|
|
|
+ <foreach collection="costParam.agreementIds" item="ptlAgreementId" separator="," open="(" close=")">
|
|
|
+ #{ptlAgreementId}
|
|
|
+ </foreach>
|
|
|
+ </if>
|
|
|
<if test="costParam.rulesName != null and costParam.rulesName != ''">
|
|
|
AND ce.rule_description like concat('%',#{costParam.rulesName},'%')
|
|
|
</if>
|