Subversion Repositories SmartDukaan

Rev

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

Rev 11650 Rev 11804
Line 380... Line 380...
380
						+"<td>" + heldorders + "</td>"
380
						+"<td>" + heldorders + "</td>"
381
						+"</tr>");
381
						+"</tr>");
382
			}
382
			}
383
			i++;
383
			i++;
384
			if(flipkartItemsInventoryMap.entrySet().size()!=1 && (i!=flipkartItemsInventoryMap.entrySet().size()) ){
384
			if(flipkartItemsInventoryMap.entrySet().size()!=1 && (i!=flipkartItemsInventoryMap.entrySet().size()) ){
385
				if(i%10!=0){
385
				if(i%5!=0){
386
					jsonRequest.append(",");
386
					jsonRequest.append(",");
387
				}
387
				}
388
			}
388
			}
389
			if(i%10==0 || i==flipkartItemsInventoryMap.entrySet().size()){
389
			if(i%5==0 || i==flipkartItemsInventoryMap.entrySet().size()){
390
				StringEntity input = null;
390
				StringEntity input = null;
391
				try {
391
				try {
392
					input = new StringEntity(jsonStart+jsonRequest.toString()+jsonEnd);
392
					input = new StringEntity(jsonStart+jsonRequest.toString()+jsonEnd);
393
					System.out.println("Json input " + jsonStart+jsonRequest.toString()+jsonEnd);
393
					System.out.println("Json input " + jsonStart+jsonRequest.toString()+jsonEnd);
394
					jsonRequest = new StringBuffer();
394
					jsonRequest = new StringBuffer();