Fixed number formatting bug in standard cost update.
authorJanusz Dobrowolski <janusz@frontaccounting.eu>
Wed, 9 Apr 2008 06:43:48 +0000 (06:43 +0000)
committerJanusz Dobrowolski <janusz@frontaccounting.eu>
Wed, 9 Apr 2008 06:43:48 +0000 (06:43 +0000)
CHANGELOG.txt
inventory/cost_update.php

index 4c0191fa9202edd2f344add2163c3baecedfe01f..4b107fe5e15d3cf03c69776d8c891681342a3efa 100644 (file)
@@ -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.
index 16544599b89fac222e8c7ba76192cd4022581ceb..ed6b494476ffc9bdbaded7d26e9a79b627403bd7 100644 (file)
@@ -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
 {