Subversion Repositories SmartDukaan

Rev

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

Rev 23317 Rev 23322
Line 275... Line 275...
275
			long itemId = (long) sheet.getRow(iterator).getCell(0).getNumericCellValue();
275
			long itemId = (long) sheet.getRow(iterator).getCell(0).getNumericCellValue();
276
			double taxRate = sheet.getRow(iterator).getCell(1).getNumericCellValue();
276
			double taxRate = sheet.getRow(iterator).getCell(1).getNumericCellValue();
277
			StateGstRate sgr = new StateGstRate();
277
			StateGstRate sgr = new StateGstRate();
278
			sgr.setItemId(itemId);
278
			sgr.setItemId(itemId);
279
			sgr.setIgstRate(taxRate);
279
			sgr.setIgstRate(taxRate);
280
 
-
 
-
 
280
			stateGstRates.add(sgr);
281
		}
281
		}
282
 
282
 
283
		Client cc = new CatalogClient().getClient();
283
		Client cc = new CatalogClient().getClient();
284
		cc.persistGstRate(stateGstRates);
284
		cc.persistGstRate(stateGstRates);
285
		
285