Subversion Repositories SmartDukaan

Rev

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

Rev 31552 Rev 31553
Line 280... Line 280...
280
		FofoStore fs = fofoStoreRepository.selectByRetailerId(userInfo.getRetailerId());
280
		FofoStore fs = fofoStoreRepository.selectByRetailerId(userInfo.getRetailerId());
281
		sort = "w" + fs.getWarehouseId() + "_i desc";
281
		sort = "w" + fs.getWarehouseId() + "_i desc";
282
 
282
 
283
		logger.info("endPoint {}", endPoint);
283
		logger.info("endPoint {}", endPoint);
284
 
284
 
285
		if (endPoint != null && !endPoint.trim().isEmpty()) {
285
		if (!endPoint.equals(null)) {
286
			WebListing webListing = webListingRepository.selectByUrl(endPoint);
286
			WebListing webListing = webListingRepository.selectByUrl(endPoint);
287
			dealResponse = this.getDealResponses(userInfo, webListing);
287
			dealResponse = this.getDealResponses(userInfo, webListing);
288
 
288
 
289
		} else {
289
		} else {
290
 
290