Package com.jada.content.checkout

Examples of com.jada.content.checkout.ShoppingCartItemBean


      boolean hasError = validateUpdateQty(form, getContentBean(request));
      if (hasError) {
          String itemNaturalKeys[] = form.getItemNaturalKeys();
          String itemQtys[] = form.getItemQtys();
        for (int i = 0; i < itemNaturalKeys.length; i++) {
          ShoppingCartItemBean bean = (ShoppingCartItemBean) form.getShoppingCartItemInfos().elementAt(i);
          bean.setItemQty(itemQtys[i]);
        }
      }
      else {
          String itemNaturalKeys[] = form.getItemNaturalKeys();
          String itemQtys[] = form.getItemQtys();
          if (itemNaturalKeys != null) {
            for (int i = 0; i < itemNaturalKeys.length; i++) {
              int qty = 0;
              if (itemQtys[i].trim().length() != 0) {
                qty = Format.getInt(itemQtys[i]);
              }
          Item item = DataApi.getInstance().getItem(site.getSiteId(), itemNaturalKeys[i]);
          try {
            shoppingCart.setItemQty(item, qty, null, contentBean, true);
            } catch (ItemNotAvailiableException itemNotAvailiableException) {
              String value = Languages.getLangTranValue(language.getLangId(), "content.text.itemQuatityNotAvailable");
              ShoppingCartItemBean itemInfo = (ShoppingCartItemBean) form.getShoppingCartItemInfos().elementAt(i);
              itemInfo.setItemQtyError(value);
              hasError = true;
            }
            }
        }
          if (!hasError) {
View Full Code Here


      boolean hasError = false;
      String itemQtys[] = form.getItemQtys();
      Language language = contentBean.getContentSessionBean().getSiteProfile().getSiteProfileClass().getLanguage();
      if (itemQtys != null) {
        for (int i = 0; i < itemQtys.length; i++) {
          ShoppingCartItemBean itemInfo = (ShoppingCartItemBean) form.getShoppingCartItemInfos().elementAt(i);
          if (itemQtys[i].trim().length() == 0) {
            continue;
          }
          if (!Format.isInt(itemQtys[i])) {
            hasError = true;
            String value = Languages.getLangTranValue(language.getLangId(), "content.error.int.invalid");
            itemInfo.setItemQtyError(value);
          }
          else {
            int intValue = Format.getInt(itemQtys[i]);
            if (intValue < 0) {
              hasError = true;
              String value = Languages.getLangTranValue(language.getLangId(), "content.error.int.invalid");
              itemInfo.setItemQtyError(value);
            }
          }
        }
      }
      return hasError;
View Full Code Here

TOP

Related Classes of com.jada.content.checkout.ShoppingCartItemBean

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.