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/06/19 16:13:54 UTC

svn commit: r786518 - in /ofbiz/branches/release09.04/specialpurpose/ecommerce/webapp/ecommerce/WEB-INF/actions/customer: EditBillingAddress.groovy EditShippingAddress.groovy

Author: ashish
Date: Fri Jun 19 14:13:53 2009
New Revision: 786518

URL: http://svn.apache.org/viewvc?rev=786518&view=rev
Log:
Reverting changes done at 786450 as this was not bug fix.
Reported by BJ & Vikas on Dev list.

Thanks Guys !

Modified:
    ofbiz/branches/release09.04/specialpurpose/ecommerce/webapp/ecommerce/WEB-INF/actions/customer/EditBillingAddress.groovy
    ofbiz/branches/release09.04/specialpurpose/ecommerce/webapp/ecommerce/WEB-INF/actions/customer/EditShippingAddress.groovy

Modified: ofbiz/branches/release09.04/specialpurpose/ecommerce/webapp/ecommerce/WEB-INF/actions/customer/EditBillingAddress.groovy
URL: http://svn.apache.org/viewvc/ofbiz/branches/release09.04/specialpurpose/ecommerce/webapp/ecommerce/WEB-INF/actions/customer/EditBillingAddress.groovy?rev=786518&r1=786517&r2=786518&view=diff
==============================================================================
--- ofbiz/branches/release09.04/specialpurpose/ecommerce/webapp/ecommerce/WEB-INF/actions/customer/EditBillingAddress.groovy (original)
+++ ofbiz/branches/release09.04/specialpurpose/ecommerce/webapp/ecommerce/WEB-INF/actions/customer/EditBillingAddress.groovy Fri Jun 19 14:13:53 2009
@@ -28,8 +28,6 @@
         postalAddress = contactMech.getRelatedOne("PostalAddress");
         billToContactMechId = postalAddress.contactMechId;
         context.billToContactMechId = billToContactMechId;
-        context.billToName = postalAddress.toName;
-        context.billToAttnName = postalAddress.attnName; 
         context.billToAddress1 = postalAddress.address1;
         context.billToAddress2 = postalAddress.address2;
         context.billToCity = postalAddress.city;

Modified: ofbiz/branches/release09.04/specialpurpose/ecommerce/webapp/ecommerce/WEB-INF/actions/customer/EditShippingAddress.groovy
URL: http://svn.apache.org/viewvc/ofbiz/branches/release09.04/specialpurpose/ecommerce/webapp/ecommerce/WEB-INF/actions/customer/EditShippingAddress.groovy?rev=786518&r1=786517&r2=786518&view=diff
==============================================================================
--- ofbiz/branches/release09.04/specialpurpose/ecommerce/webapp/ecommerce/WEB-INF/actions/customer/EditShippingAddress.groovy (original)
+++ ofbiz/branches/release09.04/specialpurpose/ecommerce/webapp/ecommerce/WEB-INF/actions/customer/EditShippingAddress.groovy Fri Jun 19 14:13:53 2009
@@ -31,8 +31,6 @@
         postalAddress = contactMech.getRelatedOne("PostalAddress");
         context.shipToContactMechId = postalAddress.contactMechId;
 
-        context.shipToName = postalAddress.toName;
-        context.shipToAttnName = postalAddress.attnName;
         context.shipToAddress1 = postalAddress.address1;
         context.shipToAddress2 = postalAddress.address2;
         context.shipToCity = postalAddress.city;