You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by de...@apache.org on 2015/06/19 08:14:40 UTC

svn commit: r1686360 - /ofbiz/trunk/applications/product/webapp/facility/WEB-INF/actions/returns/ReceiveReturn.groovy

Author: deepak
Date: Fri Jun 19 06:14:40 2015
New Revision: 1686360

URL: http://svn.apache.org/r1686360
Log:
Fixed field name (or key) unitCost is not valid for entity ShipmentReceipt error on receive return screen.

Modified:
    ofbiz/trunk/applications/product/webapp/facility/WEB-INF/actions/returns/ReceiveReturn.groovy

Modified: ofbiz/trunk/applications/product/webapp/facility/WEB-INF/actions/returns/ReceiveReturn.groovy
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/product/webapp/facility/WEB-INF/actions/returns/ReceiveReturn.groovy?rev=1686360&r1=1686359&r2=1686360&view=diff
==============================================================================
--- ofbiz/trunk/applications/product/webapp/facility/WEB-INF/actions/returns/ReceiveReturn.groovy (original)
+++ ofbiz/trunk/applications/product/webapp/facility/WEB-INF/actions/returns/ReceiveReturn.groovy Fri Jun 19 06:14:40 2015
@@ -71,7 +71,7 @@ if (returnItems) {
 }
 
 if (returnHeader) {
-    context.receivedItems = from("ShipmentReceipt").where("returnId", returnId).queryList();
+    context.receivedItems = from("ShipmentReceiptAndItem").where("returnId", returnId).queryList();
 }
 
 // facilities