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 2008/07/19 00:00:33 UTC

svn commit: r678058 - /ofbiz/trunk/applications/product/script/org/ofbiz/shipment/shipment/ShipmentServices.xml

Author: lektran
Date: Fri Jul 18 15:00:33 2008
New Revision: 678058

URL: http://svn.apache.org/viewvc?rev=678058&view=rev
Log:
Fix some more bugs I introduced

Modified:
    ofbiz/trunk/applications/product/script/org/ofbiz/shipment/shipment/ShipmentServices.xml

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?rev=678058&r1=678057&r2=678058&view=diff
==============================================================================
--- ofbiz/trunk/applications/product/script/org/ofbiz/shipment/shipment/ShipmentServices.xml (original)
+++ ofbiz/trunk/applications/product/script/org/ofbiz/shipment/shipment/ShipmentServices.xml Fri Jul 18 15:00:33 2008
@@ -587,7 +587,7 @@
                                 delegator, shipment.get("originFacilityId"), org.ofbiz.base.util.UtilMisc.toList("SHIP_ORIG_LOCATION", "PRIMARY_LOCATION")
                             );
                     if (facilityContactMech != null) {
-                        shipment.put("originContactMechId", facilityContactMech.get("contactMechId");
+                        shipment.put("originContactMechId", facilityContactMech.get("contactMechId"));
                     }
                 ]]></call-bsh>
             </if-empty>
@@ -597,7 +597,7 @@
                                 delegator, shipment.get("originFacilityId"), org.ofbiz.base.util.UtilMisc.toList("PHONE_SHIP_ORIG", "PRIMARY_PHONE")
                             );
                     if (facilityContactMech != null) {
-                        shipment.put("originTelecomNumberId", facilityContactMech.get("contactMechId");
+                        shipment.put("originTelecomNumberId", facilityContactMech.get("contactMechId"));
                     }
                 ]]></call-bsh>
             </if-empty>
@@ -609,7 +609,7 @@
                                 delegator, shipment.get("destinationFacilityId"), org.ofbiz.base.util.UtilMisc.toList("SHIPPING_LOCATION", "PRIMARY_LOCATION")
                             );
                     if (facilityContactMech != null) {
-                        shipment.put("destinationContactMechId", facilityContactMech.get("contactMechId");
+                        shipment.put("destinationContactMechId", facilityContactMech.get("contactMechId"));
                     }
                 ]]></call-bsh>
             </if-empty>
@@ -619,7 +619,7 @@
                                 delegator, shipment.get("destinationFacilityId"), org.ofbiz.base.util.UtilMisc.toList("PHONE_SHIPPING", "PRIMARY_PHONE")
                             );
                     if (facilityContactMech != null) {
-                        shipment.put("destinationTelecomNumberId", facilityContactMech.get("contactMechId");
+                        shipment.put("destinationTelecomNumberId", facilityContactMech.get("contactMechId"));
                     }
                 ]]></call-bsh>
             </if-empty>