Subversion Repositories SmartDukaan

Rev

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

Rev 34275 Rev 34321
Line 26... Line 26...
26
 
26
 
27
    @Autowired
27
    @Autowired
28
    private ScheduledTasks scheduledTasks;
28
    private ScheduledTasks scheduledTasks;
29
 
29
 
30
    @Autowired
30
    @Autowired
-
 
31
    private ScheduledTasksTest scheduledTasksTest;
-
 
32
 
-
 
33
    @Autowired
31
    private LeadSyncRunner leadSyncRunner;
34
    private LeadSyncRunner leadSyncRunner;
32
 
35
 
33
    @Autowired
36
    @Autowired
34
    private Reconciliation reconciliation;
37
    private Reconciliation reconciliation;
35
 
38
 
Line 662... Line 665...
662
    @Scheduled(cron = "0 0 6 * * *")
665
    @Scheduled(cron = "0 0 6 * * *")
663
    public void groupHidCatalogsByWeeks() throws Throwable {
666
    public void groupHidCatalogsByWeeks() throws Throwable {
664
        scheduledTasks.groupHidCatalogsByWeeks();
667
        scheduledTasks.groupHidCatalogsByWeeks();
665
    }
668
    }
666
 
669
 
-
 
670
    @Scheduled(cron = "0 0 9 * * *")
-
 
671
    public void sendFeebackSalesAndRbm() throws Throwable {
-
 
672
        scheduledTasksTest.sendRbmFeedbackSummaryEmail();
-
 
673
        scheduledTasksTest.sendSalesFeedbackSummaryEmail();
-
 
674
    }
-
 
675
 
667
    //Look out for imeis that have activation pending based of sale and mark create new SIO out of them
676
    //Look out for imeis that have activation pending based of sale and mark create new SIO out of them
668
    @Scheduled(cron = "0 0 1 * * *")
677
    @Scheduled(cron = "0 0 1 * * *")
669
    public void processActivatedImeisForSchemes() throws Throwable {
678
    public void processActivatedImeisForSchemes() throws Throwable {
670
        scheduledTasks.processActivatedImeisForSchemes();
679
        scheduledTasks.processActivatedImeisForSchemes();
671
    }
680
    }