Subversion Repositories SmartDukaan

Rev

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

Rev 13647 Rev 13648
Line 80... Line 80...
80
			List<FlipkartOrder> errorOrderList = new ArrayList<FlipkartOrder>();
80
			List<FlipkartOrder> errorOrderList = new ArrayList<FlipkartOrder>();
81
			
81
			
82
			while ((line = rd.readLine()) != null) {
82
			while ((line = rd.readLine()) != null) {
83
				System.out.println(line);
83
				System.out.println(line);
84
				JSONObject jsonObj = new JSONObject(line);
84
				JSONObject jsonObj = new JSONObject(line);
85
				JSONObject json= (JSONObject)jsonObj.get("data");
85
				JSONArray json= (JSONArray)jsonObj.get("data");
-
 
86
				for(int i=0;i<json.length();i++){
86
				System.out.println(json.get("data"));
87
					System.out.println(json.get(i));
-
 
88
				}				
87
			}
89
			}
88
			
90
			
89
			//https://seller.flipkart.com/order_management/search_order_items?order_id=OD40827062297&sellerId=m2z93iskuj81qiid
91
			//https://seller.flipkart.com/order_management/search_order_items?order_id=OD40827062297&sellerId=m2z93iskuj81qiid
90
			TransactionClient transactionServiceClient = new TransactionClient();
92
			TransactionClient transactionServiceClient = new TransactionClient();
91
			in.shop2020.model.v1.order.TransactionService.Client tClient = transactionServiceClient.getClient();
93
			in.shop2020.model.v1.order.TransactionService.Client tClient = transactionServiceClient.getClient();