From: <rc...@us...> - 2017-04-17 14:25:22
|
Revision: 7757 http://sourceforge.net/p/web-erp/reponame/7757 Author: rchacon Date: 2017-04-17 14:25:20 +0000 (Mon, 17 Apr 2017) Log Message: ----------- Improve help in manual. Modified Paths: -------------- trunk/AnalysisHorizontalIncome.php trunk/doc/Manual/ManualGeneralLedger.html Modified: trunk/AnalysisHorizontalIncome.php =================================================================== --- trunk/AnalysisHorizontalIncome.php 2017-04-16 15:21:39 UTC (rev 7756) +++ trunk/AnalysisHorizontalIncome.php 2017-04-17 14:25:20 UTC (rev 7757) @@ -2,6 +2,7 @@ /* $Id: AnalysisHorizontalIncome.php 7349 2015-09-14 14:43:19Z rchacon $*/ /* Shows the horizontal analysis of the statement of comprehensive income. */ +// BEGIN: Functions division --------------------------------------------------- function RelativeChange($selected_period, $previous_period) { // Calculates the relative change between selected and previous periods. Uses percent with locale number format. if($previous_period<>0) { @@ -10,13 +11,16 @@ return _('N/A'); } } +// END: Functions division ----------------------------------------------------- +// BEGIN: Procedure division --------------------------------------------------- include ('includes/session.php'); -$Title = _('Horizontal Analysis of Statement of Comprehensive Income');// Screen identification. -$ViewTopic= 'GeneralLedger';// Filename's id in ManualContents.php's TOC. -$BookMark = 'AnalysisHorizontalIncome';// Anchor's id in the manual's html document. +$Title = _('Horizontal Analysis of Statement of Comprehensive Income'); +$ViewTopic= 'GeneralLedger'; +$BookMark = 'AnalysisHorizontalIncome'; + include('includes/SQL_CommonFunctions.inc'); -include('includes/AccountSectionsDef.php');// This loads the $Sections variable +include('includes/AccountSectionsDef.php');// This loads the $Sections variable. if(isset($_POST['FromPeriod']) and ($_POST['FromPeriod'] > $_POST['ToPeriod'])) { prnMsg(_('The selected period from is actually after the period to') . '! ' . _('Please reselect the reporting period'),'error'); Modified: trunk/doc/Manual/ManualGeneralLedger.html =================================================================== --- trunk/doc/Manual/ManualGeneralLedger.html 2017-04-16 15:21:39 UTC (rev 7756) +++ trunk/doc/Manual/ManualGeneralLedger.html 2017-04-17 14:25:20 UTC (rev 7757) @@ -351,9 +351,11 @@ <!-- ----------------------------------------------------------------------- --> <li> <h3><a id="GLCashFlows">Statement of Cash Flows</a></h3> - <p>The purpose of the statement of cash flows is to show where the company got their money from and how it was spent during the period being reported for a user selectable range of periods.</p> <p>The statement of cash flows, also known as the successor of the old source and application of funds statement, reports how changes in balance sheet accounts and income affect cash and cash equivalents, and breaks the analysis down to operating, investing and financing activities (see <a href="ManualContents.php? ViewTopic=GeneralLedger#GLCashFlowsSetup">GLCashFlowsSetup</a>).</p> + <p>The purpose of the statement of cash flows is to show where the company got their money from and how it was spent during the period being reported for a user selectable range of periods.</p> + <p>The statement of cash flows represents a period of time. This contrasts with the statement of financial position, which represents a single moment in time.</p> + <p>webERP is an "accrual" based system (not a "cash based" system). Accrual systems include items when they are invoiced to the customer, and when expenses are owed based on the supplier invoice date.</p> <p>It can be generated using either direct method or indirect method. The main difference between them is the cash flows from operating activities, the first section of the statement of cash flows; there is no difference in the investing and financing activities sections.</p> <h4><a id="GLCashFlowsDirect">Statement of Cash Flows using Direct Method</a></h4> <p>The cash flows from operating activities will show lines such as cash from customers and cash paid to suppliers. "<i>Major classes of gross cash receipts and gross cash payments are disclosed</i>" (Reference: IAS 7, paragraph 18).</p> |