jsonResult.put("status", Constants.WEBSERVICE_STATUS_SUCCESS);
Long taxRegionId = Format.getLong(form.getTaxRegionId());
TaxRegion taxRegion = (TaxRegion) em.find(TaxRegion.class, taxRegionId);
TaxRegionZip taxRegionZip = new TaxRegionZip();
taxRegionZip.setZipCodeStart(form.getZipCodeStart());
taxRegionZip.setZipCodeEnd(form.getZipCodeEnd());
taxRegionZip.setRecUpdateBy(adminBean.getUser().getUserId());
taxRegionZip.setRecUpdateDatetime(new Date(System.currentTimeMillis()));
taxRegionZip.setRecCreateBy(adminBean.getUser().getUserId());
taxRegionZip.setRecCreateDatetime(new Date(System.currentTimeMillis()));
taxRegionZip.setTaxRegion(taxRegion);
em.persist(taxRegionZip);
String result = getJSONZipCodeList(taxRegion);
streamWebService(response, result);