You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by le...@apache.org on 2009/11/14 23:48:09 UTC

svn commit: r836282 - /ofbiz/trunk/applications/product/webapp/facility/WEB-INF/actions/shipment/FindShipment.groovy

Author: lektran
Date: Sat Nov 14 22:48:09 2009
New Revision: 836282

URL: http://svn.apache.org/viewvc?rev=836282&view=rev
Log:
Fixed indentation

Modified:
    ofbiz/trunk/applications/product/webapp/facility/WEB-INF/actions/shipment/FindShipment.groovy

Modified: ofbiz/trunk/applications/product/webapp/facility/WEB-INF/actions/shipment/FindShipment.groovy
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/product/webapp/facility/WEB-INF/actions/shipment/FindShipment.groovy?rev=836282&r1=836281&r2=836282&view=diff
==============================================================================
--- ofbiz/trunk/applications/product/webapp/facility/WEB-INF/actions/shipment/FindShipment.groovy (original)
+++ ofbiz/trunk/applications/product/webapp/facility/WEB-INF/actions/shipment/FindShipment.groovy Sat Nov 14 22:48:09 2009
@@ -95,56 +95,57 @@
     paramListBuffer.append(maxDate);
     findShipmentExprs.add(EntityCondition.makeCondition("estimatedShipDate", EntityOperator.LESS_THAN_EQUAL_TO, ObjectType.simpleTypeConvert(maxDate, "Timestamp", null, null)));
 }
+
 if ("Y".equals(lookupFlag)) {
     context.paramList = paramListBuffer.toString();
 
-        findOpts = new EntityFindOptions(true, EntityFindOptions.TYPE_SCROLL_INSENSITIVE, EntityFindOptions.CONCUR_READ_ONLY, true);
-        mainCond = null;
-        if (findShipmentExprs.size() > 0) {
-            mainCond = EntityCondition.makeCondition(findShipmentExprs, EntityOperator.AND);
+    findOpts = new EntityFindOptions(true, EntityFindOptions.TYPE_SCROLL_INSENSITIVE, EntityFindOptions.CONCUR_READ_ONLY, true);
+    mainCond = null;
+    if (findShipmentExprs.size() > 0) {
+        mainCond = EntityCondition.makeCondition(findShipmentExprs, EntityOperator.AND);
+    }
+    orderBy = ['-estimatedShipDate'];
+
+    beganTransaction = false;
+    try {
+        beganTransaction = TransactionUtil.begin();
+
+        // get the indexes for the partial list
+        lowIndex = viewIndex * viewSize + 1;
+        highIndex = (viewIndex + 1) * viewSize;
+        findOpts.setMaxRows(highIndex);
+        // using list iterator
+        orli = delegator.find("Shipment", mainCond, null, null, orderBy, findOpts);
+
+        shipmentListSize = orli.getResultsSizeAfterPartialList();
+        if (highIndex > shipmentListSize) {
+            highIndex = shipmentListSize;
         }
-        orderBy = ['-estimatedShipDate'];
 
-        beganTransaction = false;
-        try {
-            beganTransaction = TransactionUtil.begin();
+        // get the partial list for this page
+        if (shipmentListSize > 0) {
+            shipmentList = orli.getPartialList(lowIndex, viewSize);
+        } else {
+            shipmentList = [] as ArrayList;
+        }
 
-            // get the indexes for the partial list
-            lowIndex = viewIndex * viewSize + 1;
-            highIndex = (viewIndex + 1) * viewSize;
-            findOpts.setMaxRows(highIndex);
-            // using list iterator
-            orli = delegator.find("Shipment", mainCond, null, null, orderBy, findOpts);
-
-            shipmentListSize = orli.getResultsSizeAfterPartialList();
-            if (highIndex > shipmentListSize) {
-                highIndex = shipmentListSize;
-            }
-
-            // get the partial list for this page
-            if (shipmentListSize > 0) {
-                shipmentList = orli.getPartialList(lowIndex, viewSize);
-            } else {
-                shipmentList = [] as ArrayList;
-            }
-
-            // close the list iterator
-            orli.close();
-        } catch (GenericEntityException e) {
-            errMsg = "Failure in operation, rolling back transaction";
-            Debug.logError(e, errMsg, module);
-            try {
-                // only rollback the transaction if we started one...
-                TransactionUtil.rollback(beganTransaction, errMsg, e);
-            } catch (GenericEntityException e2) {
-                Debug.logError(e2, "Could not rollback transaction: " + e2.toString(), module);
-            }
-            // after rolling back, rethrow the exception
-            throw e;
-        } finally {
-            // only commit the transaction if we started one... this will throw an exception if it fails
-            TransactionUtil.commit(beganTransaction);
+        // close the list iterator
+        orli.close();
+    } catch (GenericEntityException e) {
+        errMsg = "Failure in operation, rolling back transaction";
+        Debug.logError(e, errMsg, module);
+        try {
+            // only rollback the transaction if we started one...
+            TransactionUtil.rollback(beganTransaction, errMsg, e);
+        } catch (GenericEntityException e2) {
+            Debug.logError(e2, "Could not rollback transaction: " + e2.toString(), module);
         }
+        // after rolling back, rethrow the exception
+        throw e;
+    } finally {
+        // only commit the transaction if we started one... this will throw an exception if it fails
+        TransactionUtil.commit(beganTransaction);
+    }
 
     context.shipmentList = shipmentList;
     context.listSize = shipmentListSize;