From: <dai...@us...> - 2012-12-18 08:41:26
|
Revision: 5764 http://sourceforge.net/p/web-erp/reponame/5764 Author: daintree Date: 2012-12-18 08:41:23 +0000 (Tue, 18 Dec 2012) Log Message: ----------- remove superflous repeated code in comments Modified Paths: -------------- trunk/SelectCustomer.php Modified: trunk/SelectCustomer.php =================================================================== --- trunk/SelectCustomer.php 2012-12-18 08:26:48 UTC (rev 5763) +++ trunk/SelectCustomer.php 2012-12-18 08:41:23 UTC (rev 5764) @@ -227,7 +227,6 @@ echo '</td><td valign="top" class="select">'; echo '<a href="' . $rootpath . '/SelectSalesOrder.php?SelectedCustomer=' . $_SESSION['CustomerID'] . '">' . _('Modify Outstanding Sales Orders') . '</a><br />'; echo '<a href="' . $rootpath . '/CustomerAllocations.php?DebtorNo=' . $_SESSION['CustomerID'] . '">' . _('Allocate Receipts OR Credit Notes') . '</a><br />'; - echo '<a href="' . $rootpath . '/JobCards.php?DebtorNo=' . $_SESSION['CustomerID'] . '&BranchNo=' . $_SESSION['BranchCode'] . '">' . _('Job Cards') . '</a><br />'; if (isset($_SESSION['CustomerID']) AND isset($_SESSION['BranchCode'])) { echo '<a href="' . $rootpath . '/CounterSales.php?DebtorNo=' . $_SESSION['CustomerID'] . '&BranchNo=' . $_SESSION['BranchCode'] . '">' . _('Create a Counter Sale for this Customer') . '</a><br />'; } @@ -443,7 +442,7 @@ } //end if producing a CSV if (!isset($_POST['CSV'])) { DB_data_seek($result, ($_POST['PageOffset'] - 1) * $_SESSION['DisplayRecordsMax']); - } \ + } $i = 0; //counter for input controls while (($myrow = DB_fetch_array($result)) AND ($RowIndex <> $_SESSION['DisplayRecordsMax'])) { if ($k == 1) { |