From: Janusz Dobrowolski Date: Wed, 9 Apr 2008 06:43:48 +0000 (+0000) Subject: Fixed number formatting bug in standard cost update. X-Git-Tag: v2.4.2~19^2~2109 X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=commitdiff_plain;h=2e2996ab31611ad2a5fd742158576084e26e6b3f;p=fa-stable.git Fixed number formatting bug in standard cost update. --- diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 4c0191fa..4b107fe5 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -19,6 +19,10 @@ Legend: ! -> Note $ -> Affected files +09-Apr-2008 Janusz Dobrowolski +# Fixed number formatting bug in standard cost update. +$ /inventory/cost_update.php + 06-Apr-2008 Joe Hunt ! Changed install.html and update.html to fit the new unstable release 2.0 ! Changed demo sql script to fit the 2.0 unstable. diff --git a/inventory/cost_update.php b/inventory/cost_update.php index 16544599..ed6b4944 100644 --- a/inventory/cost_update.php +++ b/inventory/cost_update.php @@ -30,8 +30,8 @@ if (isset($_GET['stock_id'])) if (isset($_POST['UpdateData'])) { - $old_cost = input_num('OldMaterialCost') + input_num('OldLabourCost') - + input_num('OldOverheadCost'); + $old_cost = $_POST['OldMaterialCost'] + $_POST['OldLabourCost'] + + $_POST['OldOverheadCost']; $new_cost = input_num('material_cost') + input_num('labour_cost') + input_num('overhead_cost'); @@ -97,14 +97,14 @@ label_row(_("Last Cost"), price_format($myrow["last_cost"]), "class='tableheader2'", "nowrap align=right"); amount_row(_("Standard Material Cost Per Unit"), "material_cost", - price_format($myrow["material_cost"]), "", "", "class='tableheader2'"); + price_format($myrow["material_cost"]), "class='tableheader2'"); if ($myrow["mb_flag"]=='M') { amount_row(_("Standard Labour Cost Per Unit"), "labour_cost", - price_format($myrow["labour_cost"]), '', "", "class='tableheader2'"); + price_format($myrow["labour_cost"]), "class='tableheader2'"); amount_row(_("Standard Overhead Cost Per Unit"), "overhead_cost", - price_format($myrow["overhead_cost"]), "", "", "class='tableheader2'"); + price_format($myrow["overhead_cost"]), "class='tableheader2'"); } else {