Subversion Repositories SmartDukaan

Rev

Rev 989 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 989 Rev 1002
Line 133... Line 133...
133
		Client client = null;
133
		Client client = null;
134
		
134
		
135
		try {
135
		try {
136
			catalogServiceClient = new CatalogServiceClient();
136
			catalogServiceClient = new CatalogServiceClient();
137
			client = catalogServiceClient.getClient();
137
			client = catalogServiceClient.getClient();
138
			List<Long> items = client.getLatestArrivalsCatalogIds(1,4,-1);
138
			List<Long> items = client.getLatestArrivalsCatalogIds(1, 4, 10003);
139
			List<String> itemList = new ArrayList<String>();
139
			List<String> itemList = new ArrayList<String>();
140
			for(Long item: items){
140
			for(Long item: items){
141
				try{
141
				try{
142
					itemList.add(FileUtils.read( Utils.EXPORT_ENTITIES_PATH + item + File.separator +"HomeSnippet.html"));
142
					itemList.add(FileUtils.read( Utils.EXPORT_ENTITIES_PATH + item + File.separator +"HomeSnippet.html"));
143
				}catch(IOException ioex){
143
				}catch(IOException ioex){