From: <tim...@us...> - 2010-08-31 07:49:56
|
Revision: 3702 http://web-erp.svn.sourceforge.net/web-erp/?rev=3702&view=rev Author: tim_schofield Date: 2010-08-31 07:49:50 +0000 (Tue, 31 Aug 2010) Log Message: ----------- Change quantity input field to have more than 5 digits Modified Paths: -------------- trunk/StockLocTransfer.php trunk/doc/Change.log.html Modified: trunk/StockLocTransfer.php =================================================================== --- trunk/StockLocTransfer.php 2010-08-27 21:36:45 UTC (rev 3701) +++ trunk/StockLocTransfer.php 2010-08-31 07:49:50 UTC (rev 3702) @@ -191,7 +191,7 @@ } echo '<tr> <td><input type=text name="StockID' . $i .'" size=21 maxlength=20 value="' . $_POST['StockID' . $i] . '"></td> - <td><input type=text name="StockQTY' . $i .'" size=5 maxlength=4 class="number" value="' . $_POST['StockQTY' . $i] . '"></td> + <td><input type=text name="StockQTY' . $i .'" size=10 maxlength=10 class="number" value="' . $_POST['StockQTY' . $i] . '"></td> </tr>'; } }else { @@ -209,7 +209,7 @@ } echo '<tr> <td><input type=text name="StockID' . $i .'" size=21 maxlength=20 value="' . $_POST['StockID' . $i] . '"></td> - <td><input type=text name="StockQTY' . $i .'" size=5 maxlength=4 class="number" value="' . $_POST['StockQTY' . $i] . '"></td> + <td><input type=text name="StockQTY' . $i .'" size=10 maxlength=10 class="number" value="' . $_POST['StockQTY' . $i] . '"></td> </tr>'; $i++; } Modified: trunk/doc/Change.log.html =================================================================== --- trunk/doc/Change.log.html 2010-08-27 21:36:45 UTC (rev 3701) +++ trunk/doc/Change.log.html 2010-08-31 07:49:50 UTC (rev 3702) @@ -1,7 +1,7 @@ <p><font SIZE=4 COLOR=BLUE><b>webERP Change Log</b></font></p> <p></p> - -<p> 28/8/10 Marcos Garcia Trejo: Fix ConfirmDispatchInvoice.php assembly components new qty on hand </p> +<p>31/08/10 Tim: StockLocTransfer.php - Change quantity input field to have more than 5 digits</p> +<p>28/08/10 Marcos Garcia Trejo: Fix ConfirmDispatchInvoice.php assembly components new qty on hand </p> <p>27/08/10 Tim: Add in rfequisition number into purchase order prints.</p> <p>21/08/10 Phil: Fix bugs introduced by Paul's patch prnMsg= should be prnMsg() BOMs.php also did in Contracts.php</p> <p>21/08/10 Phil: Contract closing changes all the contracts scripts</p> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |