Subversion Repositories SmartDukaan

Rev

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

Rev 26083 Rev 26099
Line 76... Line 76...
76
	public void alertTicketToUser() throws Exception {
76
	public void alertTicketToUser() throws Exception {
77
		log.info("alert for ticket");
77
		log.info("alert for ticket");
78
		ticketRelatedScheduledTask.alertforTicket();
78
		ticketRelatedScheduledTask.alertforTicket();
79
	}
79
	}
80
 
80
 
81
	@Scheduled(cron = "0 0 16,22 ? * *")
81
	@Scheduled(cron = "0 0 19,23 ? * *")
82
	public void dailySaleNotification() throws Exception {
82
	public void dailySaleNotification() throws Exception {
83
		log.info("daily send Notification");
83
		log.info("daily send Notification");
84
		scheduledTasks.sendDailySalesNotificationToPartner(null);
84
		scheduledTasks.sendDailySalesNotificationToPartner(null);
85
	}
85
	}
86
 
86