/** * 功能:构造方法 * * @author 满口蛀牙 * @date 2015年10月11日 * @param null * @return null * @throws null */ public String show() { // 商品 Goods callBackObj = goodsService.unique(goods); request.put("callBackObj", callBackObj); // 品牌 int brandId = callBackObj.getBrandId(); if (brandId > 0) { GoodsBrand tempGoodsBrand = new GoodsBrand(); tempGoodsBrand.setId(brandId); GoodsBrand callBackGoodsBrand = goodsBrandService.unique(tempGoodsBrand); request.put("callBackGoodsBrand", callBackGoodsBrand); } // 赠品 if (callBackObj.getGiftId() > 0) { Goods gift = new Goods(); gift.setId(callBackObj.getGiftId()); Goods callBackGift = goodsService.unique(gift); request.put("callBackGift", callBackGift); } // 图片 return "show"; }
/** * 功能:根据id获取库存数量 * * @author 满口蛀牙 * @date 2015年10月21日 * @param null * @return String * @throws null */ public String getGoodsInventory() { // 商品 Goods callBackObj = goodsService.unique(goods); jsonCallString = callBackObj.getNumbers() + ""; return AJAX_RESPONSE; }