Subversion Repositories SmartDukaan

Rev

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

Rev 34451 Rev 34547
Line 796... Line 796...
796
     * throws Throwable { log.info("startTime" + LocalDateTime.now());
796
     * throws Throwable { log.info("startTime" + LocalDateTime.now());
797
     * onBoardingRelatedSchelduleTask.onBoardingDocumentsPending();
797
     * onBoardingRelatedSchelduleTask.onBoardingDocumentsPending();
798
     * log.info("endTime" + LocalDateTime.now()); }
798
     * log.info("endTime" + LocalDateTime.now()); }
799
     */
799
     */
800
 
800
 
801
    @Scheduled(cron = "0 0 12 * * *")
801
    @Scheduled(cron = "0 50 23 * * *")
802
    public void bidConfirmation() throws Throwable {
802
    public void bidConfirmation() throws Throwable {
803
        log.info("running bid cron at 12:00PM");
803
        log.info("running bid cron at 23:50PM");
804
        runOnceTasks.processBids(ProfitMandiConstants.BID_CRON_ENUM.YESTERDAY);
804
        runOnceTasks.processBids(ProfitMandiConstants.BID_CRON_ENUM.YESTERDAY);
805
    }
805
    }
806
 
806
 
807
    @Scheduled(cron = "0 0 18 * * *")
807
    @Scheduled(cron = "0 0 19 * * *")
808
    public void processLiquidationBids() throws Throwable {
808
    public void processLiquidationBids() throws Throwable {
809
        log.info("running bid cron at 06:00PM");
809
        log.info("running bid cron at 07:00PM");
810
        runOnceTasks.processBids(ProfitMandiConstants.BID_CRON_ENUM.TODAY);
810
        runOnceTasks.processBids(ProfitMandiConstants.BID_CRON_ENUM.TODAY);
811
    }
811
    }
812
 
812
 
813
    @Scheduled(cron = "0 30 19 * * *")
813
    @Scheduled(cron = "0 30 21 * * *")
814
    public void bidPurchaseOrder() throws Throwable {
814
    public void bidPurchaseOrder() throws Throwable {
815
        log.info("running bid cron at 07:30PM");
815
        log.info("running bid cron at 09:30PM");
816
        runOnceTasks.processBids(ProfitMandiConstants.BID_CRON_ENUM.TODAY);
816
        runOnceTasks.processBids(ProfitMandiConstants.BID_CRON_ENUM.TODAY);
817
    }
817
    }
-
 
818
 
-
 
819
    /*@Scheduled(cron = "0 0 9,17 * * *")
-
 
820
    public void bidConsolidatedMessage() throws Throwable {
-
 
821
        log.info("Running bid cron at 09:00 AM or 05:00 PM");
-
 
822
        runOnceTasks.consolidatedBiddingMessage();
-
 
823
    }*/
818
}
824
}