" . _("Item:"). " "; stock_costable_items_list('stock_id', $_POST['stock_id'], false, true); echo "
"; stock_item_heading($_POST['stock_id']); set_global_stock_item($_POST['stock_id']); start_table("$table_style width=30%"); $th = array(_("Location"), _("Quantity On Hand"), _("Re-Order Level")); table_header($th); $j = 1; $k=0; //row colour counter $result = get_loc_details($_POST['stock_id']); while ($myrow = db_fetch($result)) { alt_table_row_color($k); if (isset($_POST['UpdateData']) && is_numeric($_POST[$myrow["loc_code"]])) { $myrow["reorder_level"] = $_POST[$myrow["loc_code"]]; set_reorder_level($_POST['stock_id'], $myrow["loc_code"], $_POST[$myrow["loc_code"]]); } $qoh = get_qoh_on_date($_POST['stock_id'], $myrow["loc_code"]); label_cell($myrow["location_name"]); label_cell(number_format2($qoh,user_qty_dec()), "nowrap align='right'"); text_cells(null, $myrow["loc_code"], $myrow["reorder_level"], 10, 10); end_row(); $j++; If ($j == 12) { $j = 1; table_header($th); } } end_table(1); submit('UpdateData', _("Update")); end_form(); end_page(); ?>