From: <rc...@us...> - 2016-05-21 16:15:12
|
Revision: 7539 http://sourceforge.net/p/web-erp/reponame/7539 Author: rchacon Date: 2016-05-21 16:15:10 +0000 (Sat, 21 May 2016) Log Message: ----------- Standardise link names and add help to manual. Modified Paths: -------------- trunk/BankAccountUsers.php trunk/UserBankAccounts.php trunk/doc/Manual/ManualGeneralLedger.html trunk/doc/Manual/ManualSpecialUtilities.html trunk/includes/MainMenuLinksArray.php Modified: trunk/BankAccountUsers.php =================================================================== --- trunk/BankAccountUsers.php 2016-05-21 02:00:42 UTC (rev 7538) +++ trunk/BankAccountUsers.php 2016-05-21 16:15:10 UTC (rev 7539) @@ -1,13 +1,13 @@ <?php /* $Id: BankAccountUsers.php 6946 2014-10-27 07:30:11Z daintree $*/ -/* This script maintains table bankaccountusers (Authorized users to work with a bank account in webERP). */ +/* This script maintains table bankaccountusers (Authorized users to work with a bank account in webERP) */ include('includes/session.inc'); -$Title = _('Bank Account Users');;// Screen identificator. -$ViewTopic = 'GeneralLedger';// Filename's id in ManualContents.php's TOC. -/* To do this section in the manual. -$BookMark = 'BankAccountUsers';// Anchor's id in the manual's html document.*/ +$Title = _('Bank Account Users'); +$ViewTopic = 'GeneralLedger'; +$BookMark = 'BankAccountUsers'; include('includes/header.inc'); + echo '<p class="page_title_text"><img alt="" src="'.$RootPath.'/css/'.$Theme. '/images/bank.png" title="' . _('Bank Account Authorised Users') . '" /> ' .// Icon title. Modified: trunk/UserBankAccounts.php =================================================================== --- trunk/UserBankAccounts.php 2016-05-21 02:00:42 UTC (rev 7538) +++ trunk/UserBankAccounts.php 2016-05-21 16:15:10 UTC (rev 7539) @@ -1,6 +1,6 @@ <?php -/* $Id: UserBankAccounts.php 7398 2015-11-24 19:59:10Z tehonu $*/ -/* Maintains table bankaccountusers (Authorized users to work with a bank account in webERP). */ +/* $Id: UserBankAccounts.php 7398 2015-11-24 19:59:10Z tehonu $*/ +/* Maintains table bankaccountusers (Authorized users to work with a bank account in webERP) */ include('includes/session.inc'); $Title = _('Bank Account Users'); @@ -8,7 +8,10 @@ $BookMark = 'UserBankAccounts'; include('includes/header.inc'); -echo '<p class="page_title_text"><img src="' . $RootPath . '/css/' . $Theme . '/images/money_add.png" title="' . _('User Authorised Bank Accounts') . '" alt="" />' . ' ' . $Title . '</p>'; +echo '<p class="page_title_text"><img alt="" src="', $RootPath, '/css/', $Theme, + '/images/money_add.png" title="',// Icon image. + _('User Authorised Bank Accounts'), '" /> ',// Icon title. + _('Bank Account Users'), '</p>';// Page title. if (isset($_POST['SelectedBankAccount'])) { $SelectedBankAccount = mb_strtoupper($_POST['SelectedBankAccount']); Modified: trunk/doc/Manual/ManualGeneralLedger.html =================================================================== --- trunk/doc/Manual/ManualGeneralLedger.html 2016-05-21 02:00:42 UTC (rev 7538) +++ trunk/doc/Manual/ManualGeneralLedger.html 2016-05-21 16:15:10 UTC (rev 7539) @@ -406,13 +406,15 @@ <div class="floatright"><a class="minitext" href="#top">⬆ Top</a></div> <h2>Maintenance</h2> -<h3><a id="GLAccountUsers">GL Accounts Authorised Users</a></h3> +<h3><a id="GLAccountUsers">GL Account Authorised Users</a></h3> <p>This software has methods to assign permissions or access rights to specific users and groups of users. The system controls the ability of the users to view or make changes to the contents of the GL accounts.</p> <p>With this script, you can change a specific GL account access permissions for users:</p> <ul> <li>You can add or remove the read permission for each user that grants or denies his ability to view that GL account.</li> <li>You can add or remove the write permission for each user that grants or denies the ability to update that GL account.</li> </ul> +<p>If you need to copy the access rights to general ledger accounts from one user to another, you can use an utility. See: <a href="ManualContents.php? +ViewTopic=SpecialUtilities#Z_GLAccountUsersCopyAuthority">Copy Authority of GL Accounts from one user to another</a>.</p> <h3><a id="UserGLAccounts">User Authorised GL Accounts</a></h3> <p>This software has methods to assign permissions or access rights to specific users and groups of users. The system controls the ability of the users to view or make changes to the contents of the GL accounts.</p> @@ -421,12 +423,16 @@ <li>You can add or remove the read permission for each GL account that grants or denies the ability of that user to view it.</li> <li>You can add or remove the write permission for each GL account that grants or denies the ability of that user to update it.</li> </ul> +<p>If you need to copy the access rights to general ledger accounts from one user to another, you can use an utility. See: <a href="ManualContents.php? +ViewTopic=SpecialUtilities#Z_GLAccountUsersCopyAuthority">Copy Authority of GL Accounts from one user to another</a>.</p> <!--h3><a id="BankAccounts.php">Bank Accounts</a></h3> <p>.</p--> -<!--h3><a id="BankAccountUsers.php">Bank Account Authorized Users</a></h3> -<p>.</p--> +<h3><a id="BankAccountUsers">Bank Account Authorized Users</a></h3> +<p>This software has methods to assign permissions or access rights to specific users and groups of users. The system controls the ability of the users to view and make changes to the contents of the bank accounts.</p> +<p>With this script, you can add or remove the access permission for each user that grants or denies his ability to view or update that bank account.</p> -<!--h3><a id="UserBankAccounts.php">User Authorized Bank Accounts</a></h3> -<p>.</p--> +<h3><a id="UserBankAccounts">User Authorized Bank Accounts</a></h3> +<p>This software has methods to assign permissions or access rights to specific users and groups of users. The system controls the ability of the users to view and make changes to the contents of the bank accounts.</p> +<p>With this script, you can add or remove the access permission for each bank account that grants or denies the ability of that user to view or update it.</p> Modified: trunk/doc/Manual/ManualSpecialUtilities.html =================================================================== --- trunk/doc/Manual/ManualSpecialUtilities.html 2016-05-21 02:00:42 UTC (rev 7538) +++ trunk/doc/Manual/ManualSpecialUtilities.html 2016-05-21 16:15:10 UTC (rev 7539) @@ -68,7 +68,7 @@ <h2><a id="Z_GLAccountUsersCopyAuthority">Copy Authority of GL Accounts from one user to another</a></h2> -<p>This utility allows you to copy access rights to general ledger accounts from one user to another.</p> +<p>This utility allows you to the copy access rights to general ledger accounts from one user to another. This utility overwrites all the access rights of the destination user.</p> <!-- "Inquiries and Reports" --> Modified: trunk/includes/MainMenuLinksArray.php =================================================================== --- trunk/includes/MainMenuLinksArray.php 2016-05-21 02:00:42 UTC (rev 7538) +++ trunk/includes/MainMenuLinksArray.php 2016-05-21 16:15:10 UTC (rev 7539) @@ -398,10 +398,10 @@ $MenuItems['GL']['Maintenance']['Caption'] = array( _('Account Sections'), _('Account Groups'), _('GL Accounts'), + _('GL Account Authorised Users'), + _('User Authorised GL Accounts'), _('GL Budgets'), _('GL Tags'), - _('GL Accounts Authorised Users Maintenance'), - _('User Authorised GL Accounts Maintenance'), _('Bank Accounts'), _('Bank Account Authorized Users'), _('User Authorized Bank Accounts')); @@ -409,10 +409,10 @@ $MenuItems['GL']['Maintenance']['URL'] = array( '/AccountSections.php', '/AccountGroups.php', '/GLAccounts.php', + '/GLAccountUsers.php', + '/UserGLAccounts.php', '/GLBudgets.php', '/GLTags.php', - '/GLAccountUsers.php', - '/UserGLAccounts.php', '/BankAccounts.php', '/BankAccountUsers.php', '/UserBankAccounts.php'); @@ -588,7 +588,7 @@ '/Z_ReApplyCostToSA.php', '/Z_DeleteSalesTransActions.php', '/Z_ReverseSuppPaymentRun.php', - '/Z_UpdateSalesAnalysisWithLatestCustomerData.php', + '/Z_UpdateSalesAnalysisWithLatestCustomerData.php', '/Z_GLAccountUsersCopyAuthority.php'); $MenuItems['Utilities']['Reports']['Caption'] = array( _('Debtors Balances By Currency Totals'), |