X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=inventory%2Freorder_level.php;h=5b1ac7282c92dbad8bbfbc2f3919d7f68b5ba9de;hb=412b79dc32855f813d03a8a6dd9debd45bb308f5;hp=cfe3303cb64b08b3da9f653f90a94f822555fc50;hpb=de3a75773afa86df1739d14f24399d6f7a46f809;p=fa-stable.git diff --git a/inventory/reorder_level.php b/inventory/reorder_level.php index cfe3303c..5b1ac728 100644 --- a/inventory/reorder_level.php +++ b/inventory/reorder_level.php @@ -21,6 +21,8 @@ if (isset($_GET['stock_id'])) $_POST['stock_id'] = $_GET['stock_id']; } +if (isset($_POST['_stock_id_update'])) + $Ajax->activate('reorders'); //------------------------------------------------------------------------------------ start_form(false, true); @@ -31,12 +33,13 @@ if (!isset($_POST['stock_id'])) echo "
" . _("Item:"). " "; stock_costable_items_list('stock_id', $_POST['stock_id'], false, true); -echo "
"; +echo "
"; stock_item_heading($_POST['stock_id']); set_global_stock_item($_POST['stock_id']); +div_start('reorders'); start_table("$table_style width=30%"); $th = array(_("Location"), _("Quantity On Hand"), _("Re-Order Level")); @@ -47,7 +50,7 @@ $k=0; //row colour counter $result = get_loc_details($_POST['stock_id']); -while ($myrow = db_fetch($result)) +while ($myrow = db_fetch($result)) { alt_table_row_color($k); @@ -60,13 +63,13 @@ while ($myrow = db_fetch($result)) } $qoh = get_qoh_on_date($_POST['stock_id'], $myrow["loc_code"]); - + label_cell($myrow["location_name"]); - $_POST[$myrow["loc_code"]] = qty_format($myrow["reorder_level"]); + $_POST[$myrow["loc_code"]] = qty_format($myrow["reorder_level"], $_POST['stock_id'], $dec); - label_cell(number_format2($qoh,user_qty_dec()), "nowrap align='right'"); - qty_cells(null, $myrow["loc_code"]); + qty_cell($qoh, false, $dec); + qty_cells(null, $myrow["loc_code"], null, null, null, $dec); end_row(); $j++; If ($j == 12) @@ -77,8 +80,8 @@ while ($myrow = db_fetch($result)) } end_table(1); - -submit('UpdateData', _("Update")); +div_end(); +submit_center('UpdateData', _("Update")); end_form(); end_page();