From: <dai...@us...> - 2014-05-16 23:00:36
|
Revision: 6712 http://sourceforge.net/p/web-erp/reponame/6712 Author: daintree Date: 2014-05-16 23:00:34 +0000 (Fri, 16 May 2014) Log Message: ----------- fixed Z_ChangeStockCode.php to change stockdescriptiontranslations too Modified Paths: -------------- trunk/Z_ChangeStockCode.php trunk/doc/Change.log Modified: trunk/Z_ChangeStockCode.php =================================================================== --- trunk/Z_ChangeStockCode.php 2014-05-16 09:44:30 UTC (rev 6711) +++ trunk/Z_ChangeStockCode.php 2014-05-16 23:00:34 UTC (rev 6712) @@ -143,6 +143,7 @@ ChangeFieldInTable("bom", "component", $_POST['OldStockID'], $_POST['NewStockID'], $db); ChangeFieldInTable("bom", "parent", $_POST['OldStockID'], $_POST['NewStockID'], $db); ChangeFieldInTable("stockrequestitems", "stockid", $_POST['OldStockID'], $_POST['NewStockID'], $db); + ChangeFieldInTable("stockdescriptiontranslations", "stockid", $_POST['OldStockID'], $_POST['NewStockID'], $db); echo '<br />' . _('Changing any image files'); if (file_exists($_SESSION['part_pics_dir'] . '/' .$_POST['OldStockID'].'.jpg')){ Modified: trunk/doc/Change.log =================================================================== --- trunk/doc/Change.log 2014-05-16 09:44:30 UTC (rev 6711) +++ trunk/doc/Change.log 2014-05-16 23:00:34 UTC (rev 6712) @@ -1,5 +1,7 @@ webERP Change Log +17/05/14 Phil: sales invoice and credit scripts all check for 0 exchange rate before updating sales anlaysis now +17/05/14 Phil: Fixed Z_ChangeStockCode.php which was orphaning stockdescriptiontranslations without changing them to the new code 14/05/14 Exson: Fixed typo in MRPReport.php which make some supplies not to be shown on the report and use itemdue instead of deliverydate in MRP to ensure that requirements are calculated correctly for items due on different date. 3/5/14 Khwunchai J.: New Xenos theme 3/5/14 Phil: StockCostUpdate.php now allows updates to manufactured items. |