From: <ex...@us...> - 2014-04-06 13:20:23
|
Revision: 6674 http://sourceforge.net/p/web-erp/reponame/6674 Author: exsonqu Date: 2014-04-06 13:20:18 +0000 (Sun, 06 Apr 2014) Log Message: ----------- 06/04/14 Exson: Fixed the quote date and order confirmed date has not been retrieved for orders to modify in SelectOrderItems.php. Modified Paths: -------------- trunk/SelectOrderItems.php trunk/doc/Change.log Modified: trunk/SelectOrderItems.php =================================================================== --- trunk/SelectOrderItems.php 2014-04-06 02:47:50 UTC (rev 6673) +++ trunk/SelectOrderItems.php 2014-04-06 13:20:18 UTC (rev 6674) @@ -112,6 +112,8 @@ salesorders.printedpackingslip, salesorders.datepackingslipprinted, salesorders.quotation, + salesorders.quotedate, + salesorders.confirmeddate, salesorders.deliverblind, debtorsmaster.customerpoline, locations.locationname, @@ -173,6 +175,8 @@ $_SESSION['Items'.$identifier]->Location = $myrow['fromstkloc']; $_SESSION['Items'.$identifier]->LocationName = $myrow['locationname']; $_SESSION['Items'.$identifier]->Quotation = $myrow['quotation']; + $_SESSION['Items'.$identifier]->QuoteDate = ConvertSQLDate($myrow['quotedate']); + $_SESSION['Items'.$identifier]->ConfirmedDate = ConvertSQLDate($myrow['confirmeddate']); $_SESSION['Items'.$identifier]->FreightCost = $myrow['freightcost']; $_SESSION['Items'.$identifier]->Orig_OrderDate = $myrow['orddate']; $_SESSION['PrintedPackingSlip'] = $myrow['printedpackingslip']; Modified: trunk/doc/Change.log =================================================================== --- trunk/doc/Change.log 2014-04-06 02:47:50 UTC (rev 6673) +++ trunk/doc/Change.log 2014-04-06 13:20:18 UTC (rev 6674) @@ -1,5 +1,6 @@ webERP Change Log +06/04/14 Exson: Fixed the quote date and order confirmed date has not been retrieved for orders to modify in SelectOrderItems.php. 6/4/14 Andrew Galuski: Extensions for printing WO documentation new labels and links to print 05/04/14 rchacon: Fixes the bug that emptied ItemDescriptionLanguages. 05/04/14 Exson: Add decimal places check for controlled items quantity input in Add_SerialItems.php and InputSerialItems.php.The wrong decimal places will make this sections quite buggy and problem prone. |