Subversion Repositories SmartDukaan

Rev

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

Rev 24679 Rev 24681
Line 47... Line 47...
47
	public void processRechargeCashback() throws Throwable {
47
	public void processRechargeCashback() throws Throwable {
48
		scheduledTasks.processRechargeCashback();
48
		scheduledTasks.processRechargeCashback();
49
	}
49
	}
50
 
50
 
51
	@Scheduled(cron = "0 0 1 * * *")
51
	@Scheduled(cron = "0 0 1 * * *")
52
	public void sendPartnerInvestmentDetaile() throws Throwable {
52
	public void sendPartnerInvestmentDetails() throws Throwable {
53
		scheduledTasks.sendPartnerInvestmentDetails();
53
		scheduledTasks.sendPartnerInvestmentDetails();
54
	}
54
	}
-
 
55
	
-
 
56
	@Scheduled(cron = "0 0 8 * * *")
-
 
57
	public void sendStockAgeingReport() throws Throwable {
-
 
58
		scheduledTasks.sendAgeingReport();
-
 
59
	}
55
 
60
 
56
	@Scheduled(cron = " 0 0 23 * * *")
61
	@Scheduled(cron = " 0 0 23 * * *")
57
	public void sendMail() throws MessagingException, ProfitMandiBusinessException, IOException {
62
	public void sendMail() throws MessagingException, ProfitMandiBusinessException, IOException {
58
		log.info("sending mail");
63
		log.info("sending mail");
59
 
64