|
From: <ice...@us...> - 2013-09-06 15:48:53
|
Revision: 6331
http://sourceforge.net/p/web-erp/reponame/6331
Author: icedlava
Date: 2013-09-06 15:48:49 +0000 (Fri, 06 Sep 2013)
Log Message:
-----------
PrintCustStatements.php fix to allow selection of range with alphanumeric customer codes in length to match database definition.
Modified Paths:
--------------
trunk/PrintCustStatements.php
trunk/doc/Change.log
Modified: trunk/PrintCustStatements.php
===================================================================
--- trunk/PrintCustStatements.php 2013-09-06 15:30:51 UTC (rev 6330)
+++ trunk/PrintCustStatements.php 2013-09-06 15:48:49 UTC (rev 6331)
@@ -422,9 +422,9 @@
echo '<table class="selection">';
echo '<tr><td>' . _('Starting Customer statement to print (Customer code)'). '
- </td><td><input type="text" maxlength="6" size="7" name="FromCust" value="1" /></td></tr>
+ </td><td><input type="text" maxlength="10" size="8" name="FromCust" value="1" /></td></tr>
<tr><td>' . _('Ending Customer statement to print (Customer code)') . '</td><td>
- <input type="text" maxlength="6" size="7" name="ToCust" value="zzzzzz" /></td></tr></table>
+ <input type="text" maxlength="10" size="8" name="ToCust" value="zzzzzz" /></td></tr></table>
<br /><div class="centre">
<input type="submit" name="PrintPDF" value="' .
_('Print All Statements in the Range Selected').'" />
Modified: trunk/doc/Change.log
===================================================================
--- trunk/doc/Change.log 2013-09-06 15:30:51 UTC (rev 6330)
+++ trunk/doc/Change.log 2013-09-06 15:48:49 UTC (rev 6331)
@@ -1,4 +1,6 @@
webERP Change Log
+7/9/13 icedlava: Fix PrintStatements.php to allow selection of alphanumeric customer codes in length to match database definition.
+7/9/13 icedlava: StockStatus.php Allow dash in stock code again.
6/9/13 Version 4.11.1
|