Subversion Repositories SmartDukaan

Rev

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

Rev 34082 Rev 34905
Line 6... Line 6...
6
import com.spice.profitmandi.dao.entity.cs.*;
6
import com.spice.profitmandi.dao.entity.cs.*;
7
import com.spice.profitmandi.dao.entity.fofo.ActivityType;
7
import com.spice.profitmandi.dao.entity.fofo.ActivityType;
8
import com.spice.profitmandi.dao.enumuration.auth.CollectionRemark;
8
import com.spice.profitmandi.dao.enumuration.auth.CollectionRemark;
9
import com.spice.profitmandi.dao.enumuration.cs.EscalationType;
9
import com.spice.profitmandi.dao.enumuration.cs.EscalationType;
10
import com.spice.profitmandi.dao.model.ActivityMediaModel;
10
import com.spice.profitmandi.dao.model.ActivityMediaModel;
-
 
11
import com.spice.profitmandi.dao.model.FofoAbmReportingModel;
11
import com.spice.profitmandi.dao.model.FofoRBMReportingModel;
12
import com.spice.profitmandi.dao.model.FofoRBMReportingModel;
12
import com.spice.profitmandi.dao.model.FofoReportingModel;
13
import com.spice.profitmandi.dao.model.FofoReportingModel;
-
 
14
import org.springframework.cache.annotation.Cacheable;
13
import org.springframework.stereotype.Service;
15
import org.springframework.stereotype.Service;
14
 
16
 
15
import java.util.List;
17
import java.util.List;
16
import java.util.Map;
18
import java.util.Map;
17
import java.util.Set;
19
import java.util.Set;
Line 95... Line 97...
95
 
97
 
96
    List<AuthUser> getAuthUserByCategoryId(int categoryId, EscalationType escalationType);
98
    List<AuthUser> getAuthUserByCategoryId(int categoryId, EscalationType escalationType);
97
 
99
 
98
    Map<Integer, FofoReportingModel> getPartnerIdSalesHeaders() throws ProfitMandiBusinessException;
100
    Map<Integer, FofoReportingModel> getPartnerIdSalesHeaders() throws ProfitMandiBusinessException;
99
 
101
 
-
 
102
    @Cacheable(value = "partnerABMHeader", cacheManager = "oneDayCacheManager")
-
 
103
    Map<Integer, FofoAbmReportingModel> getPartnerIdABMHeaders() throws ProfitMandiBusinessException;
-
 
104
 
100
    Map<Integer, FofoRBMReportingModel> getPartnerIdRBMHeaders() throws ProfitMandiBusinessException;
105
    Map<Integer, FofoRBMReportingModel> getPartnerIdRBMHeaders() throws ProfitMandiBusinessException;
101
 
106
 
102
    Map<String, Set<Integer>> getAuthUserPartnerIdMappingByCategoryIds(List<Integer> categoryIds, boolean activeOnly) throws ProfitMandiBusinessException;
107
    Map<String, Set<Integer>> getAuthUserPartnerIdMappingByCategoryIds(List<Integer> categoryIds, boolean activeOnly) throws ProfitMandiBusinessException;
103
 
108
 
104
 
109