Author: jleroux Date: Tue Dec 3 19:42:22 2013 New Revision: 1547550 URL: http://svn.apache.org/r1547550 Log: "Applied fix from trunk for revision: 1547548 " ------------------------------------------------------------------------ r1547548 | jleroux | 2013-12-03 20:40:57 +0100 (mar. 03 déc. 2013) | 6 lignes
A patch from Praveen Agrawal for "Checking with orderAdjustment.productPromoId rather than adjustment.productPromoId" https://issues.apache.org/jira/browse/OFBIZ-5411 While iterating the adjustments list we are checking with orderAdjustment.productPromoId rather then the adjustment.productPromoId. Using orderAdjustment.productPromoId the condition will never true and the newOrderAdjustmentTotal will always be 0. ------------------------------------------------------------------------ Modified: ofbiz/branches/release12.04/ (props changed) ofbiz/branches/release12.04/applications/order/script/org/ofbiz/order/order/OrderServices.xml Propchange: ofbiz/branches/release12.04/ ------------------------------------------------------------------------------ Merged /ofbiz/trunk:r1547548 Modified: ofbiz/branches/release12.04/applications/order/script/org/ofbiz/order/order/OrderServices.xml URL: http://svn.apache.org/viewvc/ofbiz/branches/release12.04/applications/order/script/org/ofbiz/order/order/OrderServices.xml?rev=1547550&r1=1547549&r2=1547550&view=diff ============================================================================== --- ofbiz/branches/release12.04/applications/order/script/org/ofbiz/order/order/OrderServices.xml (original) +++ ofbiz/branches/release12.04/applications/order/script/org/ofbiz/order/order/OrderServices.xml Tue Dec 3 19:42:22 2013 @@ -682,7 +682,7 @@ under the License. <iterate list="adjustments" entry="adjustment"> <if> <condition> - <not><if-empty field="orderAdjustment.productPromoId"/></not> + <not><if-empty field="adjustment.productPromoId"/></not> </condition> <then> <calculate field="newOrderAdjustmentTotal" decimal-scale="3">

