Re: svn commit: r550233 - in /ofbiz/trunk: applications/accounting/src/org/ofbiz/accounting/thirdparty/authorizedotnet/ applications/content/src/org/ofbiz/content/content/ applications/order/src/org/ofbiz/order/shoppinglist/ framework/common/src/org/ofbiz

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

Re: svn commit: r550233 - in /ofbiz/trunk: applications/accounting/src/org/ofbiz/accounting/thirdparty/authorizedotnet/ applications/content/src/org/ofbiz/content/content/ applications/order/src/org/ofbiz/order/shoppinglist/ framework/common/src/org/ofbiz

Jacques Le Roux
Administrator
Please Jacopo,

Should r550233 and  r550232 go to release ?

Thanks

Jacques
De : <[hidden email]>

> Author: jacopoc
> Date: Sun Jun 24 07:17:31 2007
> New Revision: 550233
>
> URL: http://svn.apache.org/viewvc?view=rev&rev=550233
> Log:
> Applied patch from Stefan Huehner OFBIZ-730 to fix some very bad conditions that could cause NPE.
>
> Modified:
>     ofbiz/trunk/applications/accounting/src/org/ofbiz/accounting/thirdparty/authorizedotnet/AIMPaymentServices.java
>     ofbiz/trunk/applications/content/src/org/ofbiz/content/content/ContentWorker.java
>     ofbiz/trunk/applications/order/src/org/ofbiz/order/shoppinglist/ShoppingListEvents.java
>     ofbiz/trunk/framework/common/src/org/ofbiz/common/login/LoginServices.java
>     ofbiz/trunk/framework/entity/src/org/ofbiz/entity/condition/EntityJoinOperator.java
>



De : <[hidden email]>

> Author: jacopoc
> Date: Sun Jun 24 07:15:28 2007
> New Revision: 550232
>
> URL: http://svn.apache.org/viewvc?view=rev&rev=550232
> Log:
> Fix from some funny bugs.
>
> Modified:
>     ofbiz/trunk/applications/order/src/org/ofbiz/order/shoppingcart/ShoppingCartItem.java
>
> Modified: ofbiz/trunk/applications/order/src/org/ofbiz/order/shoppingcart/ShoppingCartItem.java
> URL:
http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/src/org/ofbiz/order/shoppingcart/ShoppingCartItem.java?view=diff&rev=550232&r1=550231&r2=550232

> ==============================================================================
> --- ofbiz/trunk/applications/order/src/org/ofbiz/order/shoppingcart/ShoppingCartItem.java (original)
> +++ ofbiz/trunk/applications/order/src/org/ofbiz/order/shoppingcart/ShoppingCartItem.java Sun Jun 24 07:15:28 2007
> @@ -1688,12 +1688,12 @@
>              Double depth = product.getDouble("shippingDepth");
>
>              // if all are null, see if there is an associated virtual product and get the info of that product
> -            if (height == null & width == null && depth == null) {
> +            if (height == null && width == null && depth == null) {
>                  GenericValue parentProduct = this.getParentProduct();
>                  if (parentProduct != null) {
>                      height = parentProduct.getDouble("shippingHeight");
> -                    width = product.getDouble("shippingWidth");
> -                    depth = product.getDouble("shippingDepth");
> +                    width = parentProduct.getDouble("shippingWidth");
> +                    depth = parentProduct.getDouble("shippingDepth");
>                  }
>              }
>