From: <tim...@us...> - 2010-04-07 11:35:33
|
Revision: 3410 http://web-erp.svn.sourceforge.net/web-erp/?rev=3410&view=rev Author: tim_schofield Date: 2010-04-07 11:35:27 +0000 (Wed, 07 Apr 2010) Log Message: ----------- Tim: PO_Items.php - Remove the Back To Purchase Order Header link if the order is already posted. Modified Paths: -------------- trunk/PO_Items.php trunk/doc/Change.log.html Modified: trunk/PO_Items.php =================================================================== --- trunk/PO_Items.php 2010-04-07 10:06:43 UTC (rev 3409) +++ trunk/PO_Items.php 2010-04-07 11:35:27 UTC (rev 3410) @@ -28,7 +28,9 @@ $Maximum_Number_Of_Parts_To_Show=50; -echo '<a href="'.$rootpath.'/PO_Header.php?' . SID . "identifier=".$identifier. '">' ._('Back To Purchase Order Header') . '</a><br>'; +if (!isset($_POST['Commit'])) { + echo '<a href="'.$rootpath.'/PO_Header.php?' . SID . "identifier=".$identifier. '">' ._('Back To Purchase Order Header') . '</a><br>'; +} // add new request here 08-09-26 if (isset($_POST['StockID2']) && $_GET['Edit']=='') { Modified: trunk/doc/Change.log.html =================================================================== --- trunk/doc/Change.log.html 2010-04-07 10:06:43 UTC (rev 3409) +++ trunk/doc/Change.log.html 2010-04-07 11:35:27 UTC (rev 3410) @@ -1,5 +1,6 @@ <p><font SIZE=4 COLOR=BLUE><b>webERP Change Log</b></font></p> <p></p> +<p>07/04/10 Tim: PO_Items.php - Remove the Back To Purchase Order Header link if the order is already posted.</p> <p>07/04/10 Tim: SystemParameters.php and Currencies.php - Correct so that currency updates are only done when Automatic is chosen.</p> <p>05/04/10 exson qu: Chinese translation update.</p> <p>05/04/10 Matt Taylor: Z_ImportStocks.php : Correct DB_txn functions and add validation check.</p> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |