More files with Quantity routines needed fix due to php4 related issue.
[fa-stable.git] / manufacturing / manage / bom_edit.php
index 6e30c49727643940275799cc479114eecf244afb..d06b84d321a6f525bfb6e6d1c0ed5f4355ec1c66 100644 (file)
@@ -86,7 +86,7 @@ function display_bom_items($selected_parent)
        global $table_style;
 
        $result = get_bom($selected_parent);
-
+div_start('bom');
        start_table("$table_style width=60%");
        $th = array(_("Code"), _("Description"), _("Location"),
                _("Work Centre"), _("Quantity"), _("Units"),'','');
@@ -102,7 +102,7 @@ function display_bom_items($selected_parent)
                label_cell($myrow["description"]);
         label_cell($myrow["location_name"]);
         label_cell($myrow["WorkCentreDescription"]);
-        label_cell($myrow["quantity"]);
+        qty_cell($myrow["quantity"], false, get_qty_dec($myrow["component"]));
         label_cell($myrow["units"]);
         edit_link_cell(SID . "NewItem=$selected_parent&selected_component=" . $myrow["id"]);
         delete_link_cell(SID . "delete=" . $myrow["id"]. "&stock_id=" . $_POST['stock_id']);
@@ -110,31 +110,26 @@ function display_bom_items($selected_parent)
 
        } //END WHILE LIST LOOP
        end_table();
+div_end();
 }
 
 //--------------------------------------------------------------------------------------------------
 
-function on_submit($selected_parent, $selected_component)
+function on_submit($selected_parent, $selected_component=null)
 {
-       if (!is_numeric($_POST['quantity']))
-       {
-               display_error(_("The quantity entered must be numeric."));
-               return;
-       }
-
-       if ($_POST['quantity'] <= 0)
+       if (!check_num('quantity', 0))
        {
-               display_error(_("The quantity entered must be greater than zero."));
+               display_error(_("The quantity entered must be numeric and greater than zero."));
+               set_focus('quantity');
                return;
        }
 
-
        if (isset($selected_parent) && isset($selected_component))
        {
 
                $sql = "UPDATE ".TB_PREF."bom SET workcentre_added='" . $_POST['workcentre_added'] . "',
                        loc_code='" . $_POST['loc_code'] . "',
-                       quantity= " . $_POST['quantity'] . "
+                       quantity= " . input_num('quantity') . "
                        WHERE parent='" . $selected_parent . "'
                        AND id='" . $selected_component . "'";
                check_db_error("Could not update this bom component", $sql);
@@ -145,7 +140,9 @@ function on_submit($selected_parent, $selected_component)
        elseif (!isset($selected_component) && isset($selected_parent))
        {
 
-               /*Selected component is null cos no item selected on first time round so must be                                adding a record must be Submitting new entries in the new component form */
+               /*Selected component is null cos no item selected on first time round
+               so must be adding a record must be Submitting new entries in the new
+               component form */
 
                //need to check not recursive bom component of itself!
                If (!check_for_recursive_bom($selected_parent, $_POST['component']))
@@ -162,7 +159,9 @@ function on_submit($selected_parent, $selected_component)
                        if (db_num_rows($result) == 0)
                        {
                                $sql = "INSERT INTO ".TB_PREF."bom (parent, component, workcentre_added, loc_code, quantity)
-                                       VALUES ('$selected_parent', '" . $_POST['component'] . "', '" . $_POST['workcentre_added'] . "', '" . $_POST['loc_code'] . "', " . $_POST['quantity'] . ")";
+                                       VALUES ('$selected_parent', '" . $_POST['component'] . "', '"
+                                       . $_POST['workcentre_added'] . "', '" . $_POST['loc_code'] . "', "
+                                       . input_num('quantity') . ")";
 
                                db_query($sql,"check failed");
 
@@ -202,18 +201,23 @@ start_form(false, true);
 
 echo "<center>" . _("Select a manufacturable item:") . "&nbsp;";
 stock_bom_items_list('stock_id', null, false, true);
+echo "</center>";
 
 end_form();
 
+if (isset($_POST['_stock_id_update']))
+       $Ajax->activate('bom');
 //--------------------------------------------------------------------------------------------------
 
 if (isset($_POST['stock_id']))
 { //Parent Item selected so display bom or edit component
        $selected_parent = $_POST['stock_id'];
-
-       if (isset($selected_parent) && isset($_POST['Submit']))
+       if (isset($selected_parent) && isset($_POST['Submit'])) {
+         if(isset($selected_component))
                on_submit($selected_parent, $selected_component);
-
+         else
+               on_submit($selected_parent);
+       }
        //--------------------------------------------------------------------------------------
 
        display_bom_items($selected_parent);
@@ -241,7 +245,7 @@ if (isset($_POST['stock_id']))
 
                $_POST['loc_code'] = $myrow["loc_code"];
                $_POST['workcentre_added']  = $myrow["workcentre_added"];
-               $_POST['quantity'] = $myrow["quantity"];
+               $_POST['quantity'] = number_format2($myrow["quantity"], get_qty_dec($myrow["component"]));
 
                hidden('selected_parent', $selected_parent);
                hidden('selected_component', $selected_component);
@@ -257,19 +261,19 @@ if (isset($_POST['stock_id']))
                label_cell(_("Component:"));
 
                echo "<td>";
-               stock_component_items_list('component', $selected_parent, $_POST['component'], false, true);
+               stock_component_items_list('component', $selected_parent, null, false, true);
                echo "</td>";
                end_row();
        }
 
        locations_list_row(_("Location to Draw From:"), 'loc_code', null);
        workcenter_list_row(_("Work Centre Added:"), 'workcentre_added', null);
-
+       $dec = get_qty_dec($_POST['component']);
        if (!isset($_POST['quantity']))
        {
-               $_POST['quantity'] = 1;
+               $_POST['quantity'] = number_format2(1, $dec);
        }
-       text_row(_("Quantity:"), 'quantity', $_POST['quantity'], 10, 18);
+       qty_row(_("Quantity:"), 'quantity', $_POST['quantity'], null, null, $dec);
 
        end_table(1);
        submit_center('Submit', _("Add/Update"));