From: <rc...@us...> - 2014-12-28 21:40:14
|
Revision: 7052 http://sourceforge.net/p/web-erp/reponame/7052 Author: rchacon Date: 2014-12-28 21:40:12 +0000 (Sun, 28 Dec 2014) Log Message: ----------- Add comments, variables to link to the manual and titles in Z_CurrencyDebtorsBalances.php and Z_CurrencySuppliersBalances.php. Modified Paths: -------------- trunk/Z_CurrencyDebtorsBalances.php trunk/Z_CurrencySuppliersBalances.php trunk/doc/Change.log trunk/doc/Manual/ManualSpecialUtilities.html trunk/includes/MainMenuLinksArray.php Modified: trunk/Z_CurrencyDebtorsBalances.php =================================================================== --- trunk/Z_CurrencyDebtorsBalances.php 2014-12-28 20:54:32 UTC (rev 7051) +++ trunk/Z_CurrencyDebtorsBalances.php 2014-12-28 21:40:12 UTC (rev 7052) @@ -1,14 +1,17 @@ <?php /* $Id$*/ +/* This script is an utility to show debtors balances in total by currency. */ -include('includes/session.inc'); -$Title=_('Currency Debtor Balances'); -$ViewTopic = 'SpecialUtilities'; // Filename in ManualContents.php's TOC. -$BookMark = 'Z_CurrencyDebtorsBalances'; // Anchor's id in the manual's html document. +include ('includes/session.inc'); +$Title = _('Currency Debtor Balances');// Screen identificator. +$ViewTopic = 'SpecialUtilities';// Filename's id in ManualContents.php's TOC. +$BookMark = 'Z_CurrencyDebtorsBalances';// Anchor's id in the manual's html document. include('includes/header.inc'); +echo '<p class="page_title_text"><img alt="" src="'.$RootPath.'/css/'.$Theme. + '/images/ar.png" title="' . + _('Show Local Currency Total Debtors Balances') . '" /> ' .// Icon title. + _('Debtors Balances By Currency Totals') . '</p>';// Page title. -echo '<div class="centre"><h3>' . _('Debtors Balances By Currency Totals') . '</h3></div>'; - $sql = "SELECT SUM(ovamount+ovgst+ovdiscount+ovfreight-alloc) AS currencybalance, currcode, decimalplaces AS currdecimalplaces, Modified: trunk/Z_CurrencySuppliersBalances.php =================================================================== --- trunk/Z_CurrencySuppliersBalances.php 2014-12-28 20:54:32 UTC (rev 7051) +++ trunk/Z_CurrencySuppliersBalances.php 2014-12-28 21:40:12 UTC (rev 7052) @@ -1,12 +1,17 @@ <?php /* $Id$*/ +/* This script is an utility to show suppliers balances in total by currency. */ -include('includes/session.inc'); -$Title=_('Currency Supplier Balances'); +include ('includes/session.inc'); +$Title = _('Currency Supplier Balances');// Screen identificator. +$ViewTopic = 'SpecialUtilities';// Filename's id in ManualContents.php's TOC. +$BookMark = 'Z_CurrencySuppliersBalances';// Anchor's id in the manual's html document. include('includes/header.inc'); +echo '<p class="page_title_text"><img alt="" src="'.$RootPath.'/css/'.$Theme. + '/images/supplier.png" title="' . + _('Show Local Currency Total Suppliers Balances') . '" /> ' .// Icon title. + _('Suppliers Balances By Currency Totals') . '</p>';// Page title. -echo '<div class="centre"><h3>' . _('Suppliers Balances By Currency Totals') . '</h3></div>'; - $sql = "SELECT SUM(ovamount+ovgst-alloc) AS currencybalance, currcode, decimalplaces AS currdecimalplaces, @@ -42,4 +47,4 @@ echo '</table>'; include('includes/footer.inc'); -?> \ No newline at end of file +?> Modified: trunk/doc/Change.log =================================================================== --- trunk/doc/Change.log 2014-12-28 20:54:32 UTC (rev 7051) +++ trunk/doc/Change.log 2014-12-28 21:40:12 UTC (rev 7052) @@ -1,5 +1,6 @@ webERP Change Log +28/12/14 RChacon: Add comments, variables to link to the manual and titles in Z_CurrencyDebtorsBalances.php and Z_CurrencySuppliersBalances.php. 28/12/14 RChacon: Add comments, variables to link to the manual and titles in Z_Change*.php. 28/12/14 RChacon: Update comment for the SVN repository automatically updates the revision number, standardise title. 27/12/14 RChacon: Add info to manual and context $BookMark for Sales People Maintenance. Modified: trunk/doc/Manual/ManualSpecialUtilities.html =================================================================== --- trunk/doc/Manual/ManualSpecialUtilities.html 2014-12-28 20:54:32 UTC (rev 7051) +++ trunk/doc/Manual/ManualSpecialUtilities.html 2014-12-28 21:40:12 UTC (rev 7052) @@ -64,6 +64,15 @@ <p>However, occasionally incorrect cost data that has made a monkey of the sales analysis and general ledger can only be rectified by running this utility.</p> +<h2><a id="Z_CurrencyDebtorsBalances.php">Debtors Balances By Currency Totals</a></h2> + +<p>This script is an utility to show debtors balances in total by currency.</p> + +<h2><a id="Z_CurrencySuppliersBalances.php">Suppliers Balances By Currency Totals</a></h2> + +<p>This script is an utility to show suppliers balances in total by currency.</p> + + <h2>Make Stock Locations</h2> <p>If the inventory database is imported from some other system, the stock location records can be created for all locations currently defined by running the script Z_MakeStockLocns.php. Inventory items will not appear on searches during entry of sales orders until their corresponding inventory locations records exist.</p> Modified: trunk/includes/MainMenuLinksArray.php =================================================================== --- trunk/includes/MainMenuLinksArray.php 2014-12-28 20:54:32 UTC (rev 7051) +++ trunk/includes/MainMenuLinksArray.php 2014-12-28 21:40:12 UTC (rev 7052) @@ -571,8 +571,8 @@ '/Z_ReverseSuppPaymentRun.php', '/Z_UpdateSalesAnalysisWithLatestCustomerData.php'); -$MenuItems['Utilities']['Reports']['Caption'] = array( _('Show Local Currency Total Debtor Balances'), - _('Show Local Currency Total Suppliers Balances'), +$MenuItems['Utilities']['Reports']['Caption'] = array( _('Debtors Balances By Currency Totals'), + _('Suppliers Balances By Currency Totals'), _('Show General Transactions That Do Not Balance'), _('List of items without picture')); |