|
From: <dai...@us...> - 2012-01-27 23:22:33
|
Revision: 4845
http://web-erp.svn.sourceforge.net/web-erp/?rev=4845&view=rev
Author: daintree
Date: 2012-01-27 23:22:26 +0000 (Fri, 27 Jan 2012)
Log Message:
-----------
Ahmed.Fawzy: StockCategories.php fixes for numericvalue not displaying and errored with "minimum value is not numeric"
Modified Paths:
--------------
trunk/StockCategories.php
trunk/doc/Change.log
Modified: trunk/StockCategories.php
===================================================================
--- trunk/StockCategories.php 2012-01-27 23:11:28 UTC (rev 4844)
+++ trunk/StockCategories.php 2012-01-27 23:22:26 UTC (rev 4845)
@@ -485,7 +485,8 @@
defaultvalue,
reqatsalesorder,
minimumvalue,
- maximumvalue
+ maximumvalue,
+ numericvalue
FROM stockcatproperties
WHERE categoryid='" . $SelectedCategory . "'
ORDER BY stkcatpropid";
@@ -566,7 +567,7 @@
</select></td>
<td><input type="textbox" name="PropDefault' . $PropertyCounter . '" /></td>
<td><input type="checkbox" name="PropNumeric' . $PropertyCounter . '" /></td>
- <td><input type="textbox" class="number" "name="PropMinimum' . $PropertyCounter . '" /></td>
+ <td><input type="textbox" class="number" name="PropMinimum' . $PropertyCounter . '" /></td>
<td><input type="textbox" class="number" name="PropMaximum' . $PropertyCounter . '" /></td>
<td align="center"><input type="checkbox" name="PropReqSO' . $PropertyCounter .'" /></td>
</tr>';
Modified: trunk/doc/Change.log
===================================================================
--- trunk/doc/Change.log 2012-01-27 23:11:28 UTC (rev 4844)
+++ trunk/doc/Change.log 2012-01-27 23:22:26 UTC (rev 4845)
@@ -1,5 +1,6 @@
webERP Change Log
+28/1/12 Ahmed.Fawzy: StockCategories.php fixes for numericvalue not displaying and errored with "minimum value is not numeric"
28/1/12 Phil: ConfirmDispatch_Invoice.php corrected link to ConfirmDispatchControlled_Invoice.php to send $identifier to get the correct session variable containing the order to invoice
28/1/12 Tim: SpecialOrder.php added $identifier to session class variable to avoid overlapping sessions in multiple tabs.
27/1/12 Phil: PO_AuthoriseMyOrders.php fixed html in hidden $_POST['StatusComments'] by using htmlentities($_POST['StatusComments'])
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|