You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by as...@apache.org on 2009/09/09 13:01:54 UTC

svn commit: r812882 - /ofbiz/trunk/specialpurpose/ecommerce/webapp/ecommerce/WEB-INF/actions/customer/EditShippingAddress.groovy

Author: ashish
Date: Wed Sep  9 11:01:54 2009
New Revision: 812882

URL: http://svn.apache.org/viewvc?rev=812882&view=rev
Log:
Minor bug fix from Rishi for registered user.

Modified:
    ofbiz/trunk/specialpurpose/ecommerce/webapp/ecommerce/WEB-INF/actions/customer/EditShippingAddress.groovy

Modified: ofbiz/trunk/specialpurpose/ecommerce/webapp/ecommerce/WEB-INF/actions/customer/EditShippingAddress.groovy
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/ecommerce/webapp/ecommerce/WEB-INF/actions/customer/EditShippingAddress.groovy?rev=812882&r1=812881&r2=812882&view=diff
==============================================================================
--- ofbiz/trunk/specialpurpose/ecommerce/webapp/ecommerce/WEB-INF/actions/customer/EditShippingAddress.groovy (original)
+++ ofbiz/trunk/specialpurpose/ecommerce/webapp/ecommerce/WEB-INF/actions/customer/EditShippingAddress.groovy Wed Sep  9 11:01:54 2009
@@ -23,6 +23,7 @@
 if (userLogin) {
     party = userLogin.getRelatedOne("Party");
     person = delegator.findByPrimaryKey("Person", [partyId : party.partyId]);
+    context.partyId = person.partyId;
     context.firstName = person.firstName;
     context.lastName = person.lastName;