Subversion Repositories SmartDukaan

Rev

Rev 36399 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 36399 Rev 36936
Line 76... Line 76...
76
        int rbmId = csService.getAuthUserId(ProfitMandiConstants.TICKET_CATEGORY_RBM, EscalationType.L1, fofoId);
76
        int rbmId = csService.getAuthUserId(ProfitMandiConstants.TICKET_CATEGORY_RBM, EscalationType.L1, fofoId);
77
        AuthUser authUser = authRepository.selectById(rbmId);
77
        AuthUser authUser = authRepository.selectById(rbmId);
78
        String[] emailTo;
78
        String[] emailTo;
79
        String[] ccTo;
79
        String[] ccTo;
80
        if (authUser == null){
80
        if (authUser == null){
81
            emailTo = new String[] { "sdtech@smartdukaan.com", "mohit.gulati@smartdukaan.com", "manish.gupta1@smartdukaan.com", "sourcing@smartdukaan.com" };
81
            emailTo = new String[] { "sdtech@smartdukaan.com", "mohit.gulati@smartdukaan.com", "sourcing@smartdukaan.com" };
82
            ccTo = new String[]{};
82
            ccTo = new String[]{};
83
        } else {
83
        } else {
84
            emailTo = new String[] { user.getEmailId(), "sdtech@smartdukaan.com", "sourcing@smartdukaan.com" };
84
            emailTo = new String[] { user.getEmailId(), "sdtech@smartdukaan.com", "sourcing@smartdukaan.com" };
85
            ccTo = new String[]{authUser.getEmailId()};
85
            ccTo = new String[]{authUser.getEmailId()};
86
        }
86
        }