Skip to content

Commit

Permalink
Merge pull request apache#10 from keshav10/incomingsms
Browse files Browse the repository at this point in the history
incomingsms
  • Loading branch information
venkatconflux committed Nov 6, 2015
2 parents 87ef633 + 16f022c commit edc1674
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -563,7 +563,8 @@ public Collection<LoanChargeSummaryData> retriveLoanCharge(Long loanId,String c
sb.append(rm.schema());
sb.append(" where mlc.loan_id = ? ");
sb.append(" and mlc.is_paid_derived=0");
sb.append(" and mlc.waived=0)a");
sb.append(" and mlc.waived=0");
sb.append(" and mlc.is_active=1)a");
sb.append(" where a.charge_due_date <= ?");
return this.jdbcTemplate.query(sb.toString(), rm, new Object[]{loanId,chargeonDate});
}
Expand Down

0 comments on commit edc1674

Please sign in to comment.