Subversion Repositories SmartDukaan

Rev

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

Rev 30282 Rev 30288
Line 285... Line 285...
285
 
285
 
286
		AuthUser authUser = authRepository.selectByGmailId(gmailId);
286
		AuthUser authUser = authRepository.selectByGmailId(gmailId);
287
 
287
 
288
		Map<String, Set<String>> storeGuyMap = csService.getAuthUserPartnerEmailMapping();
288
		Map<String, Set<String>> storeGuyMap = csService.getAuthUserPartnerEmailMapping();
289
 
289
 
290
		Set<String> emails = storeGuyMap.get("ankit.bhatia@smartdukaan.com");
290
		Set<String> emails = storeGuyMap.get(authUser.getEmailId());
291
		LOGGER.info("emails" + emails);
291
		LOGGER.info("emails" + emails);
292
		List<User> users = userRepository.selectAllByEmailIds(new ArrayList<>(emails));
292
		List<User> users = userRepository.selectAllByEmailIds(new ArrayList<>(emails));
293
		List<Partner> partners = new ArrayList<>();
293
		List<Partner> partners = new ArrayList<>();
294
		for (User user : users) {
294
		for (User user : users) {
295
 
295