Author: jleroux Date: Thu Mar 16 13:19:34 2017 New Revision: 1787177 URL: http://svn.apache.org/viewvc?rev=1787177&view=rev Log: "Applied fix from trunk framework for revision: 1787176" ------------------------------------------------------------------------ r1787176 | jleroux | 2017-03-16 14:18:05 +0100 (jeu. 16 mars 2017) | 10 lignes
Fixed: Error in accounting report inventory valuation with through date with an empty value. (OFBIZ-9265) Go to https://localhost:8443/accounting/control/InventoryValuation and clear the Through Date, we get an error. The provided patch fixes this by setting the default thruDate to now. Thanks: Francis Douet ------------------------------------------------------------------------ Modified: ofbiz/branches/release16.11/ (props changed) ofbiz/branches/release16.11/applications/accounting/widget/ReportFinancialSummaryScreens.xml Propchange: ofbiz/branches/release16.11/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Thu Mar 16 13:19:34 2017 @@ -10,5 +10,5 @@ /ofbiz/branches/json-integration-refactoring:1634077-1635900 /ofbiz/branches/multitenant20100310:921280-927264 /ofbiz/branches/release13.07:1547657 -/ofbiz/ofbiz-framework/trunk:1783202,1783388,1784549,1784558,1784708,1785882,1785925,1786079,1786214,1786525,1787047,1787133 +/ofbiz/ofbiz-framework/trunk:1783202,1783388,1784549,1784558,1784708,1785882,1785925,1786079,1786214,1786525,1787047,1787133,1787176 /ofbiz/trunk:1770481,1770490,1770540,1771440,1771448,1771516,1771935,1772346,1772880,1774772,1775441,1779724,1780659,1781109,1781125,1781979,1782498,1782520 Modified: ofbiz/branches/release16.11/applications/accounting/widget/ReportFinancialSummaryScreens.xml URL: http://svn.apache.org/viewvc/ofbiz/branches/release16.11/applications/accounting/widget/ReportFinancialSummaryScreens.xml?rev=1787177&r1=1787176&r2=1787177&view=diff ============================================================================== --- ofbiz/branches/release16.11/applications/accounting/widget/ReportFinancialSummaryScreens.xml (original) +++ ofbiz/branches/release16.11/applications/accounting/widget/ReportFinancialSummaryScreens.xml Thu Mar 16 13:19:34 2017 @@ -1313,6 +1313,7 @@ under the License. <set field="labelTitleProperty" value="AccountingInventoryValuation"/> <set field="tabButtonItem" value="OrganizationAccountingReports"/> <set field="tabButtonItem2" value="InventoryValuation"/> + <set field="parameters.thruDate" from-field="parameters.thruDate" type="Timestamp" default-value="${nowTimestamp}"/> </actions> <widgets> <decorator-screen name="CommonOrganizationAccountingReportsDecorator" location="${parameters.mainDecoratorLocation}">

