X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=inventory%2Freorder_level.php;h=3a6834370dad9b76a51e17606a2cbd629c870aed;hb=de3d898de357e5b7a79f793428461106a916ea80;hp=dfe6f2dc2862e63b3fd98e5ac3f81e0ee7dda73c;hpb=0b0690657989cd259e5966faaac7cacbfa89cee2;p=fa-stable.git diff --git a/inventory/reorder_level.php b/inventory/reorder_level.php index dfe6f2dc..3a683437 100644 --- a/inventory/reorder_level.php +++ b/inventory/reorder_level.php @@ -17,12 +17,13 @@ check_db_has_costable_items(_("There are no inventory items defined in the syste //------------------------------------------------------------------------------------ if (isset($_GET['stock_id'])) -{ $_POST['stock_id'] = $_GET['stock_id']; -} -if (isset($_POST['_stock_id_update'])) +if (list_updated('stock_id')) +{ + $Ajax->activate('show_heading'); $Ajax->activate('reorders'); +} //------------------------------------------------------------------------------------ start_form(false, true); @@ -35,8 +36,9 @@ stock_costable_items_list('stock_id', $_POST['stock_id'], false, true); echo "
"; +div_start('show_heading'); stock_item_heading($_POST['stock_id']); - +div_end(); set_global_stock_item($_POST['stock_id']); div_start('reorders'); @@ -66,10 +68,10 @@ while ($myrow = db_fetch($result)) 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)