Package com.jpoweredcart.admin.form.sale

Examples of com.jpoweredcart.admin.form.sale.CountryWithZones


  }
 
  @RequestMapping(value="/country.json", method=RequestMethod.GET)
  public @ResponseBody CountryWithZones getCountriesAsJson(@RequestParam("countryId") Integer countryId,
      HttpServletRequest request){
    if(countryId==null || countryId==0) return new CountryWithZones();
    CountryWithZones cwz = (CountryWithZones)countryAdminModel
        .get(countryId, CountryWithZones.class);
    if(cwz!=null){
      List<Zone> zones = zoneAdminModel.getAllByCountryId(countryId);
      cwz.setZones(zones);
    }
    return cwz;
  }
View Full Code Here

TOP

Related Classes of com.jpoweredcart.admin.form.sale.CountryWithZones

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.