Subversion Repositories SmartDukaan

Rev

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

Rev 35103 Rev 35105
Line 866... Line 866...
866
    @Scheduled(cron = "0 0 21,16 * * *")
866
    @Scheduled(cron = "0 0 21,16 * * *")
867
    public void dailyTrackingReport() throws Throwable {
867
    public void dailyTrackingReport() throws Throwable {
868
        log.info("Running daily employee tracking cron at 09:00 PM and 04:00 PM");
868
        log.info("Running daily employee tracking cron at 09:00 PM and 04:00 PM");
869
        runOnceTasks.dailyTrackingReport();
869
        runOnceTasks.dailyTrackingReport();
870
    }
870
    }
-
 
871
 
871
    @Scheduled(cron = "0 0 0 1 1,4,7,10 *")
872
    @Scheduled(cron = "0 0 0 1 1,4,7,10 *")
872
    public void sendUpdateMobileBrandMarketShareQuaterlyMail() throws Throwable {
873
    public void sendUpdateMobileBrandMarketShareQuaterlyMail() throws Throwable {
873
        log.info("Running Marketshare update remined quaterly");
874
        log.info("Running Marketshare update remined quaterly");
874
        scheduledTasks.sendUpdateMobileBrandMarketShareQuaterlyMail();
875
        scheduledTasks.sendUpdateMobileBrandMarketShareQuaterlyMail();
875
    }
876
    }
-
 
877
 
-
 
878
    @Scheduled(cron = "0 0 * * * *")
-
 
879
    public void checkRewardsEligibility() throws Throwable {
-
 
880
        log.info("Running Rewards Disburse daily");
-
 
881
        runOnceTasks.checkRewardsEligibility();
-
 
882
    }
876
}
883
}