Subversion Repositories SmartDukaan

Rev

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

Rev 28208 Rev 28209
Line 2422... Line 2422...
2422
 
2422
 
2423
			double mtdSale = mtdSales.get(ls.getKey());
2423
			double mtdSale = mtdSales.get(ls.getKey());
2424
 
2424
 
2425
			LOGGER.info("mtdSale" + mtdSale);
2425
			LOGGER.info("mtdSale" + mtdSale);
2426
 
2426
 
2427
			double totalSixtyPercentInvestment = pdi.get(ls.getKey()).getTotalInvestment() * 0.6;
2427
			double totalSixtyPercentInvestment = pdi.get(ls.getKey()) == null ? 0
-
 
2428
					: pdi.get(ls.getKey()).getTotalInvestment() * 0.6;
2428
 
2429
 
2429
			LOGGER.info("totalSixtyPercentInvestment" + totalSixtyPercentInvestment);
2430
			LOGGER.info("totalSixtyPercentInvestment" + totalSixtyPercentInvestment);
2430
 
2431
 
2431
			double stockInvestment = pdi.get(ls.getKey()).getInStockAmount();
2432
			double stockInvestment = pdi.get(ls.getKey()) == null ? 0 : pdi.get(ls.getKey()).getInStockAmount();
2432
 
2433
 
2433
			LOGGER.info("stockInvestment" + stockInvestment);
2434
			LOGGER.info("stockInvestment" + stockInvestment);
2434
 
2435
 
2435
			boolean Investmentvalue = partnerInvestmentService.isInvestmentBelow(ls.getKey(), 25);
2436
			boolean Investmentvalue = partnerInvestmentService.isInvestmentBelow(ls.getKey(), 25);
2436
 
2437