|
From: <rc...@us...> - 2014-09-19 19:27:08
|
Revision: 6894
http://sourceforge.net/p/web-erp/reponame/6894
Author: rchacon
Date: 2014-09-19 19:27:05 +0000 (Fri, 19 Sep 2014)
Log Message:
-----------
Add ascending class to PaymentMethods.php to have sortable columns.
Modified Paths:
--------------
trunk/PaymentMethods.php
trunk/doc/Change.log
Modified: trunk/PaymentMethods.php
===================================================================
--- trunk/PaymentMethods.php 2014-09-17 08:32:43 UTC (rev 6893)
+++ trunk/PaymentMethods.php 2014-09-19 19:27:05 UTC (rev 6894)
@@ -1,11 +1,12 @@
<?php
-
/* $Id$*/
include('includes/session.inc');
-
$Title = _('Payment Methods');
-
+/* Manual links before header.inc */
+/* RChacon: This is a topic to create.
+$ViewTopic = 'ARTransactions';// Filename in ManualContents.php's TOC.
+$BookMark = 'PaymentMethods';// Anchor's id in the manual's html document.*/
include('includes/header.inc');
echo '<p class="page_title_text"><img src="'.$RootPath.'/css/'.$Theme.'/images/transactions.png" title="' . _('Payments') .
@@ -182,11 +183,12 @@
echo '<table class="selection">
<tr>
- <th>' . _('Payment Method') . '</th>
- <th>' . _('Use For Payments') . '</th>
- <th>' . _('Use For Receipts') . '</th>
- <th>' . _('Use Pre-printed Stationery') . '</th>
- <th>' . _('Open POS Cash Drawer for Sale') . '</th>
+ <th class="ascending">' . _('Payment Method') . '</th>
+ <th class="ascending">' . _('Use For Payments') . '</th>
+ <th class="ascending">' . _('Use For Receipts') . '</th>
+ <th class="ascending">' . _('Use Pre-printed Stationery') . '</th>
+ <th class="ascending">' . _('Open POS Cash Drawer for Sale') . '</th>
+ <th colspan="2"> </th>
</tr>';
$k=0; //row colour counter
Modified: trunk/doc/Change.log
===================================================================
--- trunk/doc/Change.log 2014-09-17 08:32:43 UTC (rev 6893)
+++ trunk/doc/Change.log 2014-09-19 19:27:05 UTC (rev 6894)
@@ -1,6 +1,6 @@
webERP Change Log
-
+11/09/14 RChacon: Add ascending class to PaymentMethods.php to have sortable columns.
17/9/14 Phil: Moved the audit log purge to occur if DB_Maintenance is set to run
16/9/14 Phil: Added BNZ GIFTS format for bank account transaction imports
15/09/14 Exson: fixed the date format errors in WorkOrderEntry.php.
|