Subversion Repositories SmartDukaan

Rev

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

Rev 32801 Rev 32822
Line 632... Line 632...
632
    @Scheduled(cron = "0 0 7 * * *")
632
    @Scheduled(cron = "0 0 7 * * *")
633
    public void alertForDueDate() throws Throwable {
633
    public void alertForDueDate() throws Throwable {
634
        scheduledTasks.alertForDueDate();
634
        scheduledTasks.alertForDueDate();
635
    }
635
    }
636
 
636
 
-
 
637
    @Scheduled(cron = "0 30 7 * * *")
-
 
638
    public void sendMailWhatsAppAfterLoanDueDate() throws Throwable {
-
 
639
        scheduledTasks.sendMailWhatsAppAfterLoanDueDate();
-
 
640
    }
-
 
641
 
637
    @Scheduled(cron = "0 0 8 * * *")
642
    @Scheduled(cron = "0 0 8 * * *")
638
    public void notifyLoanDueDateCross() throws Throwable {
643
    public void notifyLoanDueDateCross() throws Throwable {
639
        scheduledTasks.notifyLoanDueDateCross();
644
        scheduledTasks.notifyLoanDueDateCross();
640
    }
645
    }
641
 
646