Subversion Repositories SmartDukaan

Rev

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

Rev 24890 Rev 25300
Line 46... Line 46...
46
 
46
 
47
	@Scheduled(cron = "0 15 0 * * *")
47
	@Scheduled(cron = "0 15 0 * * *")
48
	public void reconcileRecharge() throws Exception {
48
	public void reconcileRecharge() throws Exception {
49
		scheduledTasks.reconcileRecharge();
49
		scheduledTasks.reconcileRecharge();
50
	}
50
	}
51
 
51
	
52
	@Scheduled(cron = "0 05 0 1,16 * ?")
52
	@Scheduled(cron = "0 05 0 1,16 * ?")
53
	public void processRechargeCashback() throws Throwable {
53
	public void processRechargeCashback() throws Throwable {
54
		scheduledTasks.processRechargeCashback();
54
		scheduledTasks.processRechargeCashback();
55
	}
55
	}
56
 
56
 
Line 103... Line 103...
103
 
103
 
104
	@Scheduled(cron = "0 0 6 * * *")
104
	@Scheduled(cron = "0 0 6 * * *")
105
	public void dailyReconciliation() throws Exception {
105
	public void dailyReconciliation() throws Exception {
106
		reconciliation.dailyReconciliation();
106
		reconciliation.dailyReconciliation();
107
	}
107
	}
-
 
108
	
-
 
109
	
-
 
110
	@Scheduled(cron = "0 */5 * * * *")
-
 
111
	public void sendNotification() throws Throwable {
-
 
112
		scheduledTasks.sendNotification();
-
 
113
	}
108
 
114
 
109
}
115
}