|
From: <dai...@us...> - 2012-10-25 08:20:10
|
Revision: 5729
http://sourceforge.net/p/web-erp/reponame/5729
Author: daintree
Date: 2012-10-25 08:20:07 +0000 (Thu, 25 Oct 2012)
Log Message:
-----------
add telephone and email to search
Modified Paths:
--------------
trunk/SelectSupplier.php
trunk/doc/Change.log
Modified: trunk/SelectSupplier.php
===================================================================
--- trunk/SelectSupplier.php 2012-10-25 07:51:57 UTC (rev 5728)
+++ trunk/SelectSupplier.php 2012-10-25 08:20:07 UTC (rev 5729)
@@ -87,7 +87,9 @@
address1,
address2,
address3,
- address4
+ address4,
+ telephone,
+ email
FROM suppliers
ORDER BY suppname";
} else {
@@ -101,7 +103,9 @@
address1,
address2,
address3,
- address4
+ address4,
+ telephone,
+ email
FROM suppliers
WHERE suppname " . LIKE . " '" . $SearchString . "'
ORDER BY suppname";
@@ -113,7 +117,9 @@
address1,
address2,
address3,
- address4
+ address4,
+ telephone,
+ email
FROM suppliers
WHERE supplierid " . LIKE . " '%" . $_POST['SupplierCode'] . "%'
ORDER BY supplierid";
@@ -263,6 +269,8 @@
<th>' . _('Address 2') . '</th>
<th>' . _('Address 3') . '</th>
<th>' . _('Address 4') . '</th>
+ <th>' . _('Telephone') . '</th>
+ <th>' . _('Email') . '</th>
</tr>';
echo $tableheader;
$j = 1;
@@ -286,6 +294,8 @@
<td>'.$myrow['address2'].'</td>
<td>'.$myrow['address3'].'</td>
<td>'.$myrow['address4'].'</td>
+ <td>'.$myrow['telephone'].'</td>
+ <td><a href="mailto://'.$myrow['email'].'">' . $myrow['email']. '</a></td>
</tr>';
$RowIndex = $RowIndex + 1;
//end of page full new headings if
Modified: trunk/doc/Change.log
===================================================================
--- trunk/doc/Change.log 2012-10-25 07:51:57 UTC (rev 5728)
+++ trunk/doc/Change.log 2012-10-25 08:20:07 UTC (rev 5729)
@@ -1,4 +1,7 @@
webERP Change Log
+
+25/10/12 Phil: Added telephone and email to supplier search - SelectSupplier.php
+25/10/12 Phil: Rounding error prevented CounterSales.php from posting a sale where currency was rounding to 0 decimal places - reported by Arwan
20/10/12 Samudaya Nanayakkara: Fixed the problem of Authoriser drop down selection when try to edit a Internal Departments.
19/10/12 Phil: Fixed exchange rate trend using google based https://encrypted.google.com/finance/chart?
18/10/12 Phil: Added google exchange rates option - many more rates than ECB published daily
|