From: <Ex...@us...> - 2012-02-07 04:50:24
|
Revision: 4879 http://web-erp.svn.sourceforge.net/web-erp/?rev=4879&view=rev Author: ExsonQu Date: 2012-02-07 04:50:18 +0000 (Tue, 07 Feb 2012) Log Message: ----------- Add NewTransfer=true to fix StockTranfer.php 'The entered item code doesnnot exit' bug reported by PakRichard Modified Paths: -------------- trunk/SelectProduct.php Modified: trunk/SelectProduct.php =================================================================== --- trunk/SelectProduct.php 2012-02-06 18:46:31 UTC (rev 4878) +++ trunk/SelectProduct.php 2012-02-07 04:50:18 UTC (rev 4879) @@ -425,7 +425,7 @@ /* Stock Transactions */ if ($Its_A_Kitset_Assembly_Or_Dummy == false) { echo '<a href="' . $rootpath . '/StockAdjustments.php?StockID=' . $StockID . '">' . _('Quantity Adjustments') . '</a><br />'; - echo '<a href="' . $rootpath . '/StockTransfers.php?StockID=' . $StockID . '">' . _('Location Transfers') . '</a><br />'; + echo '<a href="' . $rootpath . '/StockTransfers.php?StockID=' . $StockID . '&NewTransfer=true">' . _('Location Transfers') . '</a><br />'; //show the item image if it has been uploaded if( isset($StockID) AND file_exists($_SESSION['part_pics_dir'] . '/' .$StockID.'.jpg') ) { echo '<div class="centre"><img src="' . $rootpath . '/GetStockImage.php?automake=1&textcolor=FFFFF0&bgcolor=007F00&StockID=' . $StockID . '&text=' . $StockID . '&width=120&height=120" />'; @@ -786,4 +786,4 @@ } /* end display list if there is more than one record */ include ('includes/footer.inc'); -?> \ No newline at end of file +?> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |