Subversion Repositories SmartDukaan

Rev

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

Rev 35759 Rev 35760
Line 1040... Line 1040...
1040
    }
1040
    }
1041
 
1041
 
1042
    @Override
1042
    @Override
1043
    public List<CalledPartnerDetailModel> getCalledPartnerDetails(int authId, LocalDate date) throws ProfitMandiBusinessException {
1043
    public List<CalledPartnerDetailModel> getCalledPartnerDetails(int authId, LocalDate date) throws ProfitMandiBusinessException {
1044
        // Get all call logs for this auth user on this date
1044
        // Get all call logs for this auth user on this date
-
 
1045
        LOGGER.info("getCalledPartnerDetails: authId={}, date={}", authId, date);
1045
        List<com.spice.profitmandi.dao.entity.cs.AgentCallLog> callLogs = agentCallLogRepository.findByAuthIdAndDate(authId, date);
1046
        List<com.spice.profitmandi.dao.entity.cs.AgentCallLog> callLogs = agentCallLogRepository.findByAuthIdAndDate(authId, date);
-
 
1047
        LOGGER.info("Found {} call logs for authId={} on date={}", callLogs.size(), authId, date);
1046
 
1048
 
1047
        if (callLogs.isEmpty()) {
1049
        if (callLogs.isEmpty()) {
1048
            return Collections.emptyList();
1050
            return Collections.emptyList();
1049
        }
1051
        }
1050
 
1052