Subversion Repositories SmartDukaan

Rev

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

Rev 30529 Rev 30533
Line 377... Line 377...
377
			@RequestParam int deviceId, @RequestParam int fofoId)
377
			@RequestParam int deviceId, @RequestParam int fofoId)
378
			throws IOException, MessagingException, ProfitMandiBusinessException {
378
			throws IOException, MessagingException, ProfitMandiBusinessException {
379
 
379
 
380
		LOGGER.info("UserId -> {}, Device Id -> {}", userId, deviceId);
380
		LOGGER.info("UserId -> {}, Device Id -> {}", userId, deviceId);
381
		FofoStore fs = fofoStoreRepository.selectByRetailerId(fofoId);
381
		FofoStore fs = fofoStoreRepository.selectByRetailerId(fofoId);
382
		double dist = 0;
382
		Double dist = null;
383
		HypertrackKey hyperTrackKey = hypertrackKeyRepository.selectByUserIdAndDeviceId(userId, deviceId);
383
		HypertrackKey hyperTrackKey = hypertrackKeyRepository.selectByUserIdAndDeviceId(userId, deviceId);
384
 
384
 
385
		LOGGER.info("hyperTrackKey {}" + hyperTrackKey);
385
		LOGGER.info("hyperTrackKey {}" + hyperTrackKey);
386
		OkHttpClient client = new OkHttpClient();
386
		OkHttpClient client = new OkHttpClient();
387
 
387