svn commit: r557924 - /ofbiz/trunk/applications/order/src/org/ofbiz/order/order/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: r557924 - /ofbiz/trunk/applications/order/src/org/ofbiz/order/order/ImportOrdersFromEbay.java

jacopoc
Author: jacopoc
Date: Fri Jul 20 01:31:17 2007
New Revision: 557924

URL: http://svn.apache.org/viewvc?view=rev&rev=557924
Log:
Misc cleanups (mostly formatting fixes)

Modified:
    ofbiz/trunk/applications/order/src/org/ofbiz/order/order/ImportOrdersFromEbay.java

Modified: ofbiz/trunk/applications/order/src/org/ofbiz/order/order/ImportOrdersFromEbay.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/src/org/ofbiz/order/order/ImportOrdersFromEbay.java?view=diff&rev=557924&r1=557923&r2=557924
==============================================================================
--- ofbiz/trunk/applications/order/src/org/ofbiz/order/order/ImportOrdersFromEbay.java (original)
+++ ofbiz/trunk/applications/order/src/org/ofbiz/order/order/ImportOrdersFromEbay.java Fri Jul 20 01:31:17 2007
@@ -143,7 +143,7 @@
                 order.put("shippingAddressStateOrProvince", (String) context.get("shippingAddressStateOrProvince"));
                 order.put("shippingAddressCityName", (String) context.get("shippingAddressCityName"));
                 
-                result = createShoppingCart(delegator, dispatcher, locale, order, Boolean.TRUE);
+                result = createShoppingCart(delegator, dispatcher, locale, order, true);
             }
         } catch (Exception e) {        
             Debug.logError("Exception in importOrderFromEbay " + e, module);
@@ -208,7 +208,7 @@
                     Map order = (Map)orderIter.next();
                     order.put("productStoreId", (String) context.get("productStoreId"));
                     order.put("userLogin", (GenericValue) context.get("userLogin"));
-                    Map error = createShoppingCart(delegator, dispatcher, locale, order, Boolean.FALSE);
+                    Map error = createShoppingCart(delegator, dispatcher, locale, order, false);
                     String errorMsg = ServiceUtil.getErrorMessage(error);
                     if (errorMsg != null) {
                         order.put("errorMessage", errorMsg);
@@ -739,12 +739,11 @@
         return orderAdjustment;
     }
 
-    public static String createCustomerParty(LocalDispatcher dispatcher, String name, GenericValue userLogin)
-    {
+    public static String createCustomerParty(LocalDispatcher dispatcher, String name, GenericValue userLogin) {
         String partyId = null;
         
         try {
-            if (UtilValidate.isNotEmpty(name) && UtilValidate.isNotEmpty(userLogin) ) {
+            if (UtilValidate.isNotEmpty(name) && UtilValidate.isNotEmpty(userLogin)) {
                 Debug.logVerbose("Creating Customer Party: "+name, module);
                 
                 // Try to split the lastname from the firstname
@@ -771,8 +770,7 @@
     }
     
     public static String createAddress(LocalDispatcher dispatcher, String partyId, GenericValue userLogin,
-                                       String contactMechPurposeTypeId, Map address)
-    {
+                                       String contactMechPurposeTypeId, Map address) {
         String contactMechId = null;
         try {
             Map context = FastMap.newInstance();
@@ -795,8 +793,7 @@
         return contactMechId;
     }
     
-    private static void correctCityStateCountry(LocalDispatcher dispatcher, Map map, String city, String state, String country)
-    {
+    private static void correctCityStateCountry(LocalDispatcher dispatcher, Map map, String city, String state, String country) {
         try {
             Debug.logInfo("correctCityStateCountry params: " + city + ", " + state + ", " + country, module);
             String geoId = "USA";
@@ -821,8 +818,7 @@
         }
     }
         
-    public static String createPartyPhone(LocalDispatcher dispatcher, String partyId, String phoneNumber, GenericValue userLogin)
-    {
+    public static String createPartyPhone(LocalDispatcher dispatcher, String partyId, String phoneNumber, GenericValue userLogin) {
         Map summaryResult = FastMap.newInstance();
         Map context = FastMap.newInstance();
         String phoneContactMechId = null;
@@ -839,15 +835,13 @@
         return phoneContactMechId;
     }
     
-    public static String createPartyEmail(LocalDispatcher dispatcher, String partyId, String email, GenericValue userLogin)
-    {
+    public static String createPartyEmail(LocalDispatcher dispatcher, String partyId, String email, GenericValue userLogin) {
         Map context = FastMap.newInstance();
         Map summaryResult = FastMap.newInstance();
         String emailContactMechId = null;
         
         try {
-            if (UtilValidate.isNotEmpty(email))
-            {
+            if (UtilValidate.isNotEmpty(email)) {
                 context.clear();
                 context.put("emailAddress", email);
                 context.put("userLogin", userLogin);
@@ -867,20 +861,17 @@
         return emailContactMechId;
     }
     
-    public static Map getCountryGeoId(GenericDelegator delegator, String geoCode)
-    {
+    public static Map getCountryGeoId(GenericDelegator delegator, String geoCode) {
         GenericValue geo = null;
         try {
             Debug.logInfo("geocode: " + geoCode, module);
             
             List geoEntities = delegator.findByAnd("Geo", UtilMisc.toMap("geoCode", geoCode.toUpperCase(), "geoTypeId", "COUNTRY"));
-            if (geoEntities != null && geoEntities.size() > 0)
-            {
+            if (geoEntities != null && geoEntities.size() > 0) {
                 geo = (GenericValue)geoEntities.get(0);
                 Debug.logInfo("Found a geo entity " + geo, module);
             }
-            else
-            {
+            else {
                 geo = delegator.makeValue("Geo", null);
                 geo.set("geoId", geoCode + "_IMPORTED");
                 geo.set("geoTypeId", "COUNTRY");
@@ -901,8 +892,7 @@
         return result;
     }  
     
-    public static GenericValue externalOrderExists(GenericDelegator delegator, String externalId) throws GenericEntityException
-    {
+    public static GenericValue externalOrderExists(GenericDelegator delegator, String externalId) throws GenericEntityException {
         Debug.logInfo("Checking for existing externalOrderId: " + externalId, module);
         GenericValue orderHeader = null;
         List entities = delegator.findByAnd("OrderHeader", UtilMisc.toMap("externalId", externalId));
@@ -912,8 +902,7 @@
         return orderHeader;
     }
     
-    public static String buildExternalId(String itemId, String transactionId)
-    {
+    public static String buildExternalId(String itemId, String transactionId) {
         StringBuffer str = new StringBuffer();
         if (itemId != null) {
             str.append(itemId);