Subversion Repositories SmartDukaan

Rev

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

Rev 23486 Rev 23504
Line 111... Line 111...
111
		for(UserWallet userWallet : userWallets){
111
		for(UserWallet userWallet : userWallets){
112
			retailerIdUserWalletMap.put(userWallet.getUserId(), userWallet);
112
			retailerIdUserWalletMap.put(userWallet.getUserId(), userWallet);
113
		}
113
		}
114
		return retailerIdUserWalletMap;
114
		return retailerIdUserWalletMap;
115
	}
115
	}
-
 
116
	
-
 
117
	@Override
-
 
118
	public boolean isExistWalletHistory(int retailerId, int referenceId, WalletReferenceType referenceType) throws ProfitMandiBusinessException{
-
 
119
		UserWallet userWallet = userWalletRepository.selectByRetailerId(retailerId);
-
 
120
		return userWalletHistoryRepository.isExist(userWallet.getId(), referenceType, referenceId);
-
 
121
	}
116
 
122
 
117
}
123
}