Subversion Repositories SmartDukaan

Rev

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

Rev 27153 Rev 27166
Line 127... Line 127...
127
		TicketSubCategory ticketSubCategory = ticketSubCategoryRepository.selectById(ticket.getSubCategoryId());
127
		TicketSubCategory ticketSubCategory = ticketSubCategoryRepository.selectById(ticket.getSubCategoryId());
128
		TicketCategory ticketCategory = ticketCategoryRepository.selectById(ticketSubCategory.getCategoryId());
128
		TicketCategory ticketCategory = ticketCategoryRepository.selectById(ticketSubCategory.getCategoryId());
129
		Map<Integer, EscalationType> escalationUserMap = new HashedMap<>();
129
		Map<Integer, EscalationType> escalationUserMap = new HashedMap<>();
130
		Set<Integer> assigneeUserIds = new LinkedHashSet<>();
130
		Set<Integer> assigneeUserIds = new LinkedHashSet<>();
131
		EscalationType escalationTypeNext = newEscalationType;
131
		EscalationType escalationTypeNext = newEscalationType;
-
 
132
		ticket.setL1AuthUser(0);
-
 
133
		ticket.setL2AuthUser(0);
-
 
134
		ticket.setL3AuthUser(0);
-
 
135
		ticket.setL4AuthUser(0);
-
 
136
		ticket.setL5AuthUser(0);
132
		do {
137
		do {
133
			int assigneeUserId = this.getAuthUserId(ticketCategory.getId(), escalationTypeNext, ticket.getFofoId());
138
			int assigneeUserId = this.getAuthUserId(ticketCategory.getId(), escalationTypeNext, ticket.getFofoId());
134
			if (assigneeUserId == 0) {
139
			if (assigneeUserId == 0) {
135
				escalationTypeNext = escalationTypeNext.next();
140
				escalationTypeNext = escalationTypeNext.next();
136
				LOGGER.info("Escalation type next {}", escalationTypeNext);
141
				LOGGER.info("Escalation type next {}", escalationTypeNext);