From: <vv...@us...> - 2015-03-05 01:28:17
|
Revision: 7187 http://sourceforge.net/p/web-erp/reponame/7187 Author: vvs2012 Date: 2015-03-05 01:28:14 +0000 (Thu, 05 Mar 2015) Log Message: ----------- Added missing comma to SQL statement in Credit_Invoice.php Modified Paths: -------------- trunk/Credit_Invoice.php trunk/doc/Change.log Modified: trunk/Credit_Invoice.php =================================================================== --- trunk/Credit_Invoice.php 2015-03-04 13:12:03 UTC (rev 7186) +++ trunk/Credit_Invoice.php 2015-03-05 01:28:14 UTC (rev 7187) @@ -922,7 +922,7 @@ '" . $CreditNo . "', '" . $_SESSION['CreditItems' . $identifier]->Location . "', '" . $DefaultDispatchDate . "', - '" . $_SESSION['UserID'] . "' + '" . $_SESSION['UserID'] . "', '" . $_SESSION['CreditItems' . $identifier]->DebtorNo . "', '" . $_SESSION['CreditItems' . $identifier]->Branch . "', '" . $LocalCurrencyPrice . "', Modified: trunk/doc/Change.log =================================================================== --- trunk/doc/Change.log 2015-03-04 13:12:03 UTC (rev 7186) +++ trunk/doc/Change.log 2015-03-05 01:28:14 UTC (rev 7187) @@ -1,5 +1,6 @@ webERP Change Log +3/4/15 Vitaly: Added missing comma to SQL statement in Credit_Invoice.php 3/3/15 RChacon: Adds cross.png to all css images for use in Reset or Cancel buttons as needed. 2/3/15 RChacon: Completes table-row colums, regroups price, cost and gross profit in one table-row, uses company decimal places for gross profit in SelectProduct.php. 25/2/15 TurboPT: Fix Z_ImportSupplier bug reported in forum by: Bill Schlaerth. |