From: <sam...@us...> - 2013-04-27 17:18:09
|
Revision: 5854 http://sourceforge.net/p/web-erp/reponame/5854 Author: samudaya Date: 2013-04-27 17:18:05 +0000 (Sat, 27 Apr 2013) Log Message: ----------- When purchasing a non-stock item (asset), AssetID goes to wrong column in purchorderdetails table (Column name - suppliers_partno). Fixed the bug and now save the AssetID in correct column (Column name - assetid). Modified Paths: -------------- trunk/PO_Items.php Modified: trunk/PO_Items.php =================================================================== --- trunk/PO_Items.php 2013-04-26 06:54:04 UTC (rev 5853) +++ trunk/PO_Items.php 2013-04-27 17:18:05 UTC (rev 5854) @@ -511,6 +511,7 @@ 2, $_POST['SuppliersUnit'], 1, + 1, '', $_POST['AssetID']); include ('includes/PO_UnsetFormVbls.php'); |