Subversion Repositories SmartDukaan

Rev

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

Rev 24091 Rev 24101
Line 179... Line 179...
179
			@RequestParam(value = "brand", required = false) String brand,
179
			@RequestParam(value = "brand", required = false) String brand,
180
			@RequestParam(value = "hotDeal", required = false) boolean hotDeal) throws Throwable {
180
			@RequestParam(value = "hotDeal", required = false) boolean hotDeal) throws Throwable {
181
		List<FofoCatalogResponse> dealResponse = new ArrayList<>();
181
		List<FofoCatalogResponse> dealResponse = new ArrayList<>();
182
		UserInfo userInfo = (UserInfo) request.getAttribute("userInfo");
182
		UserInfo userInfo = (UserInfo) request.getAttribute("userInfo");
183
		if (roleManagerService.isPartner(userInfo.getRoleIds())) {
183
		if (roleManagerService.isPartner(userInfo.getRoleIds())) {
184
			categoryId = "(3 OR 6)";
-
 
185
			UserCart uc = userAccountRepository.getUserCart(userInfo.getUserId());
184
			UserCart uc = userAccountRepository.getUserCart(userInfo.getUserId());
186
			List<Integer> tagIds = pricingService.getTagsIdsByRetailerId(uc.getUserId());
185
			List<Integer> tagIds = pricingService.getTagsIdsByRetailerId(uc.getUserId());
187
			RestClient rc = new RestClient();
186
			RestClient rc = new RestClient();
188
			Map<String, String> params = new HashMap<>();
187
			Map<String, String> params = new HashMap<>();
189
			List<String> mandatoryQ = new ArrayList<>();
188
			List<String> mandatoryQ = new ArrayList<>();