Author: pranayp
Date: Thu Jun 9 06:45:04 2016
New Revision: 1747498
URL:
http://svn.apache.org/viewvc?rev=1747498&view=revLog:
[OFBIZ-7261] Corrected typo to fix the error on "Review Order not Picked-Packed" button in Picking screen.
Thanks Amardeep Singh Jhajj for the contribution.
Modified:
ofbiz/trunk/applications/product/webapp/facility/WEB-INF/actions/shipment/ReviewOrdersNotPickedOrPacked.groovy
Modified: ofbiz/trunk/applications/product/webapp/facility/WEB-INF/actions/shipment/ReviewOrdersNotPickedOrPacked.groovy
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/applications/product/webapp/facility/WEB-INF/actions/shipment/ReviewOrdersNotPickedOrPacked.groovy?rev=1747498&r1=1747497&r2=1747498&view=diff==============================================================================
--- ofbiz/trunk/applications/product/webapp/facility/WEB-INF/actions/shipment/ReviewOrdersNotPickedOrPacked.groovy (original)
+++ ofbiz/trunk/applications/product/webapp/facility/WEB-INF/actions/shipment/ReviewOrdersNotPickedOrPacked.groovy Thu Jun 9 06:45:04 2016
@@ -30,7 +30,7 @@ condList.add(EntityCondition.makeConditi
orderHeaders = from("OrderHeader").where(condList).queryList();
orders = [];
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd'/'K:mm a");
-orderHeaders.each { orderHeader ->k
+orderHeaders.each { orderHeader ->
itemIssuanceList = from("ItemIssuance").where("orderId", orderHeader.orderId).queryList();
if (itemIssuanceList) {
orders.add([orderId : orderHeader.orderId, pickSheetPrintedDate : dateFormat.format(orderHeader.pickSheetPrintedDate), isVerified : "Y"]);