Subversion Repositories SmartDukaan

Rev

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

Rev 26448 Rev 26460
Line 620... Line 620...
620
		return storeGuyMap;
620
		return storeGuyMap;
621
	}
621
	}
622
 
622
 
623
	@Override
623
	@Override
624
	@Cacheable(value = "L1L2Mapping", cacheManager = "thirtyMinsTimeOutCacheManager")
624
	@Cacheable(value = "L1L2Mapping", cacheManager = "thirtyMinsTimeOutCacheManager")
625
	public Map<Integer, List<Integer>> getL1L2Mapping() {
625
	public Map<Integer, List<Integer>> getL2L1Mapping() {
626
		List<Position> l1SalesPositions = positionRepository.selectPositionbyCategoryIdAndEscalationType(
626
		List<Position> l1SalesPositions = positionRepository.selectPositionbyCategoryIdAndEscalationType(
627
				ProfitMandiConstants.TICKET_CATEGORY_SALES, EscalationType.L1);
627
				ProfitMandiConstants.TICKET_CATEGORY_SALES, EscalationType.L1);
628
		List<Position> l2SalesPositions = positionRepository.selectPositionbyCategoryIdAndEscalationType(
628
		List<Position> l2SalesPositions = positionRepository.selectPositionbyCategoryIdAndEscalationType(
629
				ProfitMandiConstants.TICKET_CATEGORY_SALES, EscalationType.L2);
629
				ProfitMandiConstants.TICKET_CATEGORY_SALES, EscalationType.L2);
630
 
630