You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by pa...@apache.org on 2019/10/03 07:33:42 UTC

svn commit: r1867910 - /ofbiz/ofbiz-framework/trunk/applications/order/template/reports/SalesByStoreReport.fo.ftl

Author: pawan
Date: Thu Oct  3 07:33:42 2019
New Revision: 1867910

URL: http://svn.apache.org/viewvc?rev=1867910&view=rev
Log:
Fixed: Sales By Store Report not working
(OFBIZ-11119)

Added Null check to avoid Exception.

Thanks: Chandan Khandelwal for your contribution.

Modified:
    ofbiz/ofbiz-framework/trunk/applications/order/template/reports/SalesByStoreReport.fo.ftl

Modified: ofbiz/ofbiz-framework/trunk/applications/order/template/reports/SalesByStoreReport.fo.ftl
URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-framework/trunk/applications/order/template/reports/SalesByStoreReport.fo.ftl?rev=1867910&r1=1867909&r2=1867910&view=diff
==============================================================================
--- ofbiz/ofbiz-framework/trunk/applications/order/template/reports/SalesByStoreReport.fo.ftl (original)
+++ ofbiz/ofbiz-framework/trunk/applications/order/template/reports/SalesByStoreReport.fo.ftl Thu Oct  3 07:33:42 2019
@@ -44,7 +44,7 @@ under the License.
                 <#if orderStatusIds?has_content>
                   <#list orderStatusIds as orderStatusId>
                     <#assign statusItem = delegator.findOne("StatusItem", {"statusId" : orderStatusId}, false)!/>
-                    ${statusItem.description}
+                    ${statusItem.description!}
                   </#list>
                 <#else>
                   ${uiLabelMap.CommonAny}