Subversion Repositories SmartDukaan

Rev

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

Rev 30557 Rev 30558
Line 261... Line 261...
261
		if (userInfo.getUserId() > -1) {
261
		if (userInfo.getUserId() > -1) {
262
			user = userRepository.selectById(userInfo.getUserId());
262
			user = userRepository.selectById(userInfo.getUserId());
263
			LOGGER.info("userinfo7 {}", userInfo);
263
			LOGGER.info("userinfo7 {}", userInfo);
264
			String city = user.getCity();
264
			String city = user.getCity();
265
 
265
 
266
			LOGGER.info("emailtrue {}", userInfo.getEmail() == null);
-
 
267
 
-
 
268
			LOGGER.info("equality {}",
-
 
269
					!(userInfo.getEmail() == null || user.getEmailId().equalsIgnoreCase(userInfo.getEmail())));
-
 
270
			if (!(userInfo.getEmail() == null || user.getEmailId().equalsIgnoreCase(userInfo.getEmail()))) {
266
			if (!(userInfo.getEmail() == null || user.getEmailId().equalsIgnoreCase(userInfo.getEmail()))) {
271
				String userName = null;
267
				String userName = null;
272
				LOGGER.info("userinfo2 {}", userInfo);
268
				LOGGER.info("userinfo2 {}", userInfo);
273
				if (user.getSecondryEmailId() != null && user.getSecondryEmailId().equals(userInfo.getEmail())) {
269
				if (user.getSecondryEmailId() != null && user.getSecondryEmailId().equals(userInfo.getEmail())) {
274
 
270