From: <tim...@us...> - 2010-11-06 09:16:36
|
Revision: 4145 http://web-erp.svn.sourceforge.net/web-erp/?rev=4145&view=rev Author: tim_schofield Date: 2010-11-06 09:16:30 +0000 (Sat, 06 Nov 2010) Log Message: ----------- Fixed typo preventing Item code being shown Modified Paths: -------------- trunk/FixedAssetItems.php trunk/doc/Change.log.html Modified: trunk/FixedAssetItems.php =================================================================== --- trunk/FixedAssetItems.php 2010-11-06 09:09:58 UTC (rev 4144) +++ trunk/FixedAssetItems.php 2010-11-06 09:16:30 UTC (rev 4145) @@ -596,7 +596,7 @@ /*If the page was called without $StockID passed to page then assume a new stock item is to be entered show a form with a part Code field other wise the form showing the fields with the existing entries against the part will show for editing with only a hidden StockID field. New is set to flag that the page may have called itself and still be entering a new part, in which case the page needs to know not to go looking up details for an existing part*/ $New = true; - echo '<input type="hidden" name="New" value=">'. "\n"; + echo '<input type="hidden" name="New" value="">'. "\n"; // echo '<input type="hidden" name="StockID" value="'.$StockID.'">'. "\n"; echo '<tr><td>'. _('Asset Code'). ':</td><td><input ' . (in_array('StockID',$Errors) ? 'class="inputerror"' : '' ) .' type="text" name="StockID" size=21 maxlength=20></td></tr>'. "\n"; Modified: trunk/doc/Change.log.html =================================================================== --- trunk/doc/Change.log.html 2010-11-06 09:09:58 UTC (rev 4144) +++ trunk/doc/Change.log.html 2010-11-06 09:16:30 UTC (rev 4145) @@ -1,6 +1,7 @@ <p><font SIZE=4 COLOR=BLUE><b>webERP Change Log</b></font></p> <p></p> -<p>06/11/10 Phil: StockCategory.php FixedAssetCategory.php attempt to add validation to depreciation rates by extending the stock category property logic with new fields for numericvalue, minimumvalue and maximumvalue. Then adding the depreciation rate percentage property to expect numeric values with a minimum of 0 and maximum of 100. Not really happy with the fixed asset stuff - feels like a bit like a hack :-( +<p>06/11/10 Tim: FixedAssetItems.php - Fixed typo preventing Item code being shown</p> +<p>06/11/10 Phil: StockCategory.php FixedAssetCategory.php attempt to add validation to depreciation rates by extending the stock category property logic with new fields for numericvalue, minimumvalue and maximumvalue. Then adding the depreciation rate percentage property to expect numeric values with a minimum of 0 and maximum of 100. Not really happy with the fixed asset stuff - feels like a bit like a hack :-(</p> <p>05/11/10 Tim: PurchData.php. Converted field name to lower case for consistency</p> <p>05/11/10 Tim: SelectProduct.php. Change the standard order quantities to agree with Minimum order qty</p> <p>05/11/10 Tim: PurchData.php. Make the Minimum order quantity field numeric only</p> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |