svn commit: r559387 - in /ofbiz/trunk: applications/product/script/org/ofbiz/shipment/shipment/ShipmentServices.xml applications/product/servicedef/services_shipment.xml specialpurpose/oagis/src/org/ofbiz/oagis/OagisShipmentServices.java

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

svn commit: r559387 - in /ofbiz/trunk: applications/product/script/org/ofbiz/shipment/shipment/ShipmentServices.xml applications/product/servicedef/services_shipment.xml specialpurpose/oagis/src/org/ofbiz/oagis/OagisShipmentServices.java

apatel-2
Author: apatel
Date: Wed Jul 25 03:14:40 2007
New Revision: 559387

URL: http://svn.apache.org/viewvc?view=rev&rev=559387
Log:
oops missed changes in few places.

Modified:
    ofbiz/trunk/applications/product/script/org/ofbiz/shipment/shipment/ShipmentServices.xml
    ofbiz/trunk/applications/product/servicedef/services_shipment.xml
    ofbiz/trunk/specialpurpose/oagis/src/org/ofbiz/oagis/OagisShipmentServices.java

Modified: ofbiz/trunk/applications/product/script/org/ofbiz/shipment/shipment/ShipmentServices.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/product/script/org/ofbiz/shipment/shipment/ShipmentServices.xml?view=diff&rev=559387&r1=559386&r2=559387
==============================================================================
--- ofbiz/trunk/applications/product/script/org/ofbiz/shipment/shipment/ShipmentServices.xml (original)
+++ ofbiz/trunk/applications/product/script/org/ofbiz/shipment/shipment/ShipmentServices.xml Wed Jul 25 03:14:40 2007
@@ -1390,7 +1390,7 @@
         <!-- If serialNumber is provided, Then compare it with the serialNumber of inventoryItem on reservation. If they don't match,
             We'll have to reReserve specific inventory that is shiped. -->
         <!-- If serialNumber exist then run reserveAnInventoryItem for serialisedInventory.There is no need to check
-             this condition for the non-serialized inventory (Non serialized Inventory will derectly issued).
+             this condition for the non-serialized inventory (Non serialized Inventory will directly issued).
         -->
         <if-not-empty field-name="parameters.serialNumber">                
         <make-value entity-name="OrderItemShipGrpInvRes" value-name="orderItemShipGrpInvResLookupPk"/>                
@@ -1834,6 +1834,7 @@
         <remove-value value-name="lookedUpValue"/>
     </simple-method>
 -->
+
 
 
 

Modified: ofbiz/trunk/applications/product/servicedef/services_shipment.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/product/servicedef/services_shipment.xml?view=diff&rev=559387&r1=559386&r2=559387
==============================================================================
--- ofbiz/trunk/applications/product/servicedef/services_shipment.xml (original)
+++ ofbiz/trunk/applications/product/servicedef/services_shipment.xml Wed Jul 25 03:14:40 2007
@@ -691,7 +691,7 @@
         <attribute name="shipmentPackageSeqId" type="String" mode="IN" optional="true"/>        
     </service>    
     <service name="setShipmentStatusPackedAndShipped" engine="simple"
-        location="org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="updateShipmentStatus" auth="true">
+        location="org/ofbiz/shipment/shipment/ShipmentServices.xml" invoke="setShipmentStatusPackedAndShipped" auth="true">
         <description>Move a shipment into Packed status and then to Shipped status</description>
         <attribute name="shipmentId" type="String" mode="IN" optional="false"/>
     </service>

Modified: ofbiz/trunk/specialpurpose/oagis/src/org/ofbiz/oagis/OagisShipmentServices.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/oagis/src/org/ofbiz/oagis/OagisShipmentServices.java?view=diff&rev=559387&r1=559386&r2=559387
==============================================================================
--- ofbiz/trunk/specialpurpose/oagis/src/org/ofbiz/oagis/OagisShipmentServices.java (original)
+++ ofbiz/trunk/specialpurpose/oagis/src/org/ofbiz/oagis/OagisShipmentServices.java Wed Jul 25 03:14:40 2007
@@ -262,12 +262,12 @@
                 Map resultMap = dispatcher.runSync("setShipmentStatusPackedAndShipped", UtilMisc.toMap("shipmentId", shipmentId, "userLogin", userLogin));              
                 if (ServiceUtil.isError(resultMap)){
                     String errMsg = ServiceUtil.getErrorMessage(resultMap);
-                    errorMapList.add(UtilMisc.toMap("description", errMsg, "reasonCode", "IssueSerializedInvServiceError"));
+                    errorMapList.add(UtilMisc.toMap("description", errMsg, "reasonCode", "SetShipmentStatusPackedAndShippedError"));
                     Debug.logError(errMsg, module);
                 }
             } catch(GenericServiceException e) {
                 Debug.logInfo(e, module);
-                String errMsg = "Error executing issueSerializedInvToShipmentPackageAndSetTracking Service: "+e.toString();
+                String errMsg = "Error executing setShipmentStatusPackedAndShipped Service: "+e.toString();
                 errorMapList.add(UtilMisc.toMap("description", errMsg, "reasonCode", "GenericServiceException"));
             }  
         }