From: <tim...@us...> - 2010-11-26 08:43:37
|
Revision: 4166 http://web-erp.svn.sourceforge.net/web-erp/?rev=4166&view=rev Author: tim_schofield Date: 2010-11-26 08:43:31 +0000 (Fri, 26 Nov 2010) Log Message: ----------- Otandeka: CounterSales.php - Fix bug in counter sales script. Modified Paths: -------------- trunk/CounterSales.php trunk/doc/Change.log.html Modified: trunk/CounterSales.php =================================================================== --- trunk/CounterSales.php 2010-11-24 09:05:42 UTC (rev 4165) +++ trunk/CounterSales.php 2010-11-26 08:43:31 UTC (rev 4166) @@ -83,11 +83,11 @@ include('includes/footer.inc'); exit; } - + $CashSaleCustomer = explode('-',$myrow['cashsalecustomer']); - $_SESSION['Items'.$identifier]->Branch = $CashSaleCustomer[0]; - $_SESSION['Items'.$identifier]->DebtorNo = $CashSaleCustomer[1]; + $_SESSION['Items'.$identifier]->Branch = $CashSaleCustomer[1]; + $_SESSION['Items'.$identifier]->DebtorNo = $CashSaleCustomer[0]; $_SESSION['Items'.$identifier]->LocationName = $myrow['locationname']; $_SESSION['Items'.$identifier]->Location = $_SESSION['UserStockLocation']; $_SESSION['Items'.$identifier]->DispatchTaxProvince = $myrow['taxprovinceid']; Modified: trunk/doc/Change.log.html =================================================================== --- trunk/doc/Change.log.html 2010-11-24 09:05:42 UTC (rev 4165) +++ trunk/doc/Change.log.html 2010-11-26 08:43:31 UTC (rev 4166) @@ -1,6 +1,7 @@ <p><font SIZE=4 COLOR=BLUE><b>webERP Change Log</b></font></p> <p></p> -<p>24/11/10 Phil: GoodsReceived.php - modified to insert fixedassettrans and to post nominal POs to fixed asset cost account from fixedassetcategories.costact +<p>26/11/10 Otandeka: CounterSales.php - Fix bug in counter sales script.</p> +<p>24/11/10 Phil: GoodsReceived.php - modified to insert fixedassettrans and to post nominal POs to fixed asset cost account from fixedassetcategories.costact</p> <p>23/11/10 Pak Ricard: MRP.php and MRPShortages.php fixed temporary tables to use utf-8 - code failed without probably depends on mysql server settings</p> <p>21/11/10 Phil:Rewritten FixedAssetJournal.php - renamed FixedAssetDepreciation.php</p> <p>20/11/10 Phil: Rewritten FixedAssetItems.php FixedAssetCategories.php and modified FixedAssetLocations.php to use the new structure</p> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |