Subversion Repositories SmartDukaan

Rev

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

Rev 35177 Rev 35178
Line 861... Line 861...
861
    public void yesterdayTrackingReport() throws Throwable {
861
    public void yesterdayTrackingReport() throws Throwable {
862
        log.info("Running yesterday employee tracking cron at 08:00 AM");
862
        log.info("Running yesterday employee tracking cron at 08:00 AM");
863
        runOnceTasks.yesterdayTrackingReport();
863
        runOnceTasks.yesterdayTrackingReport();
864
    }
864
    }
865
 
865
 
866
    @Scheduled(cron = "0 0 8 * * *")
866
    @Scheduled(cron = "0 10 8 * * *")
867
    public void partnerCreditExposureReport() throws Throwable {
867
    public void partnerCreditExposureReport() throws Throwable {
868
        log.info("Running yesterday employee tracking cron at 08:00 AM");
868
        log.info("Running yesterday employee tracking cron at 08:00 AM");
869
        runOnceTasks.sendCreditExposureReport();
869
        runOnceTasks.sendCreditExposureReport();
870
    }
870
    }
871
 
871