Subversion Repositories SmartDukaan

Rev

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

Rev 30985 Rev 31020
Line 755... Line 755...
755
 
755
 
756
				AuthUser authUser = authRepository.selectById(position.getAuthUserId());
756
				AuthUser authUser = authRepository.selectById(position.getAuthUserId());
757
				LOGGER.info("authUser" + authUser);
757
				LOGGER.info("authUser" + authUser);
758
				authUsers.add(authUser);
758
				authUsers.add(authUser);
759
			}
759
			}
-
 
760
 
-
 
761
			Position rbmPosition = positionRepository.selectByIdAndCategoryId(partnerPostionId,
-
 
762
					ProfitMandiConstants.TICKET_CATEGORY_RBM);
-
 
763
			if (rbmPosition != null) {
-
 
764
 
-
 
765
				AuthUser authUser = authRepository.selectById(rbmPosition.getAuthUserId());
-
 
766
				LOGGER.info("authUser" + authUser);
-
 
767
				authUsers.add(authUser);
-
 
768
			}
-
 
769
 
760
		}
770
		}
761
 
771
 
762
		return authUsers;
772
		return authUsers;
763
	}
773
	}
764
 
774