From: <tim...@us...> - 2010-04-23 07:45:34
|
Revision: 3429 http://web-erp.svn.sourceforge.net/web-erp/?rev=3429&view=rev Author: tim_schofield Date: 2010-04-23 07:45:28 +0000 (Fri, 23 Apr 2010) Log Message: ----------- Zhiguo: SelectProduct.php - Add a link to StockStatus.php direct from the selection page. Modified Paths: -------------- trunk/SelectProduct.php trunk/doc/Change.log.html Modified: trunk/SelectProduct.php =================================================================== --- trunk/SelectProduct.php 2010-04-22 11:18:12 UTC (rev 3428) +++ trunk/SelectProduct.php 2010-04-23 07:45:28 UTC (rev 3429) @@ -668,6 +668,7 @@ <th>' . _('Description') . '</th> <th>' . _('Total Qty On Hand') . '</th> <th>' . _('Units') . '</th> + <th>' . _('Stock Status') . '</th> </tr>'; echo $tableheader; $j = 1; @@ -693,6 +694,7 @@ <td>".$myrow['description']."</td> <td class='number'>".$qoh."</td> <td>".$myrow['units']."</td> + <td><a target='_blank' href='" . $rootpath . "/StockStatus.php?" . SID . "&StockID=".$myrow['stockid']."'>" . _('View') . "</a></td> </tr>"; $j++; if ($j == 20 AND ($RowIndex + 1 != $_SESSION['DisplayRecordsMax'])) { Modified: trunk/doc/Change.log.html =================================================================== --- trunk/doc/Change.log.html 2010-04-22 11:18:12 UTC (rev 3428) +++ trunk/doc/Change.log.html 2010-04-23 07:45:28 UTC (rev 3429) @@ -1,5 +1,6 @@ <p><font SIZE=4 COLOR=BLUE><b>webERP Change Log</b></font></p> <p></p> +<p>22/04/10 Zhiguo: SelectProduct.php - Add a link to StockStatus.php direct from the selection page.</p> <p>22/04/10 Lindsay: add missing ; to second last line of upgrade3.11.1-3.12.sql</p> <p>22/04/10 Zhiguo: index.php - Change SID to sid, so as to solve the locale issue of Turkish I(ı) & İ(i)</p> <p>22/04/10 Zhiguo: PrintCustStatements.php - Change addInfo() to addinfo() and also change INTERVAL() to interval(), so as to solve the locale issue of Turkish I(ı) & İ(i)</p> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |