Subversion Repositories SmartDukaan

Rev

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

Rev 29794 Rev 29800
Line 63... Line 63...
63
	@Autowired
63
	@Autowired
64
	private InvestmentRelatedTasks investmentRelatedTasks;
64
	private InvestmentRelatedTasks investmentRelatedTasks;
65
 
65
 
66
	@Autowired
66
	@Autowired
67
	private CsService csService;
67
	private CsService csService;
68
 
68
	
69
	@Autowired
69
	@Autowired
70
	private FofoOrderItemRepository fofoOrderItemRepository;
70
	private FofoOrderItemRepository fofoOrderItemRepository;
71
 
71
 
-
 
72
 
72
	@Autowired
73
	@Autowired
73
	private ContentPojoPopulator contentPojoPopulator;
74
	private ContentPojoPopulator contentPojoPopulator;
74
 
75
 
75
	public static void main(String[] args) throws Throwable {
76
	public static void main(String[] args) throws Throwable {
76
		new SpringApplicationBuilder(Application.class).web(WebApplicationType.NONE).run(args);
77
		new SpringApplicationBuilder(Application.class).web(WebApplicationType.NONE).run(args);
Line 191... Line 192...
191
			System.out.println("checkPartnerActiveStore");
192
			System.out.println("checkPartnerActiveStore");
192
			scheduledTasks.checkPartnerActiveStore();
193
			scheduledTasks.checkPartnerActiveStore();
193
			System.exit(0);
194
			System.exit(0);
194
		}
195
		}
195
 
196
 
-
 
197
		if (args.containsOption("selectFinServiceFollowUpDateByCurrDate")) {
-
 
198
			System.out.println("selectfinServiceFollowUpDateByCurrDate");
-
 
199
			
-
 
200
			scheduledTasks.selectFinServiceFollowUpDateByCurrDate(LocalDate.now());
-
 
201
			System.exit(0);
-
 
202
		}
-
 
203
 
196
		if (args.containsOption("addHdfcPayment")) {
204
		if (args.containsOption("addHdfcPayment")) {
197
			runOnceTasks.addPayment();
205
			runOnceTasks.addPayment();
198
			System.exit(0);
206
			System.exit(0);
199
		}
207
		}
200
		if (args.containsOption("processSchemeOut")) {
208
		if (args.containsOption("processSchemeOut")) {
Line 626... Line 634...
626
						args.getOptionValues("dob").get(0), args.getOptionValues("aadhaar").get(0),
634
						args.getOptionValues("dob").get(0), args.getOptionValues("aadhaar").get(0),
627
						args.getOptionValues("gender").get(0), args.getOptionValues("father").get(0));
635
						args.getOptionValues("gender").get(0), args.getOptionValues("father").get(0));
628
 
636
 
629
			}
637
			}
630
 
638
 
-
 
639
 
631
			System.exit(0);
640
			System.exit(0);
632
		}
641
		}
633
 
642
 
634
	}
643
	}
635
 
644