[Weberp-svn] SF.net SVN: weberp:[8284] trunk
Brought to you by:
sotandeka,
tim_schofield
From: <tim...@us...> - 2011-10-13 18:15:01
|
Revision: 8284 http://weberp.svn.sourceforge.net/weberp/?rev=8284&view=rev Author: tim_schofield Date: 2011-10-13 18:14:55 +0000 (Thu, 13 Oct 2011) Log Message: ----------- Add new script to index.php Modified Paths: -------------- trunk/includes/session.inc trunk/index.php Added Paths: ----------- trunk/sql/mysql/updates/98.php Modified: trunk/includes/session.inc =================================================================== --- trunk/includes/session.inc 2011-10-13 17:54:01 UTC (rev 8283) +++ trunk/includes/session.inc 2011-10-13 18:14:55 UTC (rev 8284) @@ -13,7 +13,7 @@ header('Location:' . $rootpath . '/install/index.php'); } include($PathPrefix . 'config.php'); -$DBVersion=97; +$DBVersion=98; if (isset($SessionSavePath)){ session_save_path($SessionSavePath); } Modified: trunk/index.php =================================================================== --- trunk/index.php 2011-10-13 17:54:01 UTC (rev 8283) +++ trunk/index.php 2011-10-13 18:14:55 UTC (rev 8284) @@ -193,7 +193,8 @@ _('Inventory Location Transfers'), _('Inventory Adjustments'), _('Reverse Goods Received'), - _('Enter Stock Counts') + _('Enter Stock Counts'), + _('Create a New Internal Stock Request') ); $MenuItems['stock']['Transactions']['URL'] = array ('/PO_SelectOSPurchOrder.php', '/StockLocTransfer.php', @@ -201,7 +202,8 @@ '/StockTransfers.php?New=Yes', '/StockAdjustments.php?NewAdjustment=Yes', '/ReverseGRN.php', - '/StockCounts.php' + '/StockCounts.php', + '/InternalStockRequest.php?New=Yes' ); $MenuItems['stock']['Reports']['Caption'] = array (_('Serial Item Research Tool'), Added: trunk/sql/mysql/updates/98.php =================================================================== --- trunk/sql/mysql/updates/98.php (rev 0) +++ trunk/sql/mysql/updates/98.php 2011-10-13 18:14:55 UTC (rev 8284) @@ -0,0 +1,10 @@ +<?php + +/* Include the new script for printing quotations in Portrait + */ + +UpdateField('pagesecurity', 'script', 'InternalStockRequest.php', 'script=\'StockTransfers_departments.php\'', $db); + +UpdateDBNo(98, $db); + +?> \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |