Subversion Repositories SmartDukaan

Rev

Rev 34903 | Rev 35021 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 34903 Rev 34993
Line 3828... Line 3828...
3828
            }
3828
            }
3829
            if (suggestedAmount.doubleValue() < 0) {
3829
            if (suggestedAmount.doubleValue() < 0) {
3830
                suggestedAmount = BigDecimal.ZERO;
3830
                suggestedAmount = BigDecimal.ZERO;
3831
            }
3831
            }
3832
        } else if (creditAccount.getGateway().equals(Gateway.SIDBI) && sidbiLimit != null) {
3832
        } else if (creditAccount.getGateway().equals(Gateway.SIDBI) && sidbiLimit != null) {
3833
            //Left
3833
            suggestedAmount = getSuggestedLimit(currentPartnerDailyInvestment.getTotalInvestment() - utilizationAmount);
3834
            suggestedAmount = sidbiLimit;
3834
            suggestedAmount = suggestedAmount.max(sidbiLimit);
-
 
3835
 
-
 
3836
 
3835
        }
3837
        }
3836
        return suggestedAmount;
3838
        return suggestedAmount;
3837
    }
3839
    }
3838
 
3840
 
3839
    public void notifyDefaultLoans() throws ProfitMandiBusinessException, MessagingException, IOException {
3841
    public void notifyDefaultLoans() throws ProfitMandiBusinessException, MessagingException, IOException {