From: <way...@us...> - 2016-09-24 22:52:13
|
Revision: 7633 http://sourceforge.net/p/web-erp/reponame/7633 Author: waynemcdougall Date: 2016-09-24 22:52:11 +0000 (Sat, 24 Sep 2016) Log Message: ----------- Variable not renamed in r3146 - fix so date shows on Stock Price History Also correct comment spelling pirce to price Revision Links: -------------- http://sourceforge.net/p/web-erp/reponame/3146 Modified Paths: -------------- trunk/StockStatus.php trunk/doc/Change.log Modified: trunk/StockStatus.php =================================================================== --- trunk/StockStatus.php 2016-09-24 10:30:21 UTC (rev 7632) +++ trunk/StockStatus.php 2016-09-24 22:52:11 UTC (rev 7633) @@ -301,7 +301,7 @@ break; /* 10 price records is enough to display */ } if ($myrow['trandate'] < FormatDateForSQL(DateAdd(date($_SESSION['DefaultDateFormat']),'y', -1))) { - break; /* stop displaying pirce history more than a year old once we have at least one to display */ + break; /* stop displaying price history more than a year old once we have at least one to display */ } } $LastPrice = $myrow['price']; @@ -355,7 +355,7 @@ <td class="number">%s</td> <td class="number">%s%%</td> </tr>', - $ph[0], + $PreviousPrice[0], locale_number_format($PreviousPrice[1],$DecimalPlaces), locale_number_format($PreviousPrice[2],$_SESSION['CompanyRecord']['decimalplaces']), locale_number_format($PreviousPrice[3]*100,2)); Modified: trunk/doc/Change.log =================================================================== --- trunk/doc/Change.log 2016-09-24 10:30:21 UTC (rev 7632) +++ trunk/doc/Change.log 2016-09-24 22:52:11 UTC (rev 7633) @@ -1,12 +1,13 @@ webERP Change Log +24/09/16 waynemcdougall: Fixed missing date in Sales Price history 24/09/16 Exson: Make Justify feature workable in addTextWrap in class.pdf.php. 24/09/16 Exson: Fixed the AddTextWrap missing characters errors when there is space and make it more reliable. 21/09/16 RChacon: In SuppWhereAlloc.php, accepts the payment multiple creditors. In CustWhereAlloc.php, accepts the receipt of multiple debtors. 18/09/16 RChacon: Add style to describe how button image should be displayed. Clean up Xenos css. 18/09/16 Exson: Add multiple items issue for non-controlled items feature to Work Orders in WorkOrderIssue.php. 14/09/16 Exson: Add narrative, transaction date data to PDFOrdersInvoiced.php. -14/09/16: Exson: Add order line narrative and invoices link to sales order inquiry in OrderDetails.php. +14/09/16 Exson: Add order line narrative and invoices link to sales order inquiry in OrderDetails.php. 12/09/16 Exson: Add a filter to avoid tons of zero valued gl transaction records generated in SQL_CommonFunctions.inc. 04/09/16 Exson: Add WO items delete constraint in WorkOrderEntry.php. Thanks for Phil's reminder. 04/09/16 Exson: Add delete Work orders Items feature in WorkOrderEntry.php. |