From: <vv...@us...> - 2012-02-26 14:59:24
|
Revision: 4975 http://web-erp.svn.sourceforge.net/web-erp/?rev=4975&view=rev Author: vvs2012 Date: 2012-02-26 14:59:18 +0000 (Sun, 26 Feb 2012) Log Message: ----------- Modified Paths: -------------- trunk/doc/Change.log trunk/sql/mysql/upgrade4.07-4.08.sql Modified: trunk/doc/Change.log =================================================================== --- trunk/doc/Change.log 2012-02-26 10:18:47 UTC (rev 4974) +++ trunk/doc/Change.log 2012-02-26 14:59:18 UTC (rev 4975) @@ -1,4 +1,5 @@ webERP Change Log +25/2/12 Vitaly: sql in PDFSuppTransListing.php would not fetch any data and debug message was not showing. Missing FROM in upgrade4.07-4.08.sql. 25/2/12 James Dupin: Remove extra ) after Create GL entries for stock transactions in CompanyPreferences.php 23/2/12 Ricard: Moved Utility scripts from Z_index.php to their own module named Utilities 22/2/12 Phil: Make daily sales inquiry work correctly with assembly items where costs are recalculated in the case of negatives stock when supplier invoices entered Modified: trunk/sql/mysql/upgrade4.07-4.08.sql =================================================================== --- trunk/sql/mysql/upgrade4.07-4.08.sql 2012-02-26 10:18:47 UTC (rev 4974) +++ trunk/sql/mysql/upgrade4.07-4.08.sql 2012-02-26 14:59:18 UTC (rev 4975) @@ -4,7 +4,7 @@ INSERT INTO `scripts` (`script` ,`pagesecurity` ,`description`) VALUES ('reportwriter/admin/ReportCreator.php', '15', 'Report Writer'); INSERT INTO `scripts` (`script` ,`pagesecurity` ,`description`) VALUES ('RecurringSalesOrdersProcess.php', '1', 'Process Recurring Sales Orders'); -DELETE `scripts` WHERE `script`='Z_CopyBOM.php'; +DELETE FROM `scripts` WHERE `script`='Z_CopyBOM.php'; UPDATE config SET confvalue='4.08.1' WHERE confname='VersionNumber'; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |