From: <tim...@us...> - 2010-11-05 10:48:21
|
Revision: 4140 http://web-erp.svn.sourceforge.net/web-erp/?rev=4140&view=rev Author: tim_schofield Date: 2010-11-05 10:48:14 +0000 (Fri, 05 Nov 2010) Log Message: ----------- Make the Minimum order quantity field numeric only Modified Paths: -------------- trunk/PurchData.php trunk/doc/Change.log.html Modified: trunk/PurchData.php =================================================================== --- trunk/PurchData.php 2010-11-05 10:45:43 UTC (rev 4139) +++ trunk/PurchData.php 2010-11-05 10:48:14 UTC (rev 4140) @@ -463,7 +463,7 @@ echo '<tr><td>' . _('Supplier Stock Code') . ':</td> <td><input type=text name="SupplierCode" maxlength=15 size=15 VALUE="' . $_POST['SupplierCode'] . '"></td></tr>'; echo '<tr><td>' . _('MinOrderQty') . ':</td> - <td><input type=text name="MinOrderQty" maxlength=15 size=15 VALUE="' . $_POST['MinOrderQty'] . '"></td></tr>'; + <td><input type=text class=number name="MinOrderQty" maxlength=15 size=15 VALUE="' . $_POST['MinOrderQty'] . '"></td></tr>'; echo '<tr><td>' . _('Supplier Stock Description') . ':</td> <td><input type=text name="SupplierDescription" maxlength=50 size=51 VALUE="' . $_POST['SupplierDescription'] . '"></td></tr>'; if (!isset($_POST['LeadTime']) OR $_POST['LeadTime'] == "") { Modified: trunk/doc/Change.log.html =================================================================== --- trunk/doc/Change.log.html 2010-11-05 10:45:43 UTC (rev 4139) +++ trunk/doc/Change.log.html 2010-11-05 10:48:14 UTC (rev 4140) @@ -1,5 +1,6 @@ <p><font SIZE=4 COLOR=BLUE><b>webERP Change Log</b></font></p> <p></p> +<p>02/11/10 Tim: PurchData.php. Make the Minimum order quantity field numeric only</p> <p>02/11/10 Poul Bjerre-Jensen: SelectProduct.php,PurchData.php. Add in Minimum order quantity to Purchasing data</p> <p>02/11/10 Tim: SelectCustomer.php. Correction to work with debtors that have a - in the code</p> <p>31/10/10 Tim: SuppTransGLAnalysis.php. Minor bug fixes</p> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |