Author: sichen Date: Wed Sep 27 14:07:16 2006 New Revision: 450578 URL: http://svn.apache.org/viewvc?view=rev&rev=450578 Log: Fix two minor issues with the open order items report.
Modified: incubator/ofbiz/trunk/applications/order/webapp/ordermgr/WEB-INF/actions/reports/OpenOrderItemsReport.bsh incubator/ofbiz/trunk/applications/order/widget/ordermgr/ReportForms.xml Modified: incubator/ofbiz/trunk/applications/order/webapp/ordermgr/WEB-INF/actions/reports/OpenOrderItemsReport.bsh URL: http://svn.apache.org/viewvc/incubator/ofbiz/trunk/applications/order/webapp/ordermgr/WEB-INF/actions/reports/OpenOrderItemsReport.bsh?view=diff&rev=450578&r1=450577&r2=450578 ============================================================================== --- incubator/ofbiz/trunk/applications/order/webapp/ordermgr/WEB-INF/actions/reports/OpenOrderItemsReport.bsh (original) +++ incubator/ofbiz/trunk/applications/order/webapp/ordermgr/WEB-INF/actions/reports/OpenOrderItemsReport.bsh Wed Sep 27 14:07:16 2006 @@ -44,7 +44,7 @@ context.put("productStore", UtilMisc.toMap("storeName", "All Stores")); } if (orderStatusId != null && orderStatusId.length() > 0) { - conditions.add(new EntityExpr("statusId", EntityOperator.EQUALS, orderStatusId)); + conditions.add(new EntityExpr("orderStatusId", EntityOperator.EQUALS, orderStatusId)); } else { // search all orders that are not completed, cancelled or rejected conditions.add( Modified: incubator/ofbiz/trunk/applications/order/widget/ordermgr/ReportForms.xml URL: http://svn.apache.org/viewvc/incubator/ofbiz/trunk/applications/order/widget/ordermgr/ReportForms.xml?view=diff&rev=450578&r1=450577&r2=450578 ============================================================================== --- incubator/ofbiz/trunk/applications/order/widget/ordermgr/ReportForms.xml (original) +++ incubator/ofbiz/trunk/applications/order/widget/ordermgr/ReportForms.xml Wed Sep 27 14:07:16 2006 @@ -132,7 +132,7 @@ default-title-style="tableheadtext" default-widget-style="tabletext" default-tooltip-style="tabletext"> <field name="orderDate" title="${uiLabelMap.OrderDate}"><display/></field> <field name="orderId" title="${uiLabelMap.OrderOrderId}" widget-style="buttontext"> - <hyperlink target="orderview?$orderId=${orderId}" description="${orderId}"/> + <hyperlink target="orderview?orderId=${orderId}" description="${orderId}"/> </field> <field name="productId" title="${uiLabelMap.ProductProduct}"><display/></field> <field name="quantityNet" title="${uiLabelMap.ProductQuantity}"><display/></field>