From: <tim...@us...> - 2010-07-01 17:10:38
|
Revision: 3539 http://web-erp.svn.sourceforge.net/web-erp/?rev=3539&view=rev Author: tim_schofield Date: 2010-07-01 17:10:32 +0000 (Thu, 01 Jul 2010) Log Message: ----------- PrintCustTransPortrait.php - Error in sql, nor picking up stkmoveno. Modified Paths: -------------- trunk/PrintCustTransPortrait.php trunk/doc/Change.log.html Modified: trunk/PrintCustTransPortrait.php =================================================================== --- trunk/PrintCustTransPortrait.php 2010-07-01 17:10:13 UTC (rev 3538) +++ trunk/PrintCustTransPortrait.php 2010-07-01 17:10:32 UTC (rev 3539) @@ -250,7 +250,8 @@ (stockmoves.price * ' . $ExchRate . ') AS fxprice, stockmoves.narrative, stockmaster.controlled, - stockmaster.units + stockmaster.units, + stockmoves.stkmoveno FROM stockmoves, stockmaster WHERE stockmoves.stockid = stockmaster.stockid @@ -267,7 +268,8 @@ (stockmoves.price * ' . $ExchRate . ') AS fxprice, stockmoves.narrative, stockmaster.controlled, - stockmaster.units + stockmaster.units, + stockmoves.stkmoveno FROM stockmoves, stockmaster WHERE stockmoves.stockid = stockmaster.stockid Modified: trunk/doc/Change.log.html =================================================================== --- trunk/doc/Change.log.html 2010-07-01 17:10:13 UTC (rev 3538) +++ trunk/doc/Change.log.html 2010-07-01 17:10:32 UTC (rev 3539) @@ -1,5 +1,6 @@ <p><font SIZE=4 COLOR=BLUE><b>webERP Change Log</b></font></p> <p></p> +<p>01/07/10 Tim: PrintCustTransPortrait.php - Error in sql, nor picking up stkmoveno.</p> <p>01/07/10 Tim: Numerous problems with stock adjustments for batch controlled items.</p> <p>01/07/10 Tim: DateFunctions.inc - Correction to GetPeriod() for case when future period didn't exist.</p> <p>30/06/10 Phil: Resolution of GL posting problem - removed INSERTs of new chartdetails from DateFunctions.inc CreatePeriod function and GLAccounts.php when adding a new GL account. Now all chartdetails are created from includes/GLPostings.inc and correct bfwd balances updated as they should be - I hope this solves this long outstanding previously unsquashable bug!!</p> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |