| 24383 |
amit.gupta |
1 |
package com.spice.profitmandi.dao.repository.cs;
|
|
|
2 |
|
| 24439 |
govind |
3 |
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
|
| 24417 |
govind |
4 |
import com.spice.profitmandi.common.model.CustomRetailer;
|
|
|
5 |
import com.spice.profitmandi.dao.entity.auth.AuthUser;
|
| 29927 |
amit.gupta |
6 |
import com.spice.profitmandi.dao.entity.cs.*;
|
| 27393 |
amit.gupta |
7 |
import com.spice.profitmandi.dao.entity.fofo.ActivityType;
|
| 32923 |
ranu |
8 |
import com.spice.profitmandi.dao.enumuration.auth.CollectionRemark;
|
| 26978 |
tejbeer |
9 |
import com.spice.profitmandi.dao.enumuration.cs.EscalationType;
|
| 32923 |
ranu |
10 |
import com.spice.profitmandi.dao.model.ActivityMediaModel;
|
| 30003 |
tejbeer |
11 |
import com.spice.profitmandi.dao.model.FofoReportingModel;
|
| 29927 |
amit.gupta |
12 |
import org.springframework.stereotype.Service;
|
| 24383 |
amit.gupta |
13 |
|
| 29927 |
amit.gupta |
14 |
import java.util.List;
|
|
|
15 |
import java.util.Map;
|
|
|
16 |
import java.util.Set;
|
|
|
17 |
|
| 24383 |
amit.gupta |
18 |
@Service
|
|
|
19 |
public interface CsService {
|
| 31762 |
tejbeer |
20 |
// Sends happy code to customer
|
|
|
21 |
void addActivity(Ticket ticket, Activity activity);
|
| 24500 |
govind |
22 |
|
| 31762 |
tejbeer |
23 |
void createTicket(int fofoId, int categoryId, int subcategoryId, String message) throws ProfitMandiBusinessException;
|
| 24500 |
govind |
24 |
|
| 32923 |
ranu |
25 |
void createTicket(int fofoId, int categoryId, int subcategoryId, String message, int createdByAuthId) throws ProfitMandiBusinessException;
|
|
|
26 |
|
|
|
27 |
void createTicketWithMedia(int fofoId, int categoryId, int subcategoryId, String message, int createdByAuthId, ActivityMediaModel selectedRecording) throws ProfitMandiBusinessException;
|
|
|
28 |
|
|
|
29 |
void createTicketRemarkEscalation(int fofoId, int authId, int categoryId, int subcategoryId, String message, CollectionRemark remark) throws ProfitMandiBusinessException;
|
|
|
30 |
|
| 31762 |
tejbeer |
31 |
void addPartnerToRegion(int regionId, List<Integer> fofoIds);
|
| 24500 |
govind |
32 |
|
| 31762 |
tejbeer |
33 |
Map<Integer, TicketSubCategory> getSubCategoryIdAndSubCategoryMap(List<Integer> subCategoryIds);
|
| 24500 |
govind |
34 |
|
| 31762 |
tejbeer |
35 |
Map<Integer, TicketCategory> getSubCategoryIdAndCategoryMap(List<Integer> subCategoryIds);
|
| 24500 |
govind |
36 |
|
|
|
37 |
|
| 31762 |
tejbeer |
38 |
Map<Integer, AuthUser> getAuthUserIdAndAuthUserMap(List<TicketAssigned> ticketAssigneds);
|
| 24500 |
govind |
39 |
|
| 31762 |
tejbeer |
40 |
Map<Integer, CustomRetailer> getPartnerByFofoIds(List<Ticket> tickets);
|
| 24500 |
govind |
41 |
|
| 31762 |
tejbeer |
42 |
List<TicketCategory> getAllTicketCategotyFromSubCategory();
|
| 24500 |
govind |
43 |
|
| 31762 |
tejbeer |
44 |
Map<Integer, AuthUser> getAuthUserIdAndAuthUserMapUsingPositions(List<Position> positions);
|
| 25721 |
tejbeer |
45 |
|
| 31762 |
tejbeer |
46 |
Map<Integer, TicketCategory> getCategoryIdAndCategoryUsingPositions(List<Position> positions);
|
| 25721 |
tejbeer |
47 |
|
| 31762 |
tejbeer |
48 |
Map<Integer, Region> getRegionIdAndRegionMap(List<Position> positions);
|
| 24500 |
govind |
49 |
|
| 31762 |
tejbeer |
50 |
Map<Integer, List<CustomRetailer>> getRegionPartners(List<Position> position);
|
| 25721 |
tejbeer |
51 |
|
| 31762 |
tejbeer |
52 |
Map<Integer, List<CustomRetailer>> getPositionCustomRetailerMap(List<Position> position);
|
| 25721 |
tejbeer |
53 |
|
| 31762 |
tejbeer |
54 |
Map<Integer, AuthUser> getTicketIdAndAuthUserMapUsingTickets(List<Ticket> tickets);
|
| 25721 |
tejbeer |
55 |
|
| 31762 |
tejbeer |
56 |
void updateTicket(int categoryId, int subCategoryId, Ticket ticket, int authUserId, EscalationType escalationType) throws ProfitMandiBusinessException;
|
| 25721 |
tejbeer |
57 |
|
| 31762 |
tejbeer |
58 |
Map<String, Set<String>> getAuthUserPartnerEmailMapping();
|
| 26298 |
tejbeer |
59 |
|
| 31762 |
tejbeer |
60 |
Map<String, Set<Integer>> getAuthUserPartnerIdMapping();
|
| 25721 |
tejbeer |
61 |
|
| 31762 |
tejbeer |
62 |
Map<Integer, List<Integer>> getAuthUserIdPartnerIdMapping();
|
| 28377 |
tejbeer |
63 |
|
| 31762 |
tejbeer |
64 |
List<String> getAuthUserByPartnerId(int fofoId);
|
| 26978 |
tejbeer |
65 |
|
| 31762 |
tejbeer |
66 |
List<AuthUser> getAuthUserIdByPartnerId(int fofoId);
|
| 26298 |
tejbeer |
67 |
|
| 33041 |
ranu |
68 |
List<AuthUser> getAuthUserIdByPartnerId(int fofoId, EscalationType... escalationTypes);
|
|
|
69 |
|
| 31762 |
tejbeer |
70 |
Map<EscalationType, String> getAuthUserAndEsclationTypeByPartnerId(int fofoId);
|
| 27078 |
amit.gupta |
71 |
|
| 31762 |
tejbeer |
72 |
Map<Integer, List<Integer>> getL2L1Mapping();
|
| 28908 |
tejbeer |
73 |
|
| 31762 |
tejbeer |
74 |
int getAuthUserId(int categoryId, EscalationType escalationType, int fofoId);
|
| 28908 |
tejbeer |
75 |
|
| 31762 |
tejbeer |
76 |
List<AuthUser> getAuthUserIds(int categoryId, List<EscalationType> escalationType);
|
| 27124 |
amit.gupta |
77 |
|
| 31762 |
tejbeer |
78 |
List<AuthUser> getAuthUserByCategoryId(int categoryId);
|
| 27205 |
amit.gupta |
79 |
|
| 31762 |
tejbeer |
80 |
void assignTicket(Ticket ticket) throws ProfitMandiBusinessException;
|
| 27545 |
tejbeer |
81 |
|
| 31762 |
tejbeer |
82 |
Map<Integer, List<AuthUser>> getAssignedAuthList(List<Ticket> tickets);
|
| 27205 |
amit.gupta |
83 |
|
| 31762 |
tejbeer |
84 |
Map<EscalationType, AuthUser> getAuthUserAndEsclationByPartnerId(int fofoId);
|
| 29296 |
manish |
85 |
|
| 31762 |
tejbeer |
86 |
Activity createActivity(ActivityType activityType, String message, int createdBy);
|
| 30003 |
tejbeer |
87 |
|
| 31762 |
tejbeer |
88 |
List<AuthUser> getAuthUserByCategoryId(int categoryId, EscalationType escalationType);
|
| 31152 |
tejbeer |
89 |
|
| 31762 |
tejbeer |
90 |
Map<Integer, FofoReportingModel> getPartnerIdSalesHeaders();
|
| 31152 |
tejbeer |
91 |
|
| 31762 |
tejbeer |
92 |
Map<String, Set<Integer>> getAuthUserPartnerIdMappingByCategoryIds(List<Integer> categoryIds, boolean activeOnly);
|
|
|
93 |
|
|
|
94 |
|
| 24500 |
govind |
95 |
}
|