You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by ap...@apache.org on 2010/06/29 14:54:07 UTC

svn commit: r958953 - /ofbiz/trunk/applications/order/script/org/ofbiz/order/order/CheckoutServices.xml

Author: apatel
Date: Tue Jun 29 12:54:07 2010
New Revision: 958953

URL: http://svn.apache.org/viewvc?rev=958953&view=rev
Log:
When creating party, Use passed in partyId and not from userLogin.

Modified:
    ofbiz/trunk/applications/order/script/org/ofbiz/order/order/CheckoutServices.xml

Modified: ofbiz/trunk/applications/order/script/org/ofbiz/order/order/CheckoutServices.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/script/org/ofbiz/order/order/CheckoutServices.xml?rev=958953&r1=958952&r2=958953&view=diff
==============================================================================
--- ofbiz/trunk/applications/order/script/org/ofbiz/order/order/CheckoutServices.xml (original)
+++ ofbiz/trunk/applications/order/script/org/ofbiz/order/order/CheckoutServices.xml Tue Jun 29 12:54:07 2010
@@ -36,7 +36,7 @@ under the License.
         </if-compare>
         <set-service-fields service-name="createUpdatePerson" map="parameters" to-map="createUpdatePersonCtx"/>
         <set field="createUpdatePersonCtx.userLogin" from-field="userLogin"/>
-        <set field="createUpdatePersonCtx.partyId" from-field="userLogin.partyId"/>
+        <set field="createUpdatePersonCtx.partyId" from-field="partyId"/>
         <call-service service-name="createUpdatePerson" in-map-name="createUpdatePersonCtx">
             <result-to-field result-name="partyId"/>
         </call-service>