|
From: <dai...@us...> - 2012-07-08 10:14:22
|
Revision: 5483
http://web-erp.svn.sourceforge.net/web-erp/?rev=5483&view=rev
Author: daintree
Date: 2012-07-08 10:14:15 +0000 (Sun, 08 Jul 2012)
Log Message:
-----------
fix links to non-existent script
Modified Paths:
--------------
trunk/includes/MainMenuLinksArray.php
trunk/sql/mysql/upgrade4.08-4.09.sql
Modified: trunk/includes/MainMenuLinksArray.php
===================================================================
--- trunk/includes/MainMenuLinksArray.php 2012-07-07 10:02:45 UTC (rev 5482)
+++ trunk/includes/MainMenuLinksArray.php 2012-07-08 10:14:15 UTC (rev 5483)
@@ -533,7 +533,6 @@
$MenuItems['Utilities']['Transactions']['Caption'] = array (_('Change A Customer Code'),
_('Change A Customer Branch Code'),
_('Change An Inventory Item Code'),
- _('Change A Supplier Code'),
_('Change A Location Code'),
_('Update costs for all BOM items, from the bottom up'),
_('Re-apply costs to Sales Analysis'),
@@ -543,7 +542,6 @@
$MenuItems['Utilities']['Transactions']['URL'] = array ('/Z_ChangeCustomerCode.php',
'/Z_ChangeBranchCode.php',
'/Z_ChangeStockCode.php',
- '/Z_ChangeSupplierCode.php',
'/Z_ChangeLocationCode.php',
'/Z_BottomUpCosts.php',
'/Z_ReApplyCostToSA.php',
Modified: trunk/sql/mysql/upgrade4.08-4.09.sql
===================================================================
--- trunk/sql/mysql/upgrade4.08-4.09.sql 2012-07-07 10:02:45 UTC (rev 5482)
+++ trunk/sql/mysql/upgrade4.08-4.09.sql 2012-07-08 10:14:15 UTC (rev 5483)
@@ -1,4 +1,5 @@
INSERT INTO scripts VALUES ('Z_DeleteOldPrices.php','15','Deletes all old prices');
-INSERT INTO scripts VALUES ('Z_ChangeLocationCode.php','15','Change a locations code and in all tables where the old code was used to the new code')
-UPDATE config SET confvalue='4.08.1' WHERE confname='VersionNumber';
+INSERT INTO scripts VALUES ('Z_ChangeLocationCode.php','15','Change a locations code and in all tables where the old code was used to the new code');
+DELETE FROM scripts WHERE script='Z_ChangeSupplierCode.php';
+UPDATE config SET confvalue='4.08.2' WHERE confname='VersionNumber';
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|