Exemplo n.º 1
0
 /**
  * @Title: addCartToDb @Description: (添加商品至购物车数据库)
  *
  * @author <a href="*****@*****.**">赖彩妙</a>
  * @date 2015-4-12
  * @version 1.0.0
  * @param request
  * @param newCart
  * @param accountId
  * @param @return
  * @param @throws Exception
  * @return String 返回类型
  * @throws
  */
 private String addCartToDb(Cart newCart, Integer accountId) throws Exception {
   // 根据用户id查询购物车商品
   HeadObject headObject = CommonHeadUtil.geneHeadObject("cartService.findCartListByAccountId");
   JSONObject jsonObject = new JSONObject();
   jsonObject.put("accountId", accountId);
   ResultObject resultObject =
       (ResultObject)
           orderService.doServiceByServer(new RequestObject(headObject, jsonObject)); // 判断失效商品?
   List<Cart> cartList =
       (List<Cart>) JSONArray.toCollection((JSONArray) resultObject.getContent(), Cart.class);
   // 判断购物车中是否已存在该商品,存在则加数量,不存在则加入购物车
   boolean isExist = false;
   for (Cart c : cartList) {
     if (c.getProductId().equals(newCart.getProductId())) // 该商品已存在
     {
       // 修改购物车中商品购买数量
       headObject = CommonHeadUtil.geneHeadObject("cartService.updateQuantityByProAndMem");
       newCart.setQuantity(c.getQuantity() + newCart.getQuantity());
       headObject =
           (HeadObject)
               orderService.doServiceByServer(
                   new RequestObject(headObject, JSONObject.fromObject(newCart)));
       if (headObject.getRetCode().equals(ErrorCode.FAILURE)) {
         return errorMsg;
       }
       isExist = true;
     }
   }
   if (!isExist) {
     if (cartList.size() >= MAX_CART_SIZE) {
       return "购物车已满,请清理后再加入购物车";
     } else {
       // 将购物车数据存入数据库
       headObject = CommonHeadUtil.geneHeadObject("cartService.saveCart");
       jsonObject.clear();
       jsonObject.put("specValueId", newCart.getSpecValueId());
       newCart.setSpecValueId(null);
       newCart.setCartId(null);
       jsonObject.put("newCart", newCart);
       headObject =
           (HeadObject) orderService.doServiceByServer(new RequestObject(headObject, jsonObject));
       if (resultObject.getHead().getRetCode().equals(ErrorCode.FAILURE)) {
         return errorMsg;
       }
     }
   }
   return null;
 }
Exemplo n.º 2
0
 private List<CartListDTO> findStoresByCartList(List<CartListDTO> list) throws Exception {
   if (list != null && list.size() >= 1) {
     List<Integer> storeIdList = new ArrayList<Integer>();
     for (int i = 0; i < list.size(); i++) {
       storeIdList.add(list.get(i).getStoreId());
     }
     HeadObject headObject = null;
     ResultObject resultObject = null;
     headObject = CommonHeadUtil.geneHeadObject("storeService.selectByStoreIdList3");
     resultObject =
         (ResultObject)
             memberService.doServiceByServer(new RequestObject(headObject, storeIdList));
     List<Store> storeList = null;
     if (resultObject.getContent() != null) {
       storeList =
           com.alibaba.fastjson.JSONArray.parseArray(
               resultObject.getContent().toString(), Store.class);
     }
     if (storeList != null) {
       for (int i = 0; i < storeList.size(); i++) {
         for (int j = 0; j < list.size(); j++) {
           if (list.get(j).getStoreId().equals(storeList.get(i).getStoreId().intValue())) {
             list.get(j).setLimitGoodsdown(storeList.get(i).getLimitGoodsdown());
             list.get(j).setLimitStore(storeList.get(i).getLimitStore());
             list.get(j).setLimitStoredown(storeList.get(i).getLimitStoredown());
             list.get(j).setShopStatus(storeList.get(i).getShopstatus());
             list.get(j).setStatus(storeList.get(i).getStatus());
             list.get(j).setDisabled(storeList.get(i).getDisabled());
           }
         }
       }
     }
   }
   return list;
 }
Exemplo n.º 3
0
  /**
   * @Title: replyComment @Description: 卖家回复评论
   *
   * @author <a href="*****@*****.**">蔡志杰</a>
   * @date 2015-8-25 下午4:35:02
   * @version 1.0.0
   * @param @param data
   * @param @param request
   * @param @return
   * @return Object 返回类型
   * @throws
   */
  @RequestMapping("/replyComment")
  public Object replyComment(String data, HttpServletRequest request) {
    log.info("---------CommentsManagerController.replyComment-----------");
    log.info("----------------------data:" + data + "-------------------------");
    HeadObject headObject = null;
    ResultObject resultObject = null;

    OrderCommentVO orderCommentVO = JSON.parseObject(data, OrderCommentVO.class);
    ValidationResult bindingResult = ValidationUtils.validateEntity(orderCommentVO);
    if (bindingResult.isHasErrors()) {
      return elementErrors(headObject, bindingResult);
    }

    try {
      MemberListDo memberListDo =
          APICommonUtil.getMemberListDo((String) request.getAttribute("sessionid"));
      if (null != memberListDo) {
        orderCommentVO.setCommentsType(CommentConstant.CommentsType.EXPLAIN.getKey());
        orderCommentVO.setMemberId(Long.parseLong(memberListDo.getMemberId()));
        OrderComment record = new OrderComment();
        BeanUtils.copyProperties(record, orderCommentVO);
        headObject = CommonHeadUtil.geneHeadObject("orderCommentService.saveOrderComment");
        resultObject =
            (ResultObject) orderService.doServiceByServer(new RequestObject(headObject, record));
      } else {
        return CommonUtil.notLoign(headObject);
      }
    } catch (Exception e) {
      e.printStackTrace();
      log.error("数据处理异常{}", e);
      return processExpction(headObject);
    }
    return resultObject;
  }
Exemplo n.º 4
0
 /**
  * @Title: commentDisplay @Description: 评论显示
  *
  * @author <a href="*****@*****.**">蔡志杰</a>
  * @date 2015-8-25 下午4:35:12
  * @version 1.0.0
  * @param @param data
  * @param @param request
  * @param @return
  * @return Object 返回类型
  * @throws
  */
 @RequestMapping("/commentDisplay")
 public Object commentDisplay(String data, HttpServletRequest request) {
   log.info("---------CommentsManagerController.commentDisplay-----------");
   log.info("----------------------data:" + data + "-------------------------");
   HeadObject headObject = null;
   ResultObject resultObject = null;
   try {
     JSONObject obj = JSON.parseObject(data);
     if (null == obj.getString("commentId")) {
       return processExpction("commentId不能为空!");
     } else if (null == obj.getString("display")) {
       return processExpction("display不能为空!");
     }
     String[] ids = {obj.getString("commentId")};
     headObject = CommonHeadUtil.geneHeadObject("orderCommentService.updateOrderCommentDisply");
     Map<String, Object> map = new HashMap<String, Object>();
     map.put("commentIds", ids);
     map.put("display", obj.getString("display"));
     resultObject =
         (ResultObject) orderService.doServiceByServer(new RequestObject(headObject, map));
   } catch (Exception e) {
     e.printStackTrace();
     log.error(e.toString());
     return CommonUtil.processExpction(headObject);
   }
   return resultObject;
 }
Exemplo n.º 5
0
  @RequestMapping("/savePaintingPartsInfo")
  @ResponseBody
  public Object savePaintingPartsInfo(String data, HttpServletRequest request) throws Exception {
    log.info("------------start savePaintingPartsInfo -----------------");
    log.info("----------------------data:" + data + "-------------------------");
    HeadObject headObject = null;
    try {
      headObject = CommonHeadUtil.geneHeadObject("paintingService.saveCarParts");
      JSONObject jsonData = JSONObject.fromObject(data);
      MemberListDo memberListDo =
          APICommonUtil.getMemberListDo((String) request.getAttribute("sessionid"));
      JSONObject jsonObject = new JSONObject();

      //			JSONObject carPartsJson = new JSONObject();
      //			carPartsJson.put("car_part_id", jsonData.getString("car_part_id"));
      //			carPartsJson.put("pic", jsonData.getString("pic"));
      //			carPartsJson.put("remark", jsonData.getString("remark"));

      jsonObject.put("catParts", jsonData.get("catParts"));
      jsonObject.put("memberId", memberListDo.getMemberId());
      jsonObject.put("accountId", memberListDo.getAccountId());
      HeadObject retObject =
          (HeadObject) otherService.doServiceByServer(new RequestObject(headObject, jsonObject));
      return new ResultObject(retObject);
    } catch (Exception e) {
      log.error(e.getMessage(), e);
      return processExpction(e.getMessage());
    }
  }
Exemplo n.º 6
0
 private List<CartListDTO> findProImage(List<CartListDTO> list) throws Exception {
   if (list != null && list.size() >= 1) {
     HeadObject headObject = null;
     ResultObject resultObject = null;
     List<Picture> pictureList = null;
     for (int i = 0; i < list.size(); i++) {
       // 查询图片
       headObject = CommonHeadUtil.geneHeadObject("pictureService.selectByProductId");
       resultObject =
           (ResultObject)
               itemService.doServiceByServer(
                   new RequestObject(headObject, list.get(i).getProductId()));
       //				pictureList = (List<Picture>) resultObject.getContent();
       if (resultObject.getContent() != null) {
         pictureList =
             com.alibaba.fastjson.JSONObject.parseArray(
                 resultObject.getContent().toString(), Picture.class);
         if (pictureList != null && pictureList.size() >= 1) {
           list.get(i).setGoodsImage(pictureList.get(0).getPicturePath());
         }
       }
     }
   }
   return list;
 }
Exemplo n.º 7
0
  @RequestMapping("/find")
  public Object find(HttpServletRequest request, Area area) throws Exception {
    HeadObject headObject =
        CommonHeadUtil.geneHeadObject(
            request, "1000020104-01", GlobalStatic.SYSTEM_CODE_DATA, GlobalStatic.SYSTEM_CODE_BACK);

    return signService.doCommon(headObject, area);
  }
Exemplo n.º 8
0
 private PamAccount findAccountId(Integer accountId) throws Exception {
   HeadObject headObject = CommonHeadUtil.geneHeadObject("accountService.selectByAccountId");
   ResultObject resultObject =
       (ResultObject) memberService.doServiceByServer(new RequestObject(headObject, accountId));
   PamAccount pamAccount = null;
   if (resultObject != null && resultObject.getContent() != null) {
     pamAccount = (PamAccount) resultObject.getContent();
   }
   return pamAccount;
 }
Exemplo n.º 9
0
 private Member selectMember(Integer accountId) throws Exception {
   if (accountId != null && accountId != 0) {
     HeadObject headObject =
         CommonHeadUtil.geneHeadObject("memberService.selectMemberByAccountId");
     JSONObject jsonObject = new JSONObject();
     jsonObject.put("accountId", accountId);
     ResultObject resultObject =
         (ResultObject) memberService.doServiceByServer(new RequestObject(headObject, jsonObject));
     return (Member)
         JSONObject.toBean(JSONObject.fromObject(resultObject.getContent()), Member.class);
   }
   return null;
 }
Exemplo n.º 10
0
 @RequestMapping("/toShoppingHistory")
 public String toShoppingHistory(HttpServletRequest request, OrderQryDTO dto) {
   HeadObject headObject = CommonHeadUtil.geneHeadObject(request, "020104-09");
   try {
     MemberListDo memberListDo = CommonUtil.getMemberListDo(request);
     dto.setMemberId(Long.parseLong(memberListDo.getMemberId()));
     ResultObject resultObject = orderService.doService(new RequestObject(headObject, dto));
     request.setAttribute("history", resultObject.getContent());
   } catch (Exception e) {
     e.printStackTrace();
   }
   return "pages/biz/shoppinghistory/shoppinghistory";
 }
Exemplo n.º 11
0
 /**
  * @Title: deleteCartFromDb @Description: (根据货品id列表从购物车数据库删除指定商品)
  *
  * @author <a href="*****@*****.**">赖彩妙</a>
  * @date 2015-4-13
  * @version 1.0.0
  * @param request
  * @param proIdList
  * @param memberId
  * @param @return
  * @param @throws Exception
  * @return boolean 返回类型
  * @throws
  */
 private boolean deleteCartFromDb(List<Integer> proIdList, Integer memberId) throws Exception {
   HeadObject headObject =
       CommonHeadUtil.geneHeadObject("cartService.deleteCartByProIdAndMemberId");
   JSONObject jsonObject = new JSONObject();
   jsonObject.put("memberId", memberId);
   jsonObject.put("proIdList", proIdList);
   headObject =
       (HeadObject) orderService.doServiceByServer(new RequestObject(headObject, jsonObject));
   String retCode = headObject.getRetCode();
   if (ErrorCode.SUCCESS.equals(retCode)) {
     return true;
   }
   return false;
 }
Exemplo n.º 12
0
 /**
  * @description <b>保存订单评论</b>
  * @author 王鹏
  * @version 1.0.0
  * @data 2015-6-13
  * @param @param object
  * @param @return
  * @return Object
  */
 public Object saveOrderComment(Object object) {
   HeadObject head = new HeadObject();
   OrderComment record = (OrderComment) object;
   try {
     record.setCreateTime(new Date());
     orderCommentMapper.insertSelective(record);
     HeadObject headObject = CommonHeadUtil.geneHeadObject("goodsService.addCommentsCount");
     itemService.doServiceByServer(new RequestObject(headObject, record.getGoodsId()));
     head.setRetCode(ErrorCode.SUCCESS);
   } catch (Exception e) {
     head.setRetCode(ErrorCode.FAILURE);
     log.error("订单评论保存失败", e);
   }
   return new ResultObject(head, record);
 }
Exemplo n.º 13
0
  /**
   * @Title: commentsListData @Description: 评论列表
   *
   * @author <a href="*****@*****.**">蔡志杰</a>
   * @date 2015-8-25 下午4:34:48
   * @version 1.0.0
   * @param @param data
   * @param @param request
   * @param @return
   * @return Object 返回类型
   * @throws
   */
  @RequestMapping("/commentsListData")
  public Object commentsListData(String data, HttpServletRequest request) {
    log.info("---------CommentsManagerController.commentsListData-----------");
    log.info("----------------------data:" + data + "-------------------------");
    HeadObject headObject = null;
    ResultObject resultObject = null;
    try {
      MemberListDo memberListDo =
          APICommonUtil.getMemberListDo((String) request.getAttribute("sessionid"));
      if (null != memberListDo) {
        JSONObject obj = JSON.parseObject(data);
        String pageIndex = obj.getString("page");
        String pageSize = obj.getString("rows");

        MemberCommentQryDTO qryDTO = new MemberCommentQryDTO();
        qryDTO.setPage(
            StringUtil.isEmpty(pageIndex)
                ? GlobalStatic.DEFAULT_PAGE_INDEX
                : Integer.parseInt(pageIndex));
        qryDTO.setRows(
            StringUtil.isEmpty(pageSize)
                ? GlobalStatic.DEFAULT_PAGE_SIZE
                : Integer.parseInt(pageSize));
        qryDTO.setStoreId(memberListDo.getStoreId().intValue());
        qryDTO.setCompanyId(memberListDo.getCompanyId());
        qryDTO.setObjectType("order");
        headObject = CommonHeadUtil.geneHeadObject("orderCommentService.findMemberComment");
        resultObject =
            (ResultObject) orderService.doServiceByServer(new RequestObject(headObject, qryDTO));
      }

    } catch (Exception e) {
      log.error(e.getMessage(), e);
      return processExpction(e.getMessage());
    }
    return resultObject;
  }
Exemplo n.º 14
0
  /**
   * 上传图片
   *
   * @throws IOException
   */
  @RequestMapping("/paintingUploadImg")
  @ResponseBody
  public ResultObject paintingUploadImg(String data, HttpServletRequest request)
      throws IOException {
    JSONObject jsonData = JSONObject.fromObject(data);
    String imgStr = jsonData.getString("file");
    byte[] buffer = Base64.decode(imgStr);
    HeadObject head = CommonHeadUtil.geneHeadObject("pictureService.insertPicture");
    ResultObject resultObject = new ResultObject();
    ImagesDTO imagesDTO = null;
    // 保存
    try {
      imagesDTO = imagesService.uploadSingleFile(buffer, GlobalStatic.IMAGES_PATH_SHOP);
      head.setRetCode(ErrorCode.SUCCESS);
    } catch (Exception e) {
      log.error(e.getMessage());
      e.printStackTrace();
      head.setRetCode(ErrorCode.FAILURE);
    }

    resultObject.setHead(head);
    resultObject.setContent(imagesDTO);
    return resultObject;
  }
Exemplo n.º 15
0
  /**
   * @Title: orderAdd @Description: (提交订单)
   *
   * @author <a href="*****@*****.**">赖彩妙</a>
   * @date 2015-4-18
   * @version 1.0.0
   * @param request
   * @param response
   * @param @return
   * @param @throws Exception
   * @return Object 返回类型
   * @throws
   */
  @ResponseBody
  @RequestMapping("/submitOrder")
  public Object submitOrder(String data, HttpServletRequest request) throws Exception {
    log.info("start[CartController.submitOrder]");
    // 获取请求参数
    JSONObject jsonData = JSONObject.fromObject(data);
    MemberListDo memberListDo =
        APICommonUtil.getMemberListDo((String) request.getAttribute("sessionid"));

    //  		//测试
    //  		memberListDo = new MemberListDo();
    //  		memberListDo.setAccountType("100");
    //  		memberListDo.setMemberId("62");
    //  		memberListDo.setAccountId(152);
    //  		memberListDo.setLoginName("YOYO");

    // 订单号
    ResultObject resultObject = null;
    HeadObject headObject = null;
    JSONObject jsonObject = new JSONObject();
    // 查询当前登陆的member对象
    if (memberListDo == null || !memberListDo.getAccountType().equals("100")) {
      return new ResultObject(
          new HeadObject(ErrorCode.FAILURE), JSONObject.fromObject("{result:false,isBuyer:false}"));
    }
    // 用户已登录
    String storeIdString = jsonData.getJSONArray("storeIds").toString();
    String payment = (String) CommonUtil.getJsonValue(jsonData, "payment");

    String proIdsString = jsonData.getJSONArray("proIdListString").toString();
    String remark = jsonData.getString("remark");
    String quantityListString = jsonData.getJSONArray("quantityListString").toString();
    Integer point =
        StringUtil.isNotEmpty((String) CommonUtil.getJsonValue(jsonData, "point"))
            ? Integer.parseInt((String) CommonUtil.getJsonValue(jsonData, "point"))
            : 0;
    String appointmentStr = (String) CommonUtil.getJsonValue(jsonData, "appointmens");
    String goodsIdsStr = (String) CommonUtil.getJsonValue(jsonData, "goodsIds");

    List<Integer> storeIdList = null;
    payment =
        (payment != null && ("到店支付".equals(payment) || "在线支付".equals(payment))) ? payment : "在线支付";
    if (StringUtil.isEmpty(storeIdString)) {
      return new ResultObject(
          new HeadObject(ErrorCode.FAILURE), JSONObject.fromObject("{result:false,msg:'请选择门店'}"));
    }
    storeIdList =
        (List<Integer>) JSONArray.toCollection(JSONArray.fromObject(storeIdString), Integer.class);
    if (null == storeIdList || storeIdList.size() <= 0) {
      return new ResultObject(
          new HeadObject(ErrorCode.FAILURE), JSONObject.fromObject("{result:false,msg:'请选择门店'}"));
    }
    List<Integer> proIdList = null;
    if (StringUtil.isEmpty(proIdsString)) {
      return new ResultObject(
          new HeadObject(ErrorCode.FAILURE), JSONObject.fromObject("{result:false,msg:'该货品不存在'}"));
    }
    proIdList =
        (List<Integer>) JSONArray.toCollection(JSONArray.fromObject(proIdsString), Integer.class);
    if (null == proIdList || proIdList.size() <= 0) {
      return new ResultObject(
          new HeadObject(ErrorCode.FAILURE), JSONObject.fromObject("{result:false,msg:'该货品不存在'}"));
    }
    Member member = this.selectMember(memberListDo.getAccountId());
    if (point > member.getPointUseable().intValue()) {
      return new ResultObject(
          new HeadObject(ErrorCode.FAILURE),
          JSONObject.fromObject("{result:false,msg:'可用积分小于兑换积分'}"));
    }
    List<Integer> quantityList =
        (List<Integer>)
            JSONArray.toCollection(JSONArray.fromObject(quantityListString), Integer.class);
    // 根据proIdList查询购物车对象
    headObject = CommonHeadUtil.geneHeadObject("cartService.findMemberCartListByProIdList");
    Map<String, Object> cartParam = new HashMap<String, Object>();
    cartParam.put("proIdList", proIdList);
    cartParam.put("memberId", Integer.valueOf(memberListDo.getMemberId()));
    resultObject =
        (ResultObject) orderService.doServiceByServer(new RequestObject(headObject, cartParam));
    List<CartListDTO> cartList =
        (List<CartListDTO>)
            JSONArray.toCollection(
                JSONArray.fromObject(resultObject.getContent()), CartListDTO.class);
    if (null != cartList && cartList.size() > 0) {
      for (CartListDTO cartListDTO : cartList) {
        if ("1".equals(cartListDTO.getLimitGoodsdown())
            || "1".equals(cartListDTO.getLimitStore())
            || "1".equals(cartListDTO.getLimitStoredown())
            || "1".equals(cartListDTO.getShopStatus())
            || "1".equals(cartListDTO.getStatus())
            || "1".equals(cartListDTO.getDisabled())) {
          return new ResultObject(
              new HeadObject(ErrorCode.FAILURE),
              JSONObject.fromObject("{result:false,isLogin:true,msg:\"很抱歉,该订单中存在失效货品\"}"));
        }
      }
    }
    if (cartList != null && cartList.size() >= 1) {
      // 查询店铺
      storeIdList.clear();
      for (int i = 0; i < cartList.size(); i++) {
        storeIdList.add(cartList.get(i).getStoreId());
      }
      headObject = CommonHeadUtil.geneHeadObject("storeService.selectByStoreIdList3");
      resultObject =
          (ResultObject)
              memberService.doServiceByServer(new RequestObject(headObject, storeIdList));
      List<Store> storeList = null;
      if (resultObject.getContent() != null) {
        storeList =
            com.alibaba.fastjson.JSONArray.parseArray(
                resultObject.getContent().toString(), Store.class);
      }
      if (storeList != null) {
        for (int i = 0; i < storeList.size(); i++) {
          if ("1".equals(storeList.get(i).getLimitGoodsdown())
              || "1".equals(storeList.get(i).getLimitStore())
              || "1".equals(storeList.get(i).getLimitStoredown())
              || "1".equals(storeList.get(i).getShopstatus())
              || "1".equals(storeList.get(i).getStatus())
              || "1".equals(storeList.get(i).getDisabled())) {
            return new ResultObject(
                new HeadObject(ErrorCode.FAILURE),
                JSONObject.fromObject("{result:false,isLogin:true,msg:'很抱歉,该订单中存在失效货品'}"));
          }
        }
      }

      for (int i = 0; i < cartList.size(); i++) {
        if ("0".equals(cartList.get(i).getgMarketable())
            || "1".equals(cartList.get(i).getgDisabled())
            || "0".equals(cartList.get(i).getpMarketable())
            || "1".equals(cartList.get(i).getpDisabled())) {
          return new ResultObject(
              new HeadObject(ErrorCode.FAILURE),
              JSONObject.fromObject("{result:false,isLogin:true,msg:'很抱歉,该订单中存在失效货品'}"));
        }
        for (int j = 0; j < proIdList.size(); j++) {
          if (proIdList.get(j).equals(cartList.get(i).getProductId())) {
            if (quantityList.get(j) > cartList.get(i).getStore()) {
              return new ResultObject(
                  new HeadObject(ErrorCode.FAILURE),
                  JSONObject.fromObject("{result:false,isLogin:true,msg:'很抱歉,该订单中存在货品库存不足'}"));
            } else {
              cartList.get(i).setQuantity(quantityList.get(j));
            }
          }
        }

        String specDesc = cartList.get(i).getSpecDesc();
        if (specDesc != null && !"".equals(specDesc)) {
          String[] specItems = specDesc.split(",");
          if (specItems != null && specItems.length >= 1) {
            for (int j = specItems.length - 1; j >= 0; j--) {
              if (specItems[j].split(":")[0].split("\\|")[1].equals("分店")) {
                cartList
                    .get(i)
                    .setStoreId(Integer.parseInt(specItems[j].split(":")[1].split("\\|")[0]));
                cartList.get(i).setStoreName(specItems[j].split(":")[1].split("\\|")[1]);
                break;
              }
            }
          }
        }
        cartList.get(i).setMemberId(Integer.valueOf(memberListDo.getMemberId()));
      }
    }

    // 判断请求来源是否来自移动端
    String checkFrom =
        jsonData.getString("fphoneostype") != null
                && jsonData.getString("fphoneostype").equals("5000")
            ? "appAndroid"
            : "appIOS";
    // 存入数据库
    if (null == cartList || cartList.size() <= 0) {
      // 删除购物车数据
      headObject = CommonHeadUtil.geneHeadObject("cartService.deleteCartByProIdAndMemberId");
      jsonObject.clear();
      jsonObject.put("memberId", memberListDo.getMemberId());
      jsonObject.put("proIdList", proIdList);
      orderService.doServiceByServer(new RequestObject(headObject, jsonObject));
      resultObject =
          new ResultObject(
              new HeadObject(ErrorCode.SUCCESS), JSONObject.fromObject("{result:true}"));
      resultObject =
          new ResultObject(
              new HeadObject(ErrorCode.FAILURE),
              JSONObject.fromObject("{result:false,msg:'订单提交失败,该订单中的货品不存在'}"));
    }

    for (CartListDTO cartListDTO : cartList) {
      headObject = CommonHeadUtil.geneHeadObject("goodsTimePriceService.findGoodsTimePrice");
      Map<String, Object> param = new HashMap<String, Object>();
      if (StringUtil.isNotEmpty(cartListDTO.getAppointment())) {
        int index =
            cartListDTO.getAppointment().indexOf("|") == -1
                ? cartListDTO.getAppointment().length()
                : cartListDTO.getAppointment().indexOf("|");
        param.put("priceDate", cartListDTO.getAppointment().substring(0, index));
      } else {
        param.put("priceDate", new Date());
      }
      param.put("goodsId", cartListDTO.getGoodsId());
      resultObject =
          (ResultObject) itemService.doServiceByServer(new RequestObject(headObject, param));
      if (null != resultObject.getContent()) {
        GoodsTimePrice goodsTimePrice = (GoodsTimePrice) resultObject.getContent();
        cartListDTO.setGoodsPrice(goodsTimePrice.getPrice().doubleValue());
      }
    }
    jsonObject.clear();
    jsonObject.put("member", member);
    jsonObject.put("cartList", cartList);
    jsonObject.put("payment", payment);
    jsonObject.put("checkFrom", checkFrom);
    jsonObject.put("ip", request.getRemoteAddr());
    jsonObject.put("remark", remark);
    jsonObject.put("memberName", memberListDo.getLoginName());
    jsonObject.put("point", point);
    synchronized (this) {
      headObject = CommonHeadUtil.geneHeadObject("cartService.saveOrder");
      resultObject =
          (ResultObject) orderService.doServiceByServer(new RequestObject(headObject, jsonObject));
      if (resultObject.getHead().getRetCode().equals(ErrorCode.FAILURE)) {
        return new ResultObject(
            new HeadObject(ErrorCode.SUCCESS),
            JSONObject.fromObject(
                "{result:false,msg:'订单提交失败," + resultObject.getHead().getRetMsg() + "'}"));
      } else {
        for (CartListDTO c : cartList) {
          headObject = CommonHeadUtil.geneHeadObject("productService.decreStore");
          jsonObject.clear();
          jsonObject.put("productId", c.getProductId());
          jsonObject.put("quantity", c.getQuantity());
          itemService.doServiceByServer(new RequestObject(headObject, jsonObject));
        }

        headObject = CommonHeadUtil.geneHeadObject("cartService.deleteCartByProIdAndMemberId");
        jsonObject.clear();
        jsonObject.put("memberId", memberListDo.getMemberId());
        jsonObject.put("proIdList", proIdList);
        orderService.doServiceByServer(new RequestObject(headObject, jsonObject));

        try {
          String[] appointments = appointmentStr.split(",");
          String[] goodsIds = goodsIdsStr.split(",");
          for (int j = 0; j < goodsIds.length; j++) {
            String key =
                goodsIds[j]
                    + "_"
                    + appointments[j].replace("-", "").replace(":", "").replace("|", "_");
            String count = redisService.get(key.toString());
            if (StringUtil.isEmpty(count)) {
              count = "1";
            } else {
              count = String.valueOf(Integer.valueOf(count) + 1);
            }
            redisService.set(key.toString(), count, 60 * 60 * 24);
          }
        } catch (Exception e) {
          e.printStackTrace();
        }
      }
      return new ResultObject(new HeadObject(ErrorCode.SUCCESS), null);
    }
  }
Exemplo n.º 16
0
  /**
   * 喷漆部位查询
   *
   * @param data
   * @param request
   * @return
   */
  @ResponseBody
  @RequestMapping("/paintingPartsInfo")
  public Object paintingPartsInfo(String data, HttpServletRequest request) {
    log.info("---------getPaintingPartsInfo-----------");
    log.info("----------------------data:" + data + "-------------------------");
    HeadObject headObject = null;
    ResultObject resultObject = null;
    try {
      headObject = CommonHeadUtil.geneHeadObject("paintingService.findList");
      resultObject =
          (ResultObject)
              otherService.doServiceByServer(
                  new RequestObject(headObject, new HashMap<String, Object>()));
      Object content = resultObject.getContent();
      // 车前脸、车左侧灯父部件
      List<JSONObject> supNodes = new ArrayList<JSONObject>();
      Map<Integer, JSONObject> fatherParts = new HashMap<Integer, JSONObject>();

      // 父部件的子部件
      List<JSONObject> subNodes = new ArrayList<JSONObject>();
      if (content != null) {
        @SuppressWarnings("unchecked")
        List<CarPart> list = (List<CarPart>) content;
        for (CarPart carPart : list) {
          JSONObject partsJson = new JSONObject();
          partsJson.put("partId", carPart.getId());
          partsJson.put("parentId", carPart.getParentId());
          partsJson.put("partName", carPart.getPartName());
          if (!carPart.getIsLeaf()) {
            supNodes.add(partsJson);
            fatherParts.put(carPart.getId(), partsJson);
          } else {
            subNodes.add(partsJson);
          }
        }

        // 把子部件放入父部件中
        for (JSONObject sub : subNodes) {
          Integer parentId = (Integer) sub.get("parentId");
          if (parentId != null) {
            JSONObject fatherPart = fatherParts.get(parentId);
            if (fatherPart != null) {
              List<JSONObject> sons = (List<JSONObject>) fatherPart.get("sons");
              if (sons == null) {
                sons = new ArrayList<JSONObject>();
                sons.add(sub);
                fatherPart.put("sons", sons);
              }
              sons.add(sub);
            }
          }
        }
      }

      JSONObject contentJson = new JSONObject();
      contentJson.put("parts", supNodes);
      //            contentJson.put("subParts", subNodes);

      resultObject.setHead(headObject);
      resultObject.setContent(contentJson);

      return resultObject;
    } catch (Exception e) {
      log.error(e.getMessage(), e);
      return processExpction(e.getMessage());
    }
  }
Exemplo n.º 17
0
  /**
   * @Title: addCartdata @Description: (判断加入购物车的数据是否合法)
   *
   * @author <a href="*****@*****.**">赖彩妙</a>
   * @date 2015-4-11
   * @version 1.0.0
   * @param request
   * @param goodsId
   * @param quantity
   * @param specValueId
   * @param productIdString
   * @param accountId
   * @param @return
   * @param @throws Exception
   * @return String 返回类型
   * @throws
   */
  private String addCartdata(
      String goodsIdString,
      String quantityString,
      String specValueId,
      String productIdString,
      Integer accountId,
      String appointment)
      throws Exception {
    Integer quantity = 1;
    if (quantityString != null && !"".equals(quantityString.trim())) {
      quantity = Integer.parseInt(quantityString);
    }
    if (quantity == null || quantity < 1) {
      quantity = 1;
    }
    HeadObject headObject;
    ResultObject resultObject;
    JSONObject jsonObject;
    Integer productId;
    ProductImgDTO product;
    GoodsWithBLOBs goodsWithBLOBs = null;
    Integer goodsId;
    if (productIdString != null && !"".equals(productIdString.trim())) {
      productId = Integer.parseInt(productIdString);
      // 查询商品对象
      headObject = CommonHeadUtil.geneHeadObject("goodsService.selectByProductId");
      resultObject =
          (ResultObject) itemService.doServiceByServer(new RequestObject(headObject, productId));
      goodsWithBLOBs = (GoodsWithBLOBs) resultObject.getContent();

      // 查询货品对象
      headObject = CommonHeadUtil.geneHeadObject("productService.findByProductId");
      resultObject =
          (ResultObject) itemService.doServiceByServer(new RequestObject(headObject, productId));

    } else {
      if (goodsIdString != null && !"".equals(goodsIdString.trim())) {
        goodsId = Integer.parseInt(goodsIdString.trim());
        // 根据商品id查询商品对象
        headObject = CommonHeadUtil.geneHeadObject("goodsService.selectByGoodsId");
        jsonObject = new JSONObject();
        jsonObject.put("goodsId", goodsId);
        resultObject =
            (ResultObject) itemService.doServiceByServer(new RequestObject(headObject, jsonObject));
        goodsWithBLOBs =
            (GoodsWithBLOBs)
                JSONObject.toBean((JSONObject) resultObject.getContent(), GoodsWithBLOBs.class);
        if (goodsWithBLOBs != null && goodsWithBLOBs.getGoodsId() != null) // 商品存在,状态
        {
          // 根据分类id查询该商品是否有规格
          headObject = CommonHeadUtil.geneHeadObject("categoryService.getCatSpecByCatId");
          jsonObject.clear();
          jsonObject.put("catId", goodsWithBLOBs.getCatId());
          resultObject =
              (ResultObject)
                  itemService.doServiceByServer(new RequestObject(headObject, jsonObject));
          List<CatSpecShip> catSpecShipList =
              (List<CatSpecShip>)
                  JSONArray.toCollection(
                      JSONArray.fromObject(resultObject.getContent()), CatSpecShip.class);
          String specInfo = null;
          if (catSpecShipList != null && catSpecShipList.size() >= 1) {
            // 根据用户选择的商品规格查询规格对象
            List<Integer> specValueIdList =
                (List<Integer>)
                    JSONArray.toCollection(JSONArray.fromObject(specValueId), Integer.class);
            if (specValueIdList != null && specValueIdList.size() >= 1) {
              headObject = CommonHeadUtil.geneHeadObject("specService.selectSpecAndValueById");
              resultObject =
                  (ResultObject)
                      itemService.doServiceByServer(
                          new RequestObject(headObject, JSONArray.fromObject(specValueIdList)));
              List<SpecQryDTO> specQryDTOList =
                  (List<SpecQryDTO>)
                      JSONArray.toCollection(
                          JSONArray.fromObject(resultObject.getContent()), SpecQryDTO.class);
              if (specQryDTOList != null && specQryDTOList.size() >= 1) {
                StringBuffer sb = new StringBuffer();
                for (int i = 0; i < specQryDTOList.size(); i++) {
                  sb.append(specQryDTOList.get(i).getSpecName());
                  sb.append(":");
                  sb.append(specQryDTOList.get(i).getSpecValueName());
                  sb.append(",");
                }
                specInfo = sb.toString();
              } else {
                return "商品规格不存在";
              }
            } else {
              return "请选择商品规格";
            }
          } else {
            // 该商品没有规格 查询product对象
          }
          // 查询product对象
          headObject = CommonHeadUtil.geneHeadObject("productService.selectBySpecInfoAndGoodsId");
          resultObject =
              (ResultObject)
                  itemService.doServiceByServer(
                      new RequestObject(
                          headObject,
                          specInfo != null
                              ? JSONObject.fromObject(
                                  "{goodsId:\"" + goodsId + "\",specInfo:\"" + specInfo + "\"}")
                              : JSONObject.fromObject("{goodsId:\"" + goodsId + "\"}")));
        } else {
          return "该商品不存在";
        }
      } else {
        return "该商品不存在";
      }
    }
    Integer storeId = null;
    if (resultObject != null && resultObject.getContent() != null) {
      product = (ProductImgDTO) resultObject.getContent();
      //			System.out.println("controller...productId.."+product.getProductId());
      if (product != null && product.getProductId() != null && product.getProductId() != 0) {
        if ("1".equals(product.getDisabled()) || "1".equals(goodsWithBLOBs.getDisabled())) {
          return "很抱歉,该货品不存在";
        }

        if ("0".equals(product.getMarketable()) || "0".equals(goodsWithBLOBs.getMarketable())) {
          return "很抱歉,该货品已下架";
        }

        if (product.getStoreInt() <= 0) {
          return "该货品库存不足";
        } else {
          quantity = product.getStoreInt() < quantity ? product.getStoreInt() : quantity;
        }
        String specDesc = product.getSpecDesc();
        if (specDesc != null && !"".equals(specDesc)) {
          String[] specItems = specDesc.split(",");
          if (specItems != null && specItems.length >= 1) {
            for (int i = specItems.length - 1; i >= 0; i--) {
              if (specItems[i].split(":")[0].split("\\|")[1].equals("分店")) {
                storeId = Integer.parseInt(specItems[i].split(":")[1].split("\\|")[0]);
                break;
              }
            }
          }
        }
      } else {
        return "该货品不存在";
      }
    } else {
      return "该货品不存在";
    }
    if (!(storeId != null && storeId != 0)) {
      storeId = goodsWithBLOBs.getStoreId();
    }
    // 查询分店
    if (storeId != null && storeId != 0) {
      List<Integer> storeIdList = new ArrayList<Integer>();
      storeIdList.add(storeId);
      headObject = CommonHeadUtil.geneHeadObject("storeService.selectByStoreIdList3");
      resultObject =
          (ResultObject)
              memberService.doServiceByServer(new RequestObject(headObject, storeIdList));
      List<Store> storeList = null;
      if (resultObject.getContent() != null) {
        storeList =
            com.alibaba.fastjson.JSONArray.parseArray(
                resultObject.getContent().toString(), Store.class);
      }
      if (storeList != null) {
        if ("1".equals(storeList.get(0).getLimitGoodsdown())
            || "1".equals(storeList.get(0).getLimitStore())
            || "1".equals(storeList.get(0).getLimitStoredown())
            || "1".equals(storeList.get(0).getDisabled())
            || "1".equals(storeList.get(0).getStatus())
            || "1".equals(storeList.get(0).getShopstatus())) {
          return "很抱歉,该货品已下架";
        }
      }
    }
    newCart =
        new Cart(
            null,
            product.getGoodsId(),
            product.getProductId(),
            goodsWithBLOBs.getCompanyId(),
            storeId,
            specValueId != null && !"".equals(specValueId)
                ? specValueId.substring(1, specValueId.length() - 1)
                : "",
            quantity,
            (int) (System.currentTimeMillis() / 1000),
            appointment);
    return "";
  }
Exemplo n.º 18
0
  /**
   * 获取购物车列表
   *
   * @param data
   * @param request
   * @return
   */
  @RequestMapping("/cartList")
  @ResponseBody
  public Object cartList(String data, HttpServletRequest request) {
    log.info("###########cartList-->start");
    log.info("----------------------data:" + data + "-------------------------");
    try {
      // 获取请求参数
      JSONObject jsonData = JSONObject.fromObject(data);
      MemberListDo memberListDo =
          APICommonUtil.getMemberListDo((String) request.getAttribute("sessionid"));
      Integer accountId = memberListDo.getAccountId();
      //				Integer accountId = 152;
      HeadObject headObject = CommonHeadUtil.geneHeadObject("accountService.selectByAccountId");
      ResultObject resultObject =
          (ResultObject) memberService.doServiceByServer(new RequestObject(headObject, accountId));
      PamAccount pamAccount = null;
      if (resultObject != null && resultObject.getContent() != null) {
        pamAccount = (PamAccount) resultObject.getContent();
      }

      if (pamAccount != null && !"100".equals(pamAccount.getAccountType())) {
        return new ResultObject(
            new HeadObject(ErrorCode.FAILURE),
            JSONObject.fromObject("{result:false,isBuyer:false}"));
      }
      if (pamAccount != null) {
        accountId = pamAccount.getAccountId();
      }
      Member member = null;
      if (accountId != null && accountId != 0) {
        member = this.selectMember(accountId);
      }
      List<CartListDTO> cartList = null;
      if (member != null && member.getMemberId() != 0) {
        // 用户已登录
        // 查询数据库中的购物车商品
        headObject = CommonHeadUtil.geneHeadObject("cartService.findCartListByAccountId");
        JSONObject jsonObject = new JSONObject();
        jsonObject.put("accountId", accountId);
        resultObject =
            (ResultObject)
                orderService.doServiceByServer(new RequestObject(headObject, jsonObject));
        cartList = (List<CartListDTO>) resultObject.getContent();
      }

      // 查询货品图片
      cartList = this.findProImage(cartList);

      // 查询分店
      cartList = this.findStoresByCartList(cartList);

      // 按商店号分组
      List<List<CartListDTO>> list = new ArrayList();
      Map<Integer, List<CartListDTO>> map = new HashMap<Integer, List<CartListDTO>>();

      // 图片地址转成httpURL
      String imgUrl = Configuration.getInstance().getConfigValue("images.url");
      if (cartList != null && !cartList.isEmpty()) {
        for (CartListDTO cto : cartList) {
          cto.setGoodsImage(imgUrl + cto.getGoodsImage());

          Integer storeId = cto.getStoreId();
          List<CartListDTO> cList = map.get(storeId);
          if (cList == null) {
            cList = new ArrayList<CartListDTO>();
            map.put(storeId, cList);
          }
          cList.add(cto);
        }
        for (List<CartListDTO> cList : map.values()) {
          list.add(cList);
        }
      }

      JSONObject jsonObject = new JSONObject();
      jsonObject.put("cartList", list);
      resultObject = new ResultObject(new HeadObject(ErrorCode.SUCCESS), jsonObject);
      log.info("###########cartList-->end");
      return resultObject;
    } catch (Exception e) {
      log.error(e.getMessage(), e);
      return processExpction(e.getMessage());
    }
  }
Exemplo n.º 19
0
  /**
   * @Description: (获取确认订单页面的货品和分店数据)
   *
   * @param request
   * @param response
   * @return
   * @throws Exception
   */
  @RequestMapping("/findOrderInfo")
  @ResponseBody
  public Object findOrderInfo(String data, HttpServletRequest request) throws Exception {
    log.info("start[CartController.findOrderInfo]");

    // 获取请求参数
    JSONObject jsonData = JSONObject.fromObject(data);
    MemberListDo memberListDo =
        APICommonUtil.getMemberListDo((String) request.getAttribute("sessionid"));
    Integer accountId = memberListDo.getAccountId();

    ///////// 测试代码 start //////
    //		Integer  accountId=152;
    //		jsonData = new JSONObject();
    //		jsonData.put("proIdListString", "[399,445,438]");
    //		jsonData.put("quantityListString", "[3,2,4]");
    ///////// 测试代码 end //////
    String proIdListString = (String) CommonUtil.getJsonValue(jsonData, "proIdListString");
    String quantityListString = (String) CommonUtil.getJsonValue(jsonData, "quantityListString");

    // 检查参数
    if (StringUtils.isEmpty(proIdListString)) {
      return processExpction("货品id不能为空!");
    }
    if (StringUtils.isEmpty(quantityListString)) {
      return processExpction("数量不能为空!");
    }

    PamAccount pamAccount = findAccountId(accountId);
    if (pamAccount != null && !"100".equals(pamAccount.getAccountType())) {
      return new ResultObject(
          new HeadObject(ErrorCode.FAILURE), JSONObject.fromObject("{result:false,isBuyer:false}"));
    }
    if (pamAccount != null) {
      accountId = pamAccount.getAccountId();
    }
    ResultObject resultObject = null;
    HeadObject headObject;
    JSONObject jsonObject = new JSONObject();

    if (accountId != null && accountId != 0) {
      List<Integer> proIdList =
          (List<Integer>)
              JSONArray.toCollection(JSONArray.fromObject(proIdListString), Integer.class);
      if (proIdList != null && proIdList.size() >= 1) {
        // 查询member对象
        Member member = this.selectMember(accountId);
        // 根据proIdList查询购物车对象
        List<CartListDTO> cartList = null;
        List<Integer> quantityList =
            (List<Integer>)
                JSONArray.toCollection(JSONArray.fromObject(quantityListString), Integer.class);
        if (quantityList.size() == proIdList.size()) {
          headObject = CommonHeadUtil.geneHeadObject("cartService.findCartListByProIdList");
          resultObject =
              (ResultObject)
                  orderService.doServiceByServer(
                      new RequestObject(headObject, JSONArray.fromObject(proIdList)));
          cartList =
              (List<CartListDTO>)
                  JSONArray.toCollection(
                      JSONArray.fromObject(resultObject.getContent()), CartListDTO.class);
          if (cartList != null && cartList.size() > 0) {
            for (int j = cartList.size() - 1; j >= 0; j--) {
              if ("1".equals(cartList.get(j).getLimitGoodsdown())
                  || "1".equals(cartList.get(j).getLimitStore())
                  || "1".equals(cartList.get(j).getLimitStoredown())
                  || "1".equals(cartList.get(j).getShopStatus())
                  || "1".equals(cartList.get(j).getStatus())
                  || "1".equals(cartList.get(j).getDisabled())) {
                return new ResultObject(
                    new HeadObject(ErrorCode.FAILURE),
                    JSONObject.fromObject("{ msg:\"很抱歉,该订单中存在失效货品\"}"));
              }
              for (int i = 0; i < proIdList.size(); i++) {
                if (proIdList.get(i).equals(cartList.get(j).getProductId())) {
                  if (quantityList.get(i) > cartList.get(j).getStore()) {
                    return new ResultObject(
                        new HeadObject(ErrorCode.FAILURE),
                        JSONObject.fromObject("{ msg:\"很抱歉,该订单中存在货品库存不足\"}"));
                  } else {
                    cartList.get(j).setQuantity(quantityList.get(i));
                  }
                }
              }
            }
          }
        }
        if (!(cartList != null && cartList.size() >= 1)) {
          headObject = CommonHeadUtil.geneHeadObject("cartService.findCartListByProIdAndMem");
          jsonObject.put("memberId", member.getMemberId());
          jsonObject.put("proIdList", proIdList);
          resultObject =
              (ResultObject)
                  orderService.doServiceByServer(new RequestObject(headObject, jsonObject));
          cartList =
              (List<CartListDTO>)
                  JSONArray.toCollection(
                      JSONArray.fromObject(resultObject.getContent()), CartListDTO.class);
        }
        List<Store> storeList = null;
        if (cartList != null && cartList.size() >= 1) {
          // 查询店铺
          List<Integer> storeIdList = new ArrayList<Integer>();
          for (int i = 0; i < cartList.size(); i++) {
            storeIdList.add(cartList.get(i).getStoreId());
          }
          headObject = CommonHeadUtil.geneHeadObject("storeService.selectByStoreIdList3");
          resultObject =
              (ResultObject)
                  memberService.doServiceByServer(new RequestObject(headObject, storeIdList));

          if (resultObject.getContent() != null) {
            storeList =
                com.alibaba.fastjson.JSONArray.parseArray(
                    resultObject.getContent().toString(), Store.class);
          }
          if (storeList != null) {
            for (int i = 0; i < storeList.size(); i++) {
              if ("1".equals(storeList.get(i).getLimitGoodsdown())
                  || "1".equals(storeList.get(i).getLimitStore())
                  || "1".equals(storeList.get(i).getLimitStoredown())
                  || "1".equals(storeList.get(i).getShopstatus())
                  || "1".equals(storeList.get(i).getStatus())
                  || "1".equals(storeList.get(i).getDisabled())) {
                return new ResultObject(
                    new HeadObject(ErrorCode.FAILURE),
                    JSONObject.fromObject("{isLogin:true,msg:\"很抱歉,该订单中存在失效货品\"}"));
              }
            }
          }

          // 查询货品图片
          this.findProImage(cartList);
          for (int j = cartList.size() - 1; j >= 0; j--) {
            if (cartList.get(j).getQuantity() <= 0
                || "0".equals(cartList.get(j).getgMarketable())
                || "1".equals(cartList.get(j).getgDisabled())
                || "0".equals(cartList.get(j).getpMarketable())
                || "1".equals(cartList.get(j).getpDisabled())) {
              return new ResultObject(
                  new HeadObject(ErrorCode.FAILURE),
                  JSONObject.fromObject("{isLogin:true,msg:\"很抱歉,该订单中存在失效货品\"}"));
            }
          }
        }

        Double sumPrice = this.totalPrice(cartList);

        com.alibaba.fastjson.JSONObject returnJson = new com.alibaba.fastjson.JSONObject();
        DecimalFormat df2 = new DecimalFormat("#.00"); // 四舍五入保留两位小数
        returnJson.put("sumPrice", df2.format(Double.parseDouble(sumPrice.toString())));
        // 按商店号分组
        List<List<CartListDTO>> list = new ArrayList();
        Map<Integer, List<CartListDTO>> map = new HashMap<Integer, List<CartListDTO>>();

        // 图片地址转成httpURL
        String imgUrl = Configuration.getInstance().getConfigValue("images.url");
        if (cartList != null && !cartList.isEmpty()) {
          for (CartListDTO cto : cartList) {
            cto.setGoodsImage(imgUrl + cto.getGoodsImage());

            Integer storeId = cto.getStoreId();
            List<CartListDTO> cList = map.get(storeId);
            if (cList == null) {
              cList = new ArrayList<CartListDTO>();
              map.put(storeId, cList);
            }
            cList.add(cto);
          }
          for (List<CartListDTO> cList : map.values()) {
            list.add(cList);
          }
        }
        returnJson.put("content", list);
        returnJson.put("storeList", storeList);
        returnJson.put("isLogin", true);
        resultObject = new ResultObject(new HeadObject(ErrorCode.SUCCESS), returnJson);
      } else {
        resultObject =
            new ResultObject(
                new HeadObject(ErrorCode.FAILURE), JSONObject.fromObject("{empty:true}"));
      }
    } else {
      resultObject =
          new ResultObject(new HeadObject(ErrorCode.FAILURE), JSONObject.fromObject("{}"));
    }

    log.info("end[CartController.findOrderInfo]");
    return resultObject;
  }