Subversion Repositories SmartDukaan

Rev

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

Rev 25975 Rev 26083
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 6,13,16,19,22 ? * *")
81
	@Scheduled(cron = "0 0 16,22 ? * *")
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
 
Line 102... Line 102...
102
		scheduledTasks.checkfocusedModelInPartnerStock();
102
		scheduledTasks.checkfocusedModelInPartnerStock();
103
 
103
 
104
		log.info("endTime" + LocalDateTime.now());
104
		log.info("endTime" + LocalDateTime.now());
105
	}
105
	}
106
	
106
	
107
	@Scheduled(cron = "0 0 8,10,12,14,16,18,20,22 * * *")
107
	@Scheduled(cron = "0 0 8,10,12,14,16,18,20 * * *")
108
	public void notifyLead() throws Throwable {
108
	public void notifyLead() throws Throwable {
109
		scheduledTasks.notifyLead();
109
		scheduledTasks.notifyLead();
110
		scheduledTasks.notifyVisits();
110
		scheduledTasks.notifyVisits();
111
	}
111
	}
112
 
112