Subversion Repositories SmartDukaan

Rev

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

Rev 36065 Rev 36113
Line 702... Line 702...
702
    @Scheduled(cron = "0 0 11 * * *")
702
    @Scheduled(cron = "0 0 11 * * *")
703
    public void groupHidCatalogsByWeeks() throws Throwable {
703
    public void groupHidCatalogsByWeeks() throws Throwable {
704
        scheduledTasks.groupHidCatalogsByWeeks();
704
        scheduledTasks.groupHidCatalogsByWeeks();
705
    }
705
    }
706
 
706
 
707
    @Scheduled(cron = "0 0 9 * * *")
707
    @Scheduled(cron = "0 0 9 * * MON")  // Every Monday at 9:00 AM
708
    public void sendFeebackSalesAndRbm() throws Throwable {
708
    public void sendFeebackSalesAndRbm() throws Throwable {
709
        scheduledTasksTest.sendRbmFeedbackSummaryEmail();
709
        scheduledTasksTest.sendRbmFeedbackSummaryEmail();
710
        scheduledTasksTest.sendSalesFeedbackSummaryEmail();
710
        scheduledTasksTest.sendSalesFeedbackSummaryEmail();
711
    }
711
    }
712
 
712