Subversion Repositories SmartDukaan

Rev

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

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