package com.ischoolbar.programmer.controller.home; import java.util.Date; import java.util.HashMap; import java.util.Map; import javax.servlet.http.HttpServletRequest; import org.apache.commons.lang.StringUtils; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.ResponseBody; import org.springframework.web.servlet.ModelAndView; import com.ischoolbar.programmer.entity.common.Account; import com.ischoolbar.programmer.entity.home.Address; import com.ischoolbar.programmer.service.common.AccountService; import com.ischoolbar.programmer.service.common.ProductCategoryService; import com.ischoolbar.programmer.service.common.ProductService; import com.ischoolbar.programmer.service.home.AddressService; import com.ischoolbar.programmer.util.MenuUtil; @RequestMapping("/address") @Controller public class AddressController { @Autowired private AccountService accountService; @Autowired private ProductCategoryService productCategoryService; @Autowired private ProductService productService; @Autowired private AddressService addressService; @RequestMapping(value = "/list",method = RequestMethod.GET) public ModelAndView index(ModelAndView model,HttpServletRequest request){ model.addObject("productCategoryList", MenuUtil.getTreeCategory(productCategoryService.findList(new HashMap()))); model.addObject("allCategoryId","shop_hd_menu_all_category"); Account onlineAccount = (Account)request.getSession().getAttribute("account"); Map queryMap = new HashMap(); queryMap.put("userId", onlineAccount.getId()); model.addObject("addressList", addressService.findList(queryMap)); model.addObject("currentUser", "current_"); model.setViewName("home/address/list"); return model; } @RequestMapping(value = "/add",method = RequestMethod.POST) @ResponseBody public Map add(Address address,HttpServletRequest request){ Map ret = new HashMap(); Account onlineAccount = (Account)request.getSession().getAttribute("account"); ret.put("type", "error"); if(address == null){ ret.put("msg", "错误"); return ret; } if(StringUtils.isEmpty(address.getName())){ ret.put("msg", "错误"); return ret; } if(StringUtils.isEmpty(address.getAddress())){ ret.put("msg", "错误"); return ret; } if(StringUtils.isEmpty(address.getPhone())){ ret.put("msg", "错误"); return ret; } address.setUserId(onlineAccount.getId()); address.setCreateTime(new Date()); if(addressService.add(address) <= 0){ ret.put("msg", "错误!"); return ret; } ret.put("type", "success"); return ret; } @RequestMapping(value = "/edit",method = RequestMethod.POST) @ResponseBody public Map edit(Address address,HttpServletRequest request){ Map ret = new HashMap(); Account onlineAccount = (Account)request.getSession().getAttribute("account"); ret.put("type", "error"); if(address == null){ ret.put("msg", "错误"); return ret; } Address existAddress = addressService.findById(address.getId()); if(existAddress == null){ ret.put("msg", "错误"); return ret; } if(StringUtils.isEmpty(address.getName())){ ret.put("msg", "错误"); return ret; } if(StringUtils.isEmpty(address.getAddress())){ ret.put("msg", "错误"); return ret; } if(StringUtils.isEmpty(address.getPhone())){ ret.put("msg", "错误"); return ret; } address.setUserId(onlineAccount.getId()); if(addressService.edit(address) <= 0){ ret.put("msg", "错误!"); return ret; } ret.put("type", "success"); return ret; } @RequestMapping(value = "/delete",method = RequestMethod.POST) @ResponseBody public Map delete(Long id){ Map ret = new HashMap(); ret.put("type", "error"); if(id == null){ ret.put("msg", "错误"); return ret; } if(addressService.delete(id) <= 0){ ret.put("msg", "错误!"); return ret; } ret.put("type", "success"); return ret; } }