Example #1
0
  public ActionForward execute(
      ActionMapping mapping, ActionForm form, HttpServletRequest req, HttpServletResponse res)
      throws Exception {

    Session session = new HibernateSession().currentSession(this.getServlet().getServletContext());

    Transaction transaction = session.beginTransaction();
    Criteria criteria = session.createCriteria(Purchase.class);
    criteria.add(Restrictions.idEq(Integer.valueOf(req.getParameter("id"))));

    Purchase purchase = (Purchase) criteria.uniqueResult();
    purchase.setRemoved(true);
    session.saveOrUpdate(purchase);
    transaction.commit();
    session.flush();

    new HTTPGetRedirection(req, res, "Purchases.do", null);
    return null;
  }
  public ActionForward execute(
      ActionMapping mapping, ActionForm form, HttpServletRequest req, HttpServletResponse res)
      throws Exception {

    Session session = new HibernateSession().currentSession(this.getServlet().getServletContext());

    Purchase purchase = (Purchase) req.getSession().getAttribute("purchase");

    if (req.getSession().getAttribute("deliverymethod") != null
        && ((Integer) req.getSession().getAttribute("deliverymethod")).intValue() == 3) {
      String error = "";
      boolean flag = true;
      for (Iterator iter = purchase.getChoises().iterator(); iter.hasNext(); ) {
        Choise choise = (Choise) iter.next();
        int totalofchoise = 0;
        for (Iterator iterator = choise.getDeliveryAddressChoises().iterator();
            iterator.hasNext(); ) {
          DeliveryAddressChoise deliveryAddressChoise = (DeliveryAddressChoise) iterator.next();
          totalofchoise += deliveryAddressChoise.getOrdernum();
        }
        if (totalofchoise < choise.getOrdernum()) {
          flag = false;
          break;
        }
      }
      if (!flag) {
        new HTTPGetRedirection(req, res, "DeliveryAddressChoiseList.do", null, "notfixed=true");
        return null;
      }
    }

    Criteria criteria = session.createCriteria(Purchase.class);

    System.err.println(
        "----------------------------------------------------------------- mark 1000000000000000");
    Criteria criteriadeliveryaddress = session.createCriteria(DeliveryAddress.class);
    criteriadeliveryaddress.add(
        Restrictions.eq("publicUser", (PublicUser) req.getSession().getAttribute("u")));
    /*criteriadeliveryaddress.add(Restrictions.eq("publicUser",purchase.getPublicUser()));*/
    if (req.getSession().getAttribute("deliverymethod") != null) {
      Integer deliverymethodInteger = (Integer) req.getSession().getAttribute("deliverymethod");
      req.getSession().setAttribute("deliverymethod", deliverymethodInteger);
      if (deliverymethodInteger.intValue() == 2) {
        criteriadeliveryaddress.setMaxResults(1);
        criteriadeliveryaddress.addOrder(Order.desc("id"));
        req.setAttribute("deliveryAddress", criteriadeliveryaddress.list());
      } else {
        Map<Integer, DeliveryAddress> map = new TreeMap<Integer, DeliveryAddress>();
        for (Iterator iterator = purchase.getChoises().iterator(); iterator.hasNext(); ) {
          Choise choise = (Choise) iterator.next();
          for (Iterator iterator2 = choise.getDeliveryAddressChoises().iterator();
              iterator2.hasNext(); ) {
            DeliveryAddressChoise deliveryAddressChoise = (DeliveryAddressChoise) iterator2.next();
            if (map.get(deliveryAddressChoise.getDeliveryAddress().getId()) == null) {
              map.put(
                  deliveryAddressChoise.getDeliveryAddress().getId(),
                  deliveryAddressChoise.getDeliveryAddress());
            }
          }
        }
        System.err.println("here --------------------------");
        req.setAttribute("deliveryAddress", map.values());
      }
    }

    Criteria criteriaPaymentMethod = session.createCriteria(PaymentMethod.class);
    req.setAttribute("PaymentMethods", criteriaPaymentMethod.list());

    // req.getSession().setAttribute("deliverymethod",req.getParameter("deliverymethod") );

    return mapping.findForward("success");
  }