Revision: 7423
http://sourceforge.net/p/web-erp/reponame/7423
Author: exsonqu
Date: 2015-12-24 10:12:57 +0000 (Thu, 24 Dec 2015)
Log Message:
-----------
24/12/15 Exson: Add supplier no as a option for supplier transaction inquiry in SupplierTransInquiry.php.
Modified Paths:
--------------
trunk/SupplierTransInquiry.php
Modified: trunk/SupplierTransInquiry.php
===================================================================
--- trunk/SupplierTransInquiry.php 2015-12-24 08:23:53 UTC (rev 7422)
+++ trunk/SupplierTransInquiry.php 2015-12-24 10:12:57 UTC (rev 7423)
@@ -48,10 +48,16 @@
if (!isset($_POST['ToDate'])){
$_POST['ToDate'] = Date($_SESSION['DefaultDateFormat']);
}
+if (!isset($_POST['SupplierNo'])) {
+ $_POST['SupplierNo'] = '';
+}
echo '<td>' . _('From') . ':</td>
<td><input type="text" class="date" alt="' . $_SESSION['DefaultDateFormat'] . '" name="FromDate" maxlength="10" size="11" value="' . $_POST['FromDate'] . '" /></td>
<td>' . _('To') . ':</td>
<td><input type="text" class="date" alt="' . $_SESSION['DefaultDateFormat'] . '" name="ToDate" maxlength="10" size="11" value="' . $_POST['ToDate'] . '" /></td>
+ <td>' . _('Supplier No') . ':</td>
+ <td><input type="text" name="SupplierNo" size="11" maxlength="10" value="' . $_POST['SupplierNo'] . '" />
+ </td>
</tr>
</table>
<br />
@@ -208,4 +214,4 @@
echo '</table>';
}
include('includes/footer.inc');
-?>
\ No newline at end of file
+?>
|