Package org.mifosplatform.portfolio.loanaccount.domain

Examples of org.mifosplatform.portfolio.loanaccount.domain.LoanStatus


                + "left join m_loan loanAccount on loanAccount.id = aa.loan_account_id " + "where aa.linked_savings_account_id = ?";

        final List<Integer> statusList = this.jdbcTemplate.queryForList(sql, Integer.class, savingsId);
        for (final Integer status : statusList) {
            if(status !=null){
                final LoanStatus loanStatus = LoanStatus.fromInt(status);
                if (loanStatus.isActiveOrAwaitingApprovalOrDisbursal() || loanStatus.isUnderTransfer()) { return true; }
            }
        }

        final String savsql = "select savingAccount.status_enum as status from m_portfolio_account_associations aa "
                + "left join m_savings_account savingAccount on savingAccount.id = aa.savings_account_id "
View Full Code Here

TOP

Related Classes of org.mifosplatform.portfolio.loanaccount.domain.LoanStatus

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.