Subversion Repositories SmartDukaan

Rev

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

Rev 24540 Rev 24564
Line 48... Line 48...
48
	@Scheduled(cron = "0 05 0 1,16 * ?")
48
	@Scheduled(cron = "0 05 0 1,16 * ?")
49
	public void processRechargeCashback() throws Throwable {
49
	public void processRechargeCashback() throws Throwable {
50
		scheduledTasks.processRechargeCashback();
50
		scheduledTasks.processRechargeCashback();
51
	}
51
	}
52
 
52
 
53
	/*
-
 
54
	 * Value so big so that it got to run only once.
-
 
55
	 * 
-
 
56
	 */
-
 
57
 
-
 
58
	@Scheduled(cron = "0 0 1 * * *")
53
	@Scheduled(cron = "0 0 1 * * *")
59
	public void migrateLineItems() throws Throwable {
54
	public void migrateLineItems() throws Throwable {
60
		log.info("Started run Once");
55
		log.info("Started run Once");
61
		scheduledTasks.sendPartnerInvestmentDetails();
56
		scheduledTasks.sendPartnerInvestmentDetails();
62
	}
57
	}
Line 77... Line 72...
77
			EncryptedDocumentException, InvalidFormatException {
72
			EncryptedDocumentException, InvalidFormatException {
78
		log.info("sending mail To Partner");
73
		log.info("sending mail To Partner");
79
 
74
 
80
		scheduledTasks.sendMailToPartnerAboutTargetAndSales();
75
		scheduledTasks.sendMailToPartnerAboutTargetAndSales();
81
	}
76
	}
82
	@Scheduled(cron="0 0/30 * 1/1 * ?")
77
	@Scheduled(cron="0 0/30 * * * *")
83
	public void escalateTicket() throws ProfitMandiBusinessException
78
	public void escalateTicket() throws ProfitMandiBusinessException
84
	{
79
	{
85
		scheduledTasks.escalateTicket();
80
		scheduledTasks.escalateTicket();
86
	}
81
	}
87
}
82
}