svn commit: r816149 - /ofbiz/trunk/specialpurpose/ebay/src/org/ofbiz/ebay/ImportOrdersFromEbay.java

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

svn commit: r816149 - /ofbiz/trunk/specialpurpose/ebay/src/org/ofbiz/ebay/ImportOrdersFromEbay.java

ashish-18
Author: ashish
Date: Thu Sep 17 11:36:11 2009
New Revision: 816149

URL: http://svn.apache.org/viewvc?rev=816149&view=rev
Log:
Oops just missed to revert these changes.

Modified:
    ofbiz/trunk/specialpurpose/ebay/src/org/ofbiz/ebay/ImportOrdersFromEbay.java

Modified: ofbiz/trunk/specialpurpose/ebay/src/org/ofbiz/ebay/ImportOrdersFromEbay.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/ebay/src/org/ofbiz/ebay/ImportOrdersFromEbay.java?rev=816149&r1=816148&r2=816149&view=diff
==============================================================================
--- ofbiz/trunk/specialpurpose/ebay/src/org/ofbiz/ebay/ImportOrdersFromEbay.java (original)
+++ ofbiz/trunk/specialpurpose/ebay/src/org/ofbiz/ebay/ImportOrdersFromEbay.java Thu Sep 17 11:36:11 2009
@@ -88,11 +88,6 @@
         Locale locale = (Locale) context.get("locale");
         Map order = FastMap.newInstance();
         Map result = FastMap.newInstance();
-        Debug.logInfo("The value of =============" + context.get("externalId"), module);
-        List orderList = (List) context.get("orderList");
-        if (UtilValidate.isNotEmpty(orderList)) {
-            Debug.logInfo("The value of list is ==============" + orderList, module);
-        }
         try {
             order.put("productStoreId", (String) context.get("productStoreId"));
             order.put("userLogin", (GenericValue) context.get("userLogin"));
@@ -122,7 +117,7 @@
             order.put("shippingAddressStateOrProvince", (String) context.get("shippingAddressStateOrProvince"));
             order.put("shippingAddressCityName", (String) context.get("shippingAddressCityName"));
 
-            //result = createShoppingCart(delegator, dispatcher, locale, order, true);
+            result = createShoppingCart(delegator, dispatcher, locale, order, true);
         } catch (Exception e) {
             Debug.logError("Exception in importOrderFromEbay " + e, module);
             return ServiceUtil.returnFailure(UtilProperties.getMessage(resource, "ordersImportFromEbay.exceptionInImportOrderFromEbay", locale));