From: <ice...@us...> - 2012-09-12 06:33:41
|
Revision: 5659 http://web-erp.svn.sourceforge.net/web-erp/?rev=5659&view=rev Author: icedlava Date: 2012-09-12 06:33:35 +0000 (Wed, 12 Sep 2012) Log Message: ----------- Manual bookmarks for company preferences and configuration. Modified Paths: -------------- trunk/CompanyPreferences.php trunk/SystemParameters.php trunk/doc/Manual/ManualCreatingNewSystem.html Modified: trunk/CompanyPreferences.php =================================================================== --- trunk/CompanyPreferences.php 2012-09-12 06:30:58 UTC (rev 5658) +++ trunk/CompanyPreferences.php 2012-09-12 06:33:35 UTC (rev 5659) @@ -5,7 +5,9 @@ include('includes/session.inc'); $title = _('Company Preferences'); - +/* webERP manual links before header.inc */ +$ViewTopic= "CreatingNewSystem"; +$BookMark = "CompanyParameters"; include('includes/header.inc'); if (isset($Errors)) { Modified: trunk/SystemParameters.php =================================================================== --- trunk/SystemParameters.php 2012-09-12 06:30:58 UTC (rev 5658) +++ trunk/SystemParameters.php 2012-09-12 06:33:35 UTC (rev 5659) @@ -5,7 +5,7 @@ include('includes/session.inc'); $title = _('System Configuration'); -$ViewTopic= 'CreatingNewSystem'; +$ViewTopic= 'GettingStarted'; $BookMark = 'SystemConfiguration'; include('includes/header.inc'); @@ -125,11 +125,11 @@ if ($_SESSION['QuickEntries'] != $_POST['X_QuickEntries'] ) { $sql[] = "UPDATE config SET confvalue = '".$_POST['X_QuickEntries']."' WHERE confname = 'QuickEntries'"; } - + if ($_SESSION['WorkingDaysWeek'] != $_POST['X_WorkingDaysWeek'] ) { $sql[] = "UPDATE config SET confvalue = '".$_POST['X_WorkingDaysWeek']."' WHERE confname = 'WorkingDaysWeek'"; } - + if ($_SESSION['DispatchCutOffTime'] != $_POST['X_DispatchCutOffTime'] ) { $sql[] = "UPDATE config SET confvalue = '".$_POST['X_DispatchCutOffTime']."' WHERE confname = 'DispatchCutOffTime'"; } Modified: trunk/doc/Manual/ManualCreatingNewSystem.html =================================================================== --- trunk/doc/Manual/ManualCreatingNewSystem.html 2012-09-12 06:30:58 UTC (rev 5658) +++ trunk/doc/Manual/ManualCreatingNewSystem.html 2012-09-12 06:33:35 UTC (rev 5659) @@ -17,7 +17,7 @@ <p> In the General Ledger there is a hierarchy of Account Section > Account Group > GL Account. General ledger accounts - the chart of accounts, Account Groups and Account Sections can be added or modified from General Ledger - Maintenance. It is important to get the chart of accounts right before entries are made which make it difficult to modify the chart. You can't delete accounts with postings made to them.</p> -<h3>Company Parameters</h3> +<h3><a id="CompanyParameters">System Configuration</a>Company Parameters</a></h3> <p> Company parameters need to be set correctly from the company set up screen. Most of these parameters are self -explanatory. Company name, company number, postal address, physical address etc. Also, telephone numbers and the default home currency of the business. If the default currency is not already set up, then from the main menu system set up tab, the link to the currency maintenance form allows new currencies to be defined and for default rates to be updated.</p> <p> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |