Subversion Repositories SmartDukaan

Rev

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

Rev 26408 Rev 26790
Line 54... Line 54...
54
 
54
 
55
	@Scheduled(cron = "0 0 1,22 * * *")
55
	@Scheduled(cron = "0 0 1,22 * * *")
56
	public void sendPartnerInvestmentDetails() throws Exception {
56
	public void sendPartnerInvestmentDetails() throws Exception {
57
		scheduledTasks.sendPartnerInvestmentDetails();
57
		scheduledTasks.sendPartnerInvestmentDetails();
58
	}
58
	}
-
 
59
 
59
	@Scheduled(cron = "0 0 1 5 * *")
60
	@Scheduled(cron = "0 0 1 5 * *")
60
	public void sendTargetVsSalesReport() throws Exception {
61
	public void sendTargetVsSalesReport() throws Exception {
61
		scheduledTasks.sendTargetVsSalesReport(null);
62
		scheduledTasks.sendTargetVsSalesReport(null);
62
	}
63
	}
63
 
64
 
Line 108... Line 109...
108
		log.info("startTime" + LocalDateTime.now());
109
		log.info("startTime" + LocalDateTime.now());
109
		scheduledTasks.checkfocusedModelInPartnerStock();
110
		scheduledTasks.checkfocusedModelInPartnerStock();
110
 
111
 
111
		log.info("endTime" + LocalDateTime.now());
112
		log.info("endTime" + LocalDateTime.now());
112
	}
113
	}
113
	
114
 
114
	@Scheduled(cron = "0 0 8,10,12,14,16,18,20 * * *")
115
	@Scheduled(cron = "0 0 8,10,12,14,16,18,20 * * *")
115
	public void notifyLead() throws Throwable {
116
	public void notifyLead() throws Throwable {
116
		scheduledTasks.notifyLead();
117
		scheduledTasks.notifyLead();
117
		scheduledTasks.notifyVisits();
118
		scheduledTasks.notifyVisits();
118
	}
119
	}
119
 
120
 
120
	@Scheduled(cron = "0 0 1 * * *")
121
	@Scheduled(cron = "0 0 1 * * *")
121
	public void fetchImeiActivation() throws Throwable {
122
	public void fetchImeiActivation() throws Throwable {
122
		runOnceTasks.fetchImeiActivation(0);
123
		runOnceTasks.fetchImeiActivation(0);
123
	}
124
	}
124
	
125
 
125
	/*@Scheduled(cron = "0 0 1 1 * *")
126
	@Scheduled(cron = "0 0 1 * * *")
126
	public void checkPriceDrop() throws Throwable {
127
	public void checkValidateReferral() throws Throwable {
-
 
128
		log.info("startTime" + LocalDateTime.now());
127
		scheduledTasks.checkPriceDrop();
129
		scheduledTasks.checkValidateReferral();
-
 
130
 
-
 
131
		log.info("endTime" + LocalDateTime.now());
-
 
132
	}
-
 
133
 
-
 
134
	/*
-
 
135
	 * @Scheduled(cron = "0 0 1 1 * *") public void checkPriceDrop() throws
-
 
136
	 * Throwable { scheduledTasks.checkPriceDrop(); }
128
	}*/
137
	 */
129
	
138
 
130
}
139
}