Subversion Repositories SmartDukaan

Rev

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

Rev 32147 Rev 32165
Line 206... Line 206...
206
        log.info("selectFinServiceFollowUpDateByCurrDate");
206
        log.info("selectFinServiceFollowUpDateByCurrDate");
207
        scheduledTasks.selectFinServiceFollowUpDateByCurrDate(LocalDate.now());
207
        scheduledTasks.selectFinServiceFollowUpDateByCurrDate(LocalDate.now());
208
 
208
 
209
    }
209
    }
210
 
210
 
211
    @Scheduled(cron = "0 0 2 * * *")
211
    @Scheduled(cron = "0 0 4 * * *")
212
    public void processActivation() throws Exception {
212
    public void processActivation() throws Exception {
213
 
213
 
214
        LinkedHashMap<String, String> propertiesDetails = new LinkedHashMap<>();
214
        LinkedHashMap<String, String> propertiesDetails = new LinkedHashMap<>();
215
        propertiesDetails.put("processActivation", "0");
215
        propertiesDetails.put("processActivation", "0");
216
        writeToPropertiesFile.saveParamChanges(propertiesDetails, nagiosCronPropertiesFile);
216
        writeToPropertiesFile.saveParamChanges(propertiesDetails, nagiosCronPropertiesFile);
Line 627... Line 627...
627
    @Scheduled(cron = "0 0 6 * * *")
627
    @Scheduled(cron = "0 0 6 * * *")
628
    public void dailyLoanAlert() throws Throwable {
628
    public void dailyLoanAlert() throws Throwable {
629
        scheduledTasks.dailyLoanAlert();
629
        scheduledTasks.dailyLoanAlert();
630
    }
630
    }
631
 
631
 
-
 
632
    //Look out for imeis that have activation pending based of sale and mark create new SIO out of them
632
    @Scheduled(cron = "0 0 1 * * *")
633
    @Scheduled(cron = "0 0 1 * * *")
633
    public void processActivatedImeisForSchemes() throws Throwable {
634
    public void processActivatedImeisForSchemes() throws Throwable {
634
        scheduledTasks.processActivatedImeisForSchemes();
635
        scheduledTasks.processActivatedImeisForSchemes();
635
    }
636
    }
636
 
637